Help ??

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
wallylobo
Posts: 1
Joined: 2005-05-09 15:24:13

Help ??

Post 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
flake
Expert!
Posts: 746
Joined: 2004-08-11 23:56:17
Location: The Citadel
Contact:

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