Page 1 of 1
I'm looking for....
Posted: 2005-08-07 22:50:22
by Sisma
...a script that works with injection for bandage self.
I don't speak Russian, so reply in english please.
Thanks a lot.
Posted: 2005-08-07 22:59:22
by I'm
Code: Select all
sub Bandage()
UO.SetArm('BandWeapon')
UO.Exec("bandageself")
Wait(500)
UO.Arm('BandWeapon')
end sub
and no problems

Posted: 2005-08-07 23:59:53
by Sisma
And how can i set repeat at the macro?
Posted: 2005-08-08 02:19:17
by flake
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.
Posted: 2005-08-08 12:06:25
by Sisma
Thanks a lot
