Hey who can give me a Hand

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
Hamerly
Posts: 6
Joined: 2008-12-10 08:11:24

Hey who can give me a Hand

Post 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
Hamerly
Posts: 6
Joined: 2008-12-10 08:11:24

Re: Hey who can give me a Hand

Post by Hamerly »

well i mean it can be by using any hotkey to arm bardi and atack last
ZeroDX
Posts: 718
Joined: 2006-12-08 10:51:50
Location: Москва
Contact:

Re: Hey who can give me a Hand

Post 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
Post Reply