Code: Select all
sub Heal()
While UO.Life > UO.Dead()
If UO.Life < UO.GetMaxHp() Then
UO.Bandageself()
wait(4500)
Else
wait(50)
Endif
Wend
endsub
Moderators: Murderator+, Murderator
Code: Select all
sub Heal()
While UO.Life > UO.Dead()
If UO.Life < UO.GetMaxHp() Then
UO.Bandageself()
wait(4500)
Else
wait(50)
Endif
Wend
endsub
Code: Select all
sub Heal()
While UO.Life > UO.Dead()
If UO.Life < UO.GetMaxHp() Then
UO.Bandageself()
Repeat
UO.DeleteJournal()
wait(100)
Until UO.InJournal("You sucessfully") OR UO.InJournal("You bandage")
Else
wait(50)
Endif
Wend
endsub Code: Select all
sub Heal()
While UO.Life > UO.Dead()
If UO.Life < UO.GetMaxHp() Then
UO.DeleteJournal()
UO.Bandageself()
Repeat
wait(100)
Until UO.InJournal("You sucessfully") OR UO.InJournal("You bandage")
Else
wait(50)
Endif
Wend
endsub