Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. ps.bash.monk = function()
  2. if can:bash() then
  3. local punch = hasSkill("Uppercut") and "ucp" or "jbp"
  4. local kick = hasSkill("Sidekick") and "sdk" or "snk"
  5.  
  6. if not isStanced() then
  7. kick = hasSkill("Scorpion") and "scs" or "hrs"
  8. end
  9.  
  10. if isDefActive("mounted") then
  11. sendAll("quickdismount", "order " .. ps.settings.entities.horse .. " follow me")
  12. end
  13.  
  14. if hasSkill("Combo") then
  15. send("combo " .. ps.target .. " " .. kick .. " " .. punch .. " " .. punch)
  16. else
  17. if not isStanced() then send(kick) else send(kick .. " " .. ps.target) end
  18. send(punch .. " " .. ps.target)
  19. send(punch .. " " .. ps.target)
  20. end
  21. end
  22. end
  23.  
  24. ps.bash.zealot = function()
  25. if can:bash() then
  26. local punch = hasSkill("Flow") and "pummel"
  27.  
  28. -- if not isStanced() then
  29. -- kick = hasSkill("Scorpion") and "scs" or "hrs"
  30. -- end
  31.  
  32. if isDefActive("mounted") then
  33. sendAll("quickdismount", "order " .. ps.settings.entities.horse .. " follow me")
  34. end
  35.  
  36. if hasSkill("flow") then
  37. send("flow " .. ps.target .. " " .. punch .. " " .. punch)
  38. else
  39. if not isStanced() then send(kick) else send(kick .. " " .. ps.target) end
  40. send(punch .. " " .. ps.target)
  41. send(punch .. " " .. ps.target)
  42. end
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement