Advertisement
Guest User

Untitled

a guest
Jun 21st, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. # -------------------------------------------------------------------------------
  2. # This file manages rules in chat (not commands)
  3. # and includes rules from rules.txt.
  4. #
  5. # For help, see notes in rules.txt file.
  6. # -------------------------------------------------------------------------------
  7.  
  8. # -------- Basic grammar corrections
  9. match \bhasme\b
  10. then replace hazme
  11.  
  12. match \btonto\b
  13. then replace listo
  14.  
  15. match \bidiota\b
  16. then replace caramelo
  17.  
  18. match \basco\b
  19. then replace placer
  20.  
  21. match \bhijodeputa\b
  22. then replace cielo
  23.  
  24. match \bhijo de puta\b
  25. then replace cielo
  26.  
  27. match \bcabronazo\b
  28. then replace caracol
  29.  
  30. match \bmierda\b
  31. then replace flor
  32.  
  33. match \bputo\b
  34. then replace zanahoria
  35.  
  36. match \bputa\b
  37. then replace manzana
  38.  
  39. match \bpendejo\b
  40. then replace guapo
  41.  
  42. match \bcapullo\b
  43. then replace peonza
  44.  
  45. match \bgravando\b
  46. then replace grabando
  47.  
  48. match \bgravo\b
  49. then replace grabo
  50.  
  51. # -------- Prevent asking for a rank
  52. match admin (dame|puedo ser|hazme) rango (yt|youtube)
  53. then warn &cSi quieres rango manda un mail a ravnicraft@gmail.com, pero no SPAM!!!.
  54. then deny
  55.  
  56. match clash (dame|puedo ser|hazme) rango (yt|youtube)
  57. then warn &cSi quieres rango manda un mail a ravnicraft@gmail.com, pero no SPAM!!!.
  58. then deny
  59.  
  60. match theclash (dame|puedo ser|hazme) rango (yt|youtube)
  61. then warn &cSi quieres rango manda un mail a ravnicraft@gmail.com, pero no SPAM!!!.
  62. then deny
  63.  
  64.  
  65. match (admin|theclash|clash) dame (rango|youtube) (youtube|por favor)
  66. then warn &cSi quieres rango youtube manda un mail a ravnicraft@gmail.com, pero no SPAM!!!.
  67. then deny
  68.  
  69. match (admin|theclash|clash|r3dso) hazme (vip|youtube)
  70. then warn &cSi quieres rango youtube manda un mail a ravnicraft@gmail.com, pero no SPAM!!!.
  71. then deny
  72.  
  73. # -------- Prevent people saying bad things about your server
  74. # Notice the id, it can be a string and can used multiple times.
  75. match este servidor (es (una mierda|malo|penoso|una basura|asqueroso))
  76. id ServerHate
  77. then rewrite Como me gusta este servidor!|No puedo creer que haya servidores tan buenos!|Os quiero RavniCraft!.
  78. then notify chatcontrol.notify.rulesalert &8[&7ID %ruleID&8] &7%player: &f%message
  79. then console kick %player &cGracias por adorar nuestro servidor. \Hasta otra!
  80.  
  81. match ((admin|op|ateam|server|owner) (is|are)) + *(dick|cock|duck|noob|kid)
  82. id ServerHate
  83. then console kick %player &cI don't think so.
  84. then deny
  85. then log
  86.  
  87. # -------- Example usage of unicode characters - making smileys
  88. match :\)
  89. then replace ☺
  90.  
  91. match :-\)
  92. then replace ☺
  93.  
  94. match :\(
  95. then replace ☹
  96.  
  97. match :-\(
  98. then replace ☹
  99.  
  100. match ;\)
  101. then replace ㋡
  102.  
  103. match ;-\)
  104. then replace ㋡
  105.  
  106. match \:star\:
  107. then replace ★
  108.  
  109. match \:square\:
  110. then replace ■
  111.  
  112. match \:rect\:
  113. then replace █
  114.  
  115. match <3\b
  116. then replace ♥
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement