Advertisement
hhaos

Untitled

Jun 5th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. if ak.psion.unweaving.spirit>3 then
  2. table.insert(WeaveAtk, "weave flurry "..target)
  3. prepselect()
  4. elseif ak.psion.unweaving.mind>3 and ak.psion.unweaving.body<2 then
  5. table.insert(WeaveAtk, "weave invert "..target.." mind spirit")
  6. prepselect()
  7. elseif ak.psion.unweaving.body>3 and ak.psion.unweaving.mind<2 then
  8. table.insert(WeaveAtk, "weave invert "..target.." body spirit")
  9. prepselect()
  10. elseif affstrack.score.unweavingmind<100 then
  11. table.insert(WeaveAtk, "weave unweave "..target.." mind")
  12. prepselect()
  13. elseif affstrack.score.unweavingbody<100 then
  14. table.insert(WeaveAtk, "weave unweave "..target.." body")
  15. prepselect()
  16. elseif affstrack.score.haemophilia == 100 and affstrack.score.impatience == 100 and affstrack.score.asthma == 100 then
  17. if ak.psion.transcend == 100 then
  18. PsiFocus = "bleed"
  19. table.insert(WeaveAtk, "weave exsanguinate "..target)
  20. table.insert(prepare, "disruption")
  21. else
  22. table.insert(WeaveAtk, "weave backhand "..target)
  23. table.insert(prepare, "disruption")
  24. end
  25. elseif affstrack.score.haemophilia == 100 and affstrack.score.asthma == 100 and affstrack.score.impatience<100 and CanImpatience()then
  26. table.insert(WeaveAtk, "weave overhand "..target)
  27. table.insert(prepare, "disruption")
  28. elseif affstrack.score.haemophilia == 100 and affstrack.score.asthma<100 then
  29. table.insert(WeaveAtk, "weave deathblow "..target)
  30.  
  31. if affstrack.score.paralysis<100 then
  32. table.insert(prepare, "disruption")
  33. else
  34. table.insert(prepare, "rattle")
  35. end
  36. elseif affstrack.score.haemophilia < 100 and affstrack.score.asthma < 100 then
  37. table.insert(WeaveAtk, "weave deathblow "..target)
  38. table.insert(prepare, "laceration")
  39. elseif affstrack.score.unweavingmind<100 and affstrack.score.asthma == 100 and affstrack.score.haemophilia<100 then
  40. table.insert(WeaveAtk, "weave unweave "..target.." mind")
  41. table.insert(prepare, "laceration")
  42. --cecho("\n<black:pink> THEY MUST BE PRIORITISING HAEMOPHILIA")
  43. elseif affstrack.score.unweavingmind<100 then
  44. table.insert(WeaveAtk, "weave unweave "..target.." mind")
  45.  
  46. if affstrack.score.paralysis<100 then
  47. table.insert(prepare, "disruption")
  48. else
  49. table.insert(prepare, "rattle")
  50. end
  51. elseif affstrack.score.asthma<100 then
  52. table.insert(WeaveAtk, "weave deathblow "..target)
  53.  
  54. if affstrack.score.paralysis<100 then
  55. table.insert(prepare, "disruption")
  56. else
  57. table.insert(prepare, "dazzle")
  58. end
  59. else
  60. table.insert(WeaveAtk, "weave sever "..target)
  61.  
  62. if affstrack.score.paralysis<100 then
  63. table.insert(prepare, "disruption")
  64. else
  65. table.insert(prepare, "laceration")
  66. end
  67. --cecho("\n<black:pink> YOU MAY WANT TO SWITCH IT UP NOW. UNWOVEN MIND STICKING")
  68. end
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement