Advertisement
hhaos

Untitled

Aug 4th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. --This is to check if bisect will kill them
  2. local elec_damage = ak.maxhealth * 0.10
  3. if affstrack.score.sensitivity >= 80 then elec_damage = elec_damage * 1.3
  4.  
  5. end
  6. --We need to be sure that you change he weapons below to match your own.
  7. if ak.currenthealth - elec_damage <= ak.maxhealth * 0.20 then
  8. --If we can bisect to kill them, we bisect to kill them
  9. send("queue addclear free stand|wield battleaxe shield239362|bisect "..target.." aconite|assess "..target)
  10. elseif affstrack.score.prone >= 80 and affstrack.impale == false then
  11. --stick em with the pointy end if this is true
  12. send("queue addclear free stand|wield scimitar331218|impale "..target.."|fury")
  13. elseif affstrack.score.paralysis >= 66 and affstrack.impale == false then
  14. --stick em with the pointy end if this is true
  15.  
  16. send("queue addclear free stand|wield scimitar331218|impale "..target.."|fury")
  17. elseif affstrack.score.transfixed == 100 and affstrack.impale == false then
  18. --stick em with the pointy end if this is true
  19.  
  20. send("queue addclear free stand|wield scimitar331218|impale "..target.."|fury")
  21. else dwcbase() --make this your normal attack stuff mine is its own thing, ask and I'll help you make your own
  22.  
  23. end
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement