Script for drink potion

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
Sisma
Posts: 6
Joined: 2005-08-07 22:47:31

Script for drink potion

Post by Sisma »

Can anyone post a script that drink a potion and rearm shield or weapon?
Thanks a lot
Leo
Expert!
Posts: 791
Joined: 2005-01-15 19:15:05
Location: Dragon World
Contact:

Post by Leo »

With pleasure :wink:

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
flake
Expert!
Posts: 746
Joined: 2004-08-11 23:56:17
Location: The Citadel
Contact:

Post by flake »

Code: Select all

UO.FindType('type','color', 'my') ;type and color of potion 


It is correct this way.
Post Reply