CREAMPAN0408

Untitled

Jun 7th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. options:
  2. tag: &5[&bTAG&5]
  3.  
  4. every 2 seconds:
  5. loop all players:
  6. clear {autoclickertestclicks.%loop-player%}
  7. set {autoclickertest.%loop-player%} to true
  8. wait 1 second
  9. set {autoclickertest.%loop-player%} to false
  10. if {autoclickertestclicks.%loop-player%} > 19:
  11. if {antiautomode} is "on":
  12. execute console command "/ban %loop-player% &6Autoclicker [%{autoclickertestclicks.%loop-player%}% clicks]"
  13. stop
  14. if {antiautomode} is "off":
  15. stop
  16. if {antiautomode} is "alert":
  17. execute console command "/alert %loop-player% %{autoclickertestclicks.%loop-player%}%"
  18. if {antiautomode} is "safe":
  19. if {safemodedetection.%loop-player%} > 1:
  20. execute console command "/ban %loop-player% &6Autoclicker [%{autoclickertestclicks.%loop-player%}% clicks] [s3]"
  21. clear {safemodedetection.%loop-player%}
  22. stop
  23. else:
  24. add 1 to {safemodedetection.%loop-player%}
  25. execute console command "/alert %loop-player% %{autoclickertestclicks.%loop-player%}%"
  26.  
  27. on left click:
  28. {autoclickertest.%player%} is true
  29. add 1 to {autoclickertestclicks.%player%}
  30.  
  31. on join:
  32. set {autoclickertest.%player%} to false
  33.  
  34. command /alert <text> <text>:
  35. permission: op
  36. trigger:
  37. loop all players:
  38. if loop-player have permission "player.admin.pro":
  39. send "{@tag} &4これやってんなぁ(ちなみにadminにしか通知は来ていません^q^)" to loop-player
  40. send "{@tag} &b%arg 1% &6clicked &b%arg 2% &6times" to loop-player
  41. send "{@tag} &6in 1 second" to loop-player
  42. send "{@tag} &6deal with this hacker" to loop-player
  43. send "{@tag} &4処遇はお好みでどうぞ" to loop-player
  44.  
  45. command /antiauto [<text>]:
  46. permission: pro.antiauto
  47. trigger:
  48. if arg 1 is not set:
  49. send "{@tag} &6on = やってたら自動でBAN"
  50. send "{@tag} &6off = なんか運営が連打ツール使いたいとき(そんなときない)"
  51. send "{@tag} &6alert = そいつがどんぐらい連打してるか通知が来る"
  52. send "{@tag} &6current mode is %{antiautomode}%"
  53. stop
  54. if arg 1 is "on":
  55. set {antiautomode} to "on"
  56. send "{@tag} &6mode >> on"
  57. stop
  58. if arg 1 is "off":
  59. set {antiautomode} to "off"
  60. send "{@tag} &6mode >> off"
  61. stop
  62. if arg 1 is "alert":
  63. set {antiautomode} to "alert"
  64. send "{@tag} &6mode >> alert"
  65. stop
  66. else:
  67. send "{@tag} &6on = やってたら自動でBAN"
  68. send "{@tag} &6off = 連打ツール使っても大丈夫になる"
  69. send "{@tag} &6alert = そいつがどんぐらい連打してるか通知が来る(自動でBANはしない)"
  70. send "{@tag} &6current mode is %{antiautomode}%"
  71. stop
Add Comment
Please, Sign In to add comment