Guest User

Untitled

a guest
May 16th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. function manaAttack(twoarts,striking,limb)
  2. local thisStrike = ""
  3. if numStrike == nil then --This could be your venom script
  4. numStrike = 1
  5. thisStrike = stg[striking]
  6. elseif numStrike == 1 then
  7. thisStrike = stg["te"]
  8. elseif numStrike == 2 then
  9. thisStrike = stg["te"]
  10. elseif numStrike == 3 then
  11. thisStrike = stg["te"]
  12. elseif numStrike == 4 then
  13. thisStrike = stg["te"]
  14. end
  15. if tImpaled == 1 then
  16. twistOrslash()
  17. elseif swordOut == 1 then svo.doaddfree("relax grip;sheathe sword")
  18. elseif bowOut == 1 then svo.doaddfree("unwield bow")
  19. elseif tShield == 1 then send("raze "..target.." shield")
  20. send("strike "..target.." "..thisStrike)
  21. elseif tProne == 1 and tImpaledO == false then send("impale "..target)
  22. elseif tEntangled == 1 and tImpaledO == false then send("impale "..target)
  23. elseif tRebound == 1 then send("raze "..target)
  24. send("strike "..target.." "..thisStrike)
  25. elseif tag[twoarts] == "compassslash" or tag[twoarts] == "legslash" or tag[twoarts] == "armslash" or tag[twoarts] == "centreslash" then
  26. send(tag[twoarts].." "..target.." "..limb)
  27. send("strike "..target.." "..thisStrike)
  28. else
  29. send(tag[twoarts].." "..target)
  30. send("strike "..target.." "..thisStrike)
  31. end
  32. end
Add Comment
Please, Sign In to add comment