Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1.  
  2.  
  3. ////////////////////////////////////////////////////
  4. //////This is Advanced Hand Check #1 UOS
  5. ///////// Remember, you gotta check "Do Not Auto Interrupt" !
  6. //////THIS doohickey will check your hands and put
  7. //////the last weapon it saw back into your hand !
  8. //////This is great because you can use this thing
  9. //////for many scenarios. By simply activating the
  10. //////macro in a good scenario, with any weapon and
  11. //////any shield, it wil then rememeber it. The next
  12. //////time it checks hands and finds one empty, it
  13. //////wil put the last weapon it found into your hand!
  14. //////Also: If you run it with a weapon (bow for
  15. //////example and NO shield, it will remember that also!
  16. //////Stuff that up your champ macro !
  17. ////////////////////////////////////////////////////
  18. //////From Sinope with love
  19. //////
  20. if not @findalias 'ACHwep'
  21. @setalias 'ACHwep' 'self'
  22. endif
  23. if not @findalias 'ACHshd'
  24. @setalias 'ACHshd' 'self'
  25. endif
  26. if @findobject 'righthand'
  27. @setalias 'ACHwep' 'righthand'
  28. if @findobject 'lefthand'
  29. @setalias 'ACHshd' 'lefthand'
  30. else
  31. @setalias 'ACHshd' 'self'
  32. endif
  33. else
  34. clearhands 'both'
  35. equipitem 'ACHwep' 1
  36. pause 512
  37. equipitem 'ACHshd' 2
  38. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement