HI , can you guys post some pvp scripts for injection like ress a friend , auto loot , heal and arm, drink mana....
and post some sites teaching how to make scripts in english plz
Help ??
Moderators: Murderator+, Murderator
Ress Friend:
Heal&arm (Arm's the weapon, which was in your hands, when activating the macro)
Drink mana:
Code: Select all
Sub Res_Partner()
UO.SetArm('CWeapon')
UO.waittargetobject('0x000000') ; Insert your friend's ID in place of the zeros
UO.Exec('usetype 0x0E21')
wait (1000)
UO.Arm('CWeapon')
wait(1000)
end subHeal&arm (Arm's the weapon, which was in your hands, when activating the macro)
Code: Select all
Sub Bandag()
UO.SetArm('CWeapon')
UO.bandageself()
wait(600)
UO.Arm('CWeapon')
endsub Drink mana:
Code: Select all
Sub Drink_mana()
UO.Finditem( '0x0F09' , '0x0480' , 'my')
UO.UseObject( 'finditem' )
end sub