Advertisement
Mashai

Untitled

May 20th, 2012
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Put this in a script:
  2.  
  3. function changeInfuse(infuse_arg)
  4. infuse = infuse_arg
  5. end
  6.  
  7. function changeStrike(strike_arg)
  8. strike = strike_arg
  9. end
  10.  
  11. And then, make an alias for each strike like this:
  12.  
  13. changeStrike("STERNUM")
  14. cecho("STRIKE CHANGED TO STERNUM")
  15.  
  16. For infusions, do this:
  17.  
  18. changeInfuse("FIRE")
  19. cecho("INFUSION CHANGED TO FIRE")
  20.  
  21. Last, but not least... the macros:
  22.  
  23. send("INFUSE " .. infuse)
  24. send("COMPASSSLASH " .. target .. " NORTH")
  25. send("STRIKE " .. target.." " .. strike)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement