Page 1 of 1
Help ??
Posted: 2005-05-09 15:44:41
by wallylobo
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
Posted: 2005-05-10 00:15:20
by flake
Ress Friend:
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 sub
Heal&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