Advertisement
Guest User

chat.txt

a guest
Mar 3rd, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. # -------------------------------------------------------------------------------
  2.  
  3. # This file manages rules in chat (not commands)
  4.  
  5. # and includes rules from rules.txt.
  6.  
  7. #
  8.  
  9. # File by default contain examples that you can safely remove or change.
  10.  
  11. #
  12.  
  13. # For help, see notes in rules.txt file.
  14.  
  15. # -------------------------------------------------------------------------------
  16.  
  17.  
  18.  
  19. # -------- Basic grammar corrections
  20.  
  21. match \bdis\b
  22.  
  23. then replace this
  24.  
  25.  
  26.  
  27. match \bwanna\b
  28.  
  29. then replace want
  30.  
  31.  
  32.  
  33. match \bgonna\b
  34.  
  35. then replace going
  36.  
  37.  
  38.  
  39. # -------- Prevent asking for a rank
  40.  
  41. match (can|may|would you like if) i (have|be|become|get|has) (op|admin|mod|builder)
  42.  
  43. then warn &cCurrently, we are not looking for new staff.
  44.  
  45. then deny
  46.  
  47.  
  48.  
  49. match (do|are) you (need|wish|looking for) (any|some|one|good) (op|ops|operators|admins|mods|builders|new people|ateam)
  50.  
  51. then warn &cCurrently, we are not looking for new staff.
  52.  
  53. then deny
  54.  
  55.  
  56.  
  57. # -------- Prevent people saying bad things about your server
  58.  
  59. # Notice the id, it can be a string and can used multiple times.
  60.  
  61. match this server (is (bad|crappy|shitty)|suck)
  62.  
  63. id ServerHate
  64.  
  65. then rewrite I love this filter!|I can't behave property due to brain damage!|My bad manners was corrected by server.
  66.  
  67. then notify chatcontrol.notify.rulesalert &8[&7ID %ruleID&8] &7%player: &f%message
  68.  
  69. then console kick %player &cYour rating will be processed by our staff soon. \nThanks and welcome back!
  70.  
  71.  
  72.  
  73. match ((admin|op|ateam|server|owner) (is|are)) + *(dick|cock|duck|noob|kid)
  74.  
  75. id ServerHate
  76.  
  77. then console kick %player &cI don't think so.
  78.  
  79. then deny
  80.  
  81. then log
  82.  
  83.  
  84.  
  85. # -------- Example usage of unicode characters - making smileys
  86.  
  87. #match :\)
  88.  
  89. #then replace ☺
  90.  
  91.  
  92.  
  93. #match :-\)
  94.  
  95. #then replace ☺
  96.  
  97.  
  98.  
  99. #match :\(
  100.  
  101. #then replace ☹
  102.  
  103.  
  104.  
  105. #match :-\(
  106.  
  107. #then replace ☹
  108.  
  109.  
  110.  
  111. #match ;\)
  112.  
  113. #then replace ㋡
  114.  
  115.  
  116.  
  117. #match ;-\)
  118.  
  119. #then replace ㋡
  120.  
  121.  
  122.  
  123. #match \:star\:
  124.  
  125. #then replace ★
  126.  
  127.  
  128.  
  129. #match <3\b
  130.  
  131. #then replace ❤
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement