Advertisement
hhaos

Untitled

Feb 17th, 2022
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. function DWretri()
  2. --lots of work with Ksha here, he's awesome give him love
  3. local venom = {
  4. addiction = "vardrax",
  5. anorexia = "slike",
  6. asthma = "kalmia",
  7. clumsiness = "xentio",
  8. crippledarm = "epteth",
  9. crippledleg = "epseth",
  10. darkshade = "darkshade",
  11. deafblind = "colocasia",
  12. disloyalty = "monkshood",
  13. dizziness = "larkspur",
  14. haemophilia = "notechis",
  15. nausea = "euphorbia",
  16. paralysis = "curare",
  17. recklessness = "eurypteria",
  18. scytherus = "scytherus",
  19. selarnia = "selarnia",
  20. sensitivity = "prefarar",
  21. shyness = "digitalis",
  22. sleep = "delphinium",
  23. slickness = "gecko",
  24. stupidity = "aconite",
  25. voyria = "voyria",
  26. weariness = "vernalius"
  27. }
  28.  
  29.  
  30. local function instill_select()
  31. return { "shadow instill scythe with retribution" }
  32. end
  33.  
  34. local function venom_select()
  35. local venom_priority = {
  36. "paralysis",
  37. "asthma",
  38. "clumsiness",
  39. "weariness",
  40. "sensitivity"
  41. }
  42.  
  43. for _, aff in ipairs(venom_priority) do
  44. if affstrack.score[aff] < 67 then
  45. return venom[aff]
  46. end
  47. end
  48. end
  49.  
  50. local function eqbal_select()
  51. if ak.defs.shield then
  52. return {"stand", "wield dagger", "shadow strike "..target }
  53. elseif affstrack.score.retribution<=50 then
  54. return {"stand", "wield scythe", "chrono loop", "shadow reap "..target.." "..venom_select(), "contemplate "..target }
  55. else
  56. return {"stand", "wield scythe", "shadow reap "..target.." "..venom_select(), " contemplate "..target }
  57. end
  58. end
  59.  
  60. combined_table = table.combine(instill_select(), eqbal_select())
  61. send("setalias pvp "..table.concat(combined_table, "/")..";;queue add eqbal pvp")
  62. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement