Advertisement
hhaos

Untitled

Jun 11th, 2022
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. function prepend()
  2. local str = ""
  3. if gmcp.Char.Status.class == "Depthswalker" then
  4. str = "setalias pvp stand/wield scythe shield/"
  5. -- elseif gmcp.Char.Status.class == "runewarden" then
  6. -- str = "setalias pvp stand/wield longsword shield/"
  7. elseif gmcp.Char.Status.class == "Psion" then
  8. str = "setalias pvp stand/wield shield/"
  9. elseif gmcp.Char.Status.class == "runewarden" then
  10. str = "setalias pvp stand/wield longsword shield/"
  11. end
  12.  
  13. return str
  14. end
  15.  
  16. function postpend()
  17. if not target then
  18. return nil
  19. end
  20. local str = "/assess "..target
  21. if not am_hindered() and gmcp.Char.Status.class == "Depthswalker" then
  22. str = str .. "/contemplate "..target
  23. elseif not am_hindered() and gmcp.Char.Status.class == "Psion" then
  24. str = str .. "/contemplate "..target
  25. end
  26. return str
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement