Code: Select all
sub heal()
repeat
if uo.life<290 then
uo.bandageself()
wait(3000)
endif
wait(1000)
until uo.dead()
end subModerators: Murderator+, Murderator
Code: Select all
sub heal()
repeat
if uo.life<290 then
uo.bandageself()
wait(3000)
endif
wait(1000)
until uo.dead()
end subCode: Select all
sub heal()
repeat
if uo.life<290 then
uo.bandageself()
wait(3000)
else
wait(1000)
end if
until uo.dead()
end subCode: Select all
sub heal()
repeat
if uo.poisoned() then
drink_cure()
else
if uo.life<290 then
uo.bandageself()
wait(3000)
else
wait(1000)
end if
end if
until uo.dead()
end sub