Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #------------------PUNISHMENT CHECKS-----------------------
  2.  
  3. command /checkban [<offline player>]:
  4. permission: chb.use
  5. permission message: No Permission
  6. trigger:
  7. if arg 1 is not set:
  8. send "&aUsage: /checkban (player)"
  9. stop
  10. if {Banned::%uuid of arg 1%} is false:
  11. send "&a&l%arg 1% &ais not banned"
  12. stop
  13. if {Banned::%uuid of arg 1%} is true:
  14. send "&a&l%arg 1% &ais banned"
  15. stop
  16.  
  17. command /checkmute [<offline player>]:
  18. permission: chm.use
  19. permission message: No Permission
  20. trigger:
  21. if arg 1 is not set:
  22. send "&aUsage: /checkmute (player)"
  23. stop
  24. if {Muted::%uuid of arg 1%} is false:
  25. send "&a&l%arg 1% &ais not muted"
  26. stop
  27. if {Muted::%uuid of arg 1%} is true:
  28. send "&a&l%arg 1% &ais muted"
  29. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement