Example of a potion drop on keg by Jaseowns
Description: This is just an example snippet of how to move a potion on to a keg and if the keg is full, use it moving organizer agent 1.
1# Example of a potion drop on keg by Jaseowns
2# UO Outlands
3if findtype "Green Potion" backpack
4 hotkey 'Set Last Target'
5 waitfortarget
6 targettype "keg" backpack
7 lifttype "Green Potion" 1
8 drop lasttarget 0 0 0
9 if insysmsg "not hold any more"
10 overhead 'Move keg!'
11 organizer 1
12 wait 1000
13 endif
14endif