Advertisement
Maespark

Skinning - Gargoyle Knife

Jul 16th, 2019
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. ////******************************************************////
  2. //Title: Skinning - Gargoyle Knife
  3. //Author: Maelune
  4. //Purpose: Automatically use gargoyle knife in your pocket to skin corpses within reach.
  5. //
  6. //Requirements: A Gargoyle Skinning Knife
  7. // Corpses
  8. //
  9. //Instructions: Copy this entire text into a UOSteam Macro! Run the macro when you are near
  10. // corpses and have a gargoyle skinning knife!
  11. //
  12. //Notes: This macro looks for a gargoyle skinning knife with its default color.
  13. // If you hue your gargoyle knife a different color, you will need to make changes.
  14. ////******************************************************////
  15. while @findtype 0x2006 'any' 'ground' 'any' 2
  16. @setalias 'corpse' 'found'
  17. if @findtype 0x13f6 2419 'backpack' //Change 2419 if you dye your gargoyle skinning knife
  18. useobject 'found'
  19. waitfortarget 5000
  20. @target 'corpse'
  21. endif
  22. ignoreobject 'corpse'
  23. endwhile
  24. clearignorelist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement