CREAMPAN0408

Untitled

Dec 24th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/#
  2. # #
  3. # Anti Spam Chat&Command #
  4. # #
  5. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/#
  6. #■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  7. #==========#
  8. # 設定 #
  9. #==========#
  10. options:
  11. prefix: &7&l[&4AntiSpam&7&l]&r
  12. 警告文[chat]: &c連続でチャットをすることは出来ません!
  13. 警告文[command]: &c連続でコマンドを実行することは出来ません!
  14. クールダウン[chat]: 2 second
  15. クールダウン[command]: 2 second
  16. #■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  17. #==========#
  18. # コード #
  19. #==========#
  20. on join:
  21. set {%player%cooldwon-chat} to now
  22. set {%player%cooldwon-command} to now
  23.  
  24. on chat:
  25. difference between {%player%cooldwon-chat} and now is less than {@クールダウン[chat]}:
  26. cancel event
  27. send "{@prefix} {@警告文[chat]}" to player
  28. else:
  29. set {%player%cooldwon-chat} to now
  30.  
  31. on command:
  32. difference between {%player%cooldwon-command} and now is less than {@クールダウン[command]}:
  33. cancel event
  34. send "{@prefix} {@警告文[command]}" to player
  35. else:
  36. set {%player%cooldwon-command} to now
Add Comment
Please, Sign In to add comment