Hey who can give me a Hand
Posted: 2011-06-24 18:17:24
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
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