Entities

Untitled

Sep 20th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. #chat filter
  2. on chat:
  3. replace all "fuck" with "****" in the message
  4. replace all "cunt" with "****" in the message
  5. replace all "bitch" with "*****" in the message
  6. replace all "nigger" with "******" in the message
  7. replace all "pussy" with "*****" in the message
  8. replace all "kys" with "Hope you live long" in the message
  9. replace all "retard" with "*******" in the message
  10. replace all "." with "*" in the message
  11. replace all ".net" with "***" in the message
  12. replace all ".com" with "***" in the message
  13. replace all "https//" with "*****" in the message
  14. replace all "www." with "***"
  15.  
  16. #EASTER EGGS
  17.  
  18. command /easteregg
  19. permission: staff.easteregg
  20. permissiom message: &7Sorry this command is only for staff
  21. trigger:
  22. message "&7on rightclick of wood sword&8 It will message to the player &6Good job you found and Easter Egg!!"
  23. message "&7"
  24.  
  25. on chat:
  26. if message is "I'm XXXCanadian"
  27. message "&cCongratulations&8! &7you won &b5 COINS"
  28. /setcoins give %player% 5
  29. stop
  30.  
  31. on rightclick holding wooden sword:
  32. if {easter.egg} is true:
  33. wait 1 tick
  34. message "&cCongratulations&8! &7you found one of &bXXXCanadian's &aEastereggs!"
  35. message "&7Kill your opanant with this sword and be rewarded 10 points!"
  36.  
  37.  
  38. on load:
  39. if {easter.egg} is not set:
  40. set {easter.egg} to true
  41.  
  42. On kill:
  43. If attackers tool is a wooden sword
  44. if {easter.egg} is true
  45. wait 1 tick
  46. /setcoins %player% give 25
  47. stop
Add Comment
Please, Sign In to add comment