Advertisement
hhaos

Untitled

May 10th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. --make a function that calls this
  2.  
  3. function dwbasic()
  4.  
  5. if ak.defs.shield
  6. then send("setalias pvp stand/wield dagger /shadow strike "..target.."/assess "..target)
  7. elseif table.contains(ak.ShadowList, target) and (ak.currenthealth / ak.maxhealth) <= .36
  8. then send("setalias pvp stand/wield dagger shield/intone tooros/shadow mutilate "..target.." aconite")
  9. elseif table.contains(ak.ShadowList, target) and (ak.currentmana / ak.maxmana) <= .36
  10. then send("setalias pvp stand/wield dagger shield/intone tooros/shadow dictate "..target)
  11. elseif ak.currenthealth / ak.maxhealth <= .25
  12. then send("setalias pvp stand/wield scythe shield/shadow instill scythe with degeneration/intone tooros/shadow cull "..target.." prefarar")
  13. elseif table.contains(ak.ShadowList, target) then
  14. dwkill()
  15. else
  16. dwclaim()
  17. end
  18.  
  19. send("queue add eqbal pvp")
  20. end
  21.  
  22. function dwkill()
  23.  
  24. if affstrack.score.paralysis <= 70 then vnm = "curare"
  25. elseif affstrack.score.asthma <= 66 then vnm = "kalmia"
  26. elseif affstrack.score.sensitivity <= 66 then vnm = "prefarar"
  27. elseif affstrack.score.clumsiness <= 66 then vnm = "xentio"
  28. elseif (affstrack.score.slickness <= 66 and affstrack.score.paralysis > 50) then vnm = "gecko"
  29. elseif affstrack.score.anorexia <= 66 then vnm = "slike"
  30. elseif affstrack.score.stupidity <= 66 then vnm = "aconite"
  31. elseif affstrack.score.recklessness <=66 then vnm = "eurypteria"
  32. else vnm = "voyria"
  33. end
  34.  
  35.  
  36. if affstrack.score.sensitivity <= 66 then
  37. send("setalias pvp stand/wield scythe shield/shadow instill scythe with degeneration/shadow reap "..target.." "..vnm.."/assess "..target.."/contemplate "..target)
  38. else
  39. send("setalias pvp stand/wield scythe shield/shadow instill scythe with degeneration/shadow cull "..target.." "..vnm.."/assess "..target.."/contemplate "..target)
  40. end
  41. end
  42.  
  43. function dwclaim()
  44.  
  45. if affstrack.score.paralysis <= 70 then vnm = "curare"
  46. elseif affstrack.score.asthma <=66 then vnm = "kalmia"
  47. elseif affstrack.score.clumsiness <=66 then vnm = "xentio"
  48. elseif (affstrack.score.slickness <= 66 and affstrack.score.paralysis < 50) then vnm = "gecko"
  49. elseif affstrack.score.anorexia <=66 then vnm = "slike"
  50. elseif affstrack.score.stupidity <=66 then vnm = "aconite"
  51. elseif affstrack.score.recklessness <=66 then vnm = "eurypteria"
  52. else vnm = "voyria"
  53. end
  54.  
  55.  
  56. if affstrack.score.justice <= 70 and affstrack.score.retribution <= 69 then
  57. send("setalias pvp stand/wield scythe shield/shadow instill scythe with retribution/shadow reap "..target.." "..vnm.."/assess "..target.."/contemplate "..target)
  58. elseif affstrack.score.parasite <= 66 and affstrack.score.healthleech <= 66 then
  59. send("setalias pvp stand/wield scythe shield/shadow instill scythe with leach/shadow reap "..target.." "..vnm.."/assess "..target.."/contemplate "..target)
  60. else
  61. send("setalias pvp stand/wield scythe shield/shadow instill scythe with leach/chrono loop boost/shadow reap "..target.." "..vnm.."/assess "..target.."/contemplate "..target)
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement