Advertisement
Guest User

Untitled

a guest
May 2nd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. function highkey1 ()
  2. if keypress1 == 1 then
  3. if high == 1 then
  4. send("queue add eqbal combination " .. target .. " slice left leg larkspur smash high")
  5. elseif trip == 1 then
  6. send("queue add eqbal combination " .. target .. " slice left leg epteth trip")
  7. elseif low == 1 then
  8. send("queue add eqbal combination " .. target .. " slice left leg curare smash low")
  9. elseif mid == 1 then
  10. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  11. elseif drive == 1 then
  12. send("queue add eqbal combination " .. target .. " slice left leg curare drive")
  13. else
  14. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  15. end
  16. else
  17. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  18. end
  19. end
  20.  
  21. function highkey2 ()
  22. if keypress1 == 2 then
  23. if high == 1 then
  24. send("queue add eqbal combination " .. target .. " slice left leg aconite smash high")
  25. elseif trip == 1 then
  26. send("queue add eqbal combination " .. target .. " slice left leg epteth trip")
  27. elseif low == 1 then
  28. send("queue add eqbal combination " .. target .. " slice left leg prefarar smash low")
  29. elseif mid == 1 then
  30. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  31. elseif drive == 1 then
  32. send("queue add eqbal combination " .. target .. " slice left leg prefarar drive")
  33. else
  34. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  35. end
  36. else
  37. send("queue add eqbal combination " .. target .. " slice left leg smash mid")
  38. end
  39. end
  40.  
  41. keypress1 = keypress1 + 1
  42. send("clearqueue all")
  43. if keypress1 == 1 then
  44. highkey1()
  45. elseif keypress == 2 then
  46. highkey2()
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement