...a script that works with injection for bandage self.
I don't speak Russian, so reply in english please.
Thanks a lot.
I'm looking for....
Moderators: Murderator+, Murderator
Code: Select all
sub Bandage()
UO.SetArm('BandWeapon')
UO.Exec("bandageself")
Wait(500)
UO.Arm('BandWeapon')
end sub
and no problems

Code: Select all
sub Bandage()
Repeat
UO.SetArm('BandWeapon')
UO.Exec("bandageself")
Wait(500)
UO.Arm('BandWeapon')
Wait(2500)
Until UO.Dead()
end sub
This will repeat the prosess until your char is alive.