Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. on chat: * Cenzurowanie *
  2. replace all "kurwa" with "ku#wa" in the message
  3. replace all "spierdalaj" with "spi####laj" in the message
  4. replace all "chuj" with "ch#j" in the message
  5. replace all "huj" with "h#j" in the message
  6. replace all "cipka" with "ci#ka" in the message
  7. replace all "dziwka" with "dz##ka" in the message
  8. replace all "kutas" with "ku#as" in the message
  9. * Anty reklama *
  10. replace all "infocraft.eu" with "*serwer*" in the message
  11. replace all "craftboard.pl" with "*serwer*" in the message
  12. replace all "mineserwer.pl" with "*serwer*" in the message
  13. replace all "hostmc" with "*serwer*" in the message
  14. replace all "mcgo.pl" with "*serwer*" in the message
  15. replace all "badziewny serw" with "*Swietny serwer*" in the message
  16. replace all "csrv.pl" with "*serwer*" in the message
  17. replace all "ench.pl" with "*serwer*" in the message
  18. replace all "srvmc.pl" with "*serwer*" in the message
  19. * Słownik + anti flood *
  20. replace all "nei" with "nie" in the message
  21. replace all "niee" with "nie" in the message
  22. replace all "nieee" with "nie" in the message
  23. replace all "nieeee" with "nie" in the message
  24. replace all "nieeeee" with "nie" in the message
  25. replace all "nieeeeee" with "nie" in the message
  26. replace all "hoc" with "chodz" in the message
  27. replace all "hodz" with "chodz" in the message
  28. replace all "ho" with "chodz" in the message
  29. replace all "cho" with "chodz" in the message
  30. replace all "heu" with "hue" in the message
  31. replace all "ahah" with "haha" in the message
  32. replace all "ihih" with "hihi" in the message
  33.  
  34. command /ichat [<text>]:
  35. trigger:
  36. if arg 1 is "off":
  37. set {chat.on} to true
  38. broadcast "Chat zostal wylaczony"
  39. if arg 1 is "on":
  40. set {chat.on} to false
  41. if arg 1 is "clear":
  42. loop 100 times:
  43. broadcast "Chat zostal wyczyszczony !"
  44.  
  45. on chat:
  46. if {chat.on} is true:
  47. cancel event
  48.  
  49.  
  50. on chat:
  51. if {chat.%player%} is false:
  52. set {chat.%player%} to true
  53. wait 3 seconds
  54. set {chat.%player%} to false
  55. else:
  56. cancel event
  57. send "Mozesz pisac co 3 sekundy!"
  58. stop
  59.  
  60. options:
  61. tag: Ostrzezenie
  62. ostrzezenia: 3
  63.  
  64. command /warn [<player>] [<text>]:
  65. permission: iserver.warn
  66. permission message: Nie masz uprawnien do dawania ostrzezen !
  67. trigger:
  68. if arg 1 is set:
  69. if {warn.%arg 1%} is 3:
  70. make console execute command "/tempban %arg 1% 20 minutes Zostales zbanowany na 20 minut. Przekroczyles liczbe ostrzezen! "
  71. set {skript.%arg1%} to 0
  72. stop
  73. else:
  74.  
  75. add 1 to {skript.%arg 1%}
  76.  
  77. broadcast "{@tag} Gracz (%arg 2% Zostal zbanowany na 20 minut za przekroczenie liczby ostrzezen! )"
  78. else:
  79. send "Wpisz /warn <nick> <powod> !"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement