Hey who can give me a Hand
Moderators: Murderator+, Murderator
Hey who can give me a Hand
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
well i mean it can be by using any hotkey to arm bardi and atack last
Re: Hey who can give me a Hand
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