I'm looking for....

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
Sisma
Posts: 6
Joined: 2005-08-07 22:47:31

I'm looking for....

Post by Sisma »

...a script that works with injection for bandage self.
I don't speak Russian, so reply in english please.
Thanks a lot.
I'm
Expert!
Posts: 1396
Joined: 2004-10-15 22:38:04
Location: Moscow City.
Contact:

Post by I'm »

Code: Select all

sub Bandage()
   UO.SetArm('BandWeapon')
   UO.Exec("bandageself")
   Wait(500)
   UO.Arm('BandWeapon')
end sub

and no problems :wink:
Sisma
Posts: 6
Joined: 2005-08-07 22:47:31

Post by Sisma »

And how can i set repeat at the macro?
flake
Expert!
Posts: 746
Joined: 2004-08-11 23:56:17
Location: The Citadel
Contact:

Post 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.
Sisma
Posts: 6
Joined: 2005-08-07 22:47:31

Post by Sisma »

Thanks a lot :)
Post Reply