Entities

Untitled

Sep 8th, 2017
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. on load:
  2. broadcast "&8&m-----------------------------------------------------"
  3. broadcast "&6&lPermissions&8:"
  4. broadcast "&b/clearchat /cc &8: &7custom.clearchat"
  5. broadcast "&b/lockchat &8: &7custom.lock"
  6. broadcast "&b/unlockchat &8: &7custom.unlock"
  7. broadcast "&b/broadcast /bc &8: &7custom.broad"
  8. broadcast "&8&m-----------------------------------------------------"
  9. broadcast "&c&lCommands"
  10. broadcast "&b/Clearchat &8: &7Clears Chat"
  11. broadcast "&b/cc &8: &7Clears chat"
  12. broadcast "&b/lockchat &8: &7Locks chat so players cant talk but staff can"
  13. broadcast "&b/unlockchat &8: &7Unlocks chat so players can talk again"
  14. broadcast "&b/broadcast &8: &7Make a custom broadcast"
  15. broadcast "&b/bc &8: &7Make a custom Broadcast"
  16. broadcast "&8&m-----------------------------------------------------"
  17. broadcast "&d&lIdeas"
  18. broadcast "&7If you have any Ideas contact the developers on our forum post"
  19. broadcast "https://minehut.com/forums/topics/59b30d254531734a8c080f95"
  20. broadcast "&8&m-----------------------------------------------------"
  21.  
  22. command /clearchat:
  23. aliases: /cc
  24. permission: custom.clearchat
  25. permission message: "&c&lSorry &8: &7you dont have permissions!"
  26. trigger:
  27. loop 200 times:
  28. broadcast " "
  29. broadcast "&8[&dCLEARCHAT&8] &b%player%, &7has cleared the chat!"
  30.  
  31. command /broadcast <string>:
  32. aliases: /bc
  33. permission: custom.broad
  34. permission message: "&c&lSorry &8: &7you dont have permissions!"
  35. trigger:
  36. broadcast “&7SERVER_NAME &8» %arg-1%"
  37.  
  38. on chat:
  39. replace all "fuck" with "****" in the message
  40. replace all "cunt" with "****" in the message
  41. replace all "bitch" with "****" in the message
  42. replace all "nigger" with "****" in the message
  43. replace all "pussy" with "****" in the message
  44. replace all "faggot" with "****" in the message
  45. replace all "kys" with "Hope you live " in the message
  46. replace all "Owner" with "Owners_name" in the message
  47. replace all "owner" with "Owners_name" in the message
  48.  
  49. command /lockchat:
  50. aliases: /lc
  51. permission: custom.lock
  52. permission message: "&c&lSorry &8: &7you dont have permissions"
  53. trigger:
  54. set {locker} to "%player%"
  55. set {locked} to 1
  56. broadcast "&8[&aCHATLOCK&8] &7Chat has been locked by &4bplayer%"
  57.  
  58. command: /unlockchat:
  59. aliases: /chatu, /uchat, /uc
  60. permission: custom.unlock
  61. trigger:
  62. set {locked} to 0
  63. broadcast "&8[aCHATLOCK&8] &cChat has been unlocked by &b%player%"
Add Comment
Please, Sign In to add comment