Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. local sp = ataxia.settings.separator
  2. local atk = bardCQueue()
  3. local needAff = getLockingAffliction("name")
  4. local venom = ""
  5. local voice = ""
  6. atk = atk.."wield rapier shield"..sp.."wipe rapier"..sp
  7.  
  8. if haveAff("deafness") then
  9. atk = atk.."tunesmith rapier pesante"..sp
  10. elseif (haveAff("impatience") and haveAff("asthma")) or (haveAff("paralysis")) and not haveAff("prone") then
  11. atk = atk.."tunesmith rapier martellato"..sp
  12. else
  13. atk = atk.."tunesmith rapier pesante"..sp
  14. end
  15.  
  16. if haveAff("rebounding") and haveAff("deafness") then
  17. voice = "sing cantata at "..target
  18. elseif (haveAff("slickness") and haveAff("impatience")) and not haveAff("anorexia") then
  19. voice = "sing qasida at "..target
  20. elseif not haveAff("impatience") then
  21. voice = "sing limerick at "..target
  22. elseif not haveAff("paralysis") then
  23. voice = "recite epic at "..target
  24. elseif needAff == ("confusion") and not haveAff("confusion") then
  25. voice = "recite haiku at "..target
  26. elseif not haveAff("clumsiness") then
  27. voice = "sing maqam at "..target
  28. elseif needAff == "stupidity" and not haveAff("stupidity") then
  29. voice = "sing passion at "..target
  30. elseif not haveAff("vertigo") then
  31. voice = "sing pastorale at "..target
  32. elseif not haveAff("addiction") then
  33. voice = "recite ode at "..target
  34. else
  35. voice = "recite epic at "..target
  36. end
  37.  
  38. if not haveAff("impatience") and not voice:find("limerick") then
  39. if not haveAff("paralysis") then
  40. venom = "curare"
  41. else
  42. venom = "kalmia"
  43. end
  44. else
  45. if haveAff("slickness") and haveAff("asthma") and haveAff("impatience") and not haveAff("anorexia") and not voice:find("qasida") then
  46. venom = "slike"
  47. elseif haveAff("asthma") and haveAff("impatience") and not haveAff("slickness") then
  48. venom = "gecko"
  49. elseif not haveAff("paralysis") and not voice:find("epic") then
  50. venom = "curare"
  51. elseif not haveAff("asthma") then
  52. venom = "kalmia"
  53. elseif not haveAff("weariness") then
  54. venom = "vernalius"
  55. elseif not haveAff("recklessness") then
  56. venom = "eurypteria"
  57. elseif not haveAff("addiction") then
  58. venom = "vardrax"
  59. elseif not haveAff("dizziness") then
  60. venom = "larkspur"
  61. else
  62. venom = "voyria"
  63. end
  64. end
  65.  
  66. if (tAffs.shield or tAffs.rebounding) and not voice:find("cantata") then
  67. atk = atk.."raze "..target..sp.."whistle for songbird"
  68. else
  69. atk = atk.."jab "..target.." "..venom
  70. end
  71. send("queue addclear class "..voice)
  72. send("cq eqbal;queue addclear eqbal "..atk)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement