Page 1 of 1

healing

Posted: 2008-03-19 07:35:43
by crazy1
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

Re: healing

Posted: 2008-03-19 15:28:32
by altukhov
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.