I was wondering how I can make a sc that will use cure potions and heal potions in the time that I am using bandages to heal.
thank you
healing
Moderators: Murderator+, Murderator
Re: healing
crazy1 wrote:I was wondering how I can make a sc that will use cure potions and heal potions in the time that I am using bandages to heal.
thank you
sub autodrink()
while not uo.dead()
if uo.injournal("bandage")
uo.usetype('GreaterHeal')
wait(50)
uo.usetype('Cure')
wait(50)
uo.deletejournal()
endif
wait(100)
wend
end sub
this is not tested version , trying use it.