Healing (PVP)
Posted: 2004-07-18 07:13:54
I would like one script of healing, which verifies if life this down, and agreement, it healase or with Bandages or Potion...
Ex1: If Life <= 90 Using Bandageself
Else
if life < 60 using Heal potion
Ex2:
Ex1: If Life <= 90 Using Bandageself
Else
if life < 60 using Heal potion
Ex2:
Code: Select all
Sub control()
healx:
if uo.life<90 then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if uo.life<40 then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif
goto healx
end sub