healing

Ask for help

Moderators: Murderator+, Murderator

Post Reply
crazy1
Posts: 12
Joined: 2008-01-31 17:43:42

healing

Post 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
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Re: healing

Post 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.
Post Reply