Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ////******************************************************////
- //Title: Skinning - Gargoyle Knife
- //Author: Maelune
- //Purpose: Automatically use gargoyle knife in your pocket to skin corpses within reach.
- //
- //Requirements: A Gargoyle Skinning Knife
- // Corpses
- //
- //Instructions: Copy this entire text into a UOSteam Macro! Run the macro when you are near
- // corpses and have a gargoyle skinning knife!
- //
- //Notes: This macro looks for a gargoyle skinning knife with its default color.
- // If you hue your gargoyle knife a different color, you will need to make changes.
- ////******************************************************////
- while @findtype 0x2006 'any' 'ground' 'any' 2
- @setalias 'corpse' 'found'
- if @findtype 0x13f6 2419 'backpack' //Change 2419 if you dye your gargoyle skinning knife
- useobject 'found'
- waitfortarget 5000
- @target 'corpse'
- endif
- ignoreobject 'corpse'
- endwhile
- clearignorelist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement