Can anyone post a script that drink a potion and rearm shield or weapon?
Thanks a lot
Script for drink potion
Moderators: Murderator+, Murderator
With pleasure

Code: Select all
sub Drink()
UO.SetArm('Weapon')
wait(500)
UO.FindType('type','color',-1,'my') ;type and color of potion
UO.UseObject('finditem')
wait(500)
UO.Arm('Weapon')
end sub