Page 1 of 1

Hey who can give me a Hand

Posted: 2011-06-24 18:17:24
by Hamerly
well im learning how to make scripts on injection and i just need make one to arm and atacklastarget after i use any spell or i heal myself with bandages please someone can help me

Re: Hey who can give me a Hand

Posted: 2011-06-24 18:23:45
by Hamerly
well i mean it can be by using any hotkey to arm bardi and atack last

Re: Hey who can give me a Hand

Posted: 2011-06-24 23:08:15
by ZeroDX
Try this

Code: Select all

sub EquipAttack()
  var id_Weapon = '0x12345678' ; you need to change this variable to the id of your weapon
  var id_Shield = '0x12345678' ; and shield
  UO.Equip('Rhand', id_Weapon)
  Wait(100)                            ;increase this if you want
  UO.Equip('Lhand', id_Shield) ; if you dont use the shield, comment this line
  UO.Attack('lastattack')
Endsub