Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. -------------------------------------------------
  2. -- Put your Lua functions here. --
  3. -- --
  4. -- Note that you can also use external Scripts --
  5. -------------------------------------------------
  6. function dragonLimbs()
  7. send("clearqueue all")
  8. svo.undoall()
  9. send("stand")
  10. send("show bleed")
  11. if shielded == 1 then
  12. send("queue add eqbal tailsmash " ..target)
  13. else
  14. send("queue add eqbal envenom claws with curare| dragoncurse "..target.." impatience 1|rend "..target.." "..Limb"|breathgust "..target)
  15. end
  16. end
  17.  
  18. function dragonTorso()
  19. send("clearqueue all")
  20. svo.undoall()
  21. send("stand")
  22. send("show bleed")
  23. if shielded == 1 then
  24. send("queue add eqbal tailsmash "..target)
  25. else
  26. send("queue add eqbal envenom claws with curare| dragoncurse "..target.." impatience 1|rend "..target.." torso|breathgust "..target)
  27. end
  28. end
  29.  
  30.  
  31. function dragonHead()
  32. send("clearqueue all")
  33. svo.undoall()
  34. send("stand")
  35. send("show bleed")
  36. if shielded == 1 then
  37. send("queue add eqbal tailsmash " ..target)
  38. else
  39. send("queue add eqbal envenom claws with curare| dragoncurse "..target.." impatience 1|rend "..target.." head")
  40. end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement