Advertisement
CREAMPAN0408

Untitled

May 2nd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. options:
  2. tag: &5[&bTAG&5]
  3.  
  4. command /check <text>:
  5. usage: /check <player>
  6. permission: pro.admin
  7. permission message: you are not admin
  8. trigger:
  9. send "&5===== REPORTS =====" to player
  10. send "&4%arg 1% &6have been reported &4%{report1.%arg 1%}% &6times"
  11. send "&4%arg 1% &6have reported other users &4%{report2.%arg 1%}% &6times"
  12. command /report <player> <text>:
  13. usage: /report <player> <reason>
  14. trigger:
  15. if {report.cooldown.%player%} is false:
  16. add 1 to {report1.%arg 1%}
  17. add 1 to {report2.%player%}
  18. send "&6Report sent to all staff online" to player
  19. loop all players:
  20. if loop-player have permission "pro.admin":
  21. send "&5===== &5REPORT =====" to loop-player
  22. send "&6Report by: %player%" to loop-player
  23. send "&6Player reported: %arg 1%" to loop-player
  24. send "&6Reason: %arg 2%" to loop-player
  25. set {report.cooldown.%player%} to true
  26. wait 30 seconds
  27. set {report.cooldown.%player%} to false
  28. if {report.cooldown.%player%} is true:
  29. send "&6Please wait before reporting again"
  30. on join:
  31. set {report.cooldown.%player%} to false
  32.  
  33. every 2 seconds:
  34. loop all players:
  35. clear {autoclickertestclicks.%loop-player%}
  36. set {autoclickertest.%loop-player%} to true
  37. wait 1 second
  38. set {autoclickertest.%loop-player%} to false
  39. if {autoclickertestclicks.%loop-player%} > 19:
  40. if {antiautomode} is "on":
  41. execute console command "/ban %loop-player% &6Autoclicker [%{autoclickertestclicks.%loop-player%}% clicks]"
  42. stop
  43. if {antiautomode} is "off":
  44. stop
  45. if {antiautomode} is "alert":
  46. execute console command "/alert %loop-player% %{autoclickertestclicks.%loop-player%}%"
  47. if {antiautomode} is "safe":
  48. if {safemodedetection.%loop-player%} > 1:
  49. execute console command "/ban %loop-player% &6Autoclicker [%{autoclickertestclicks.%loop-player%}% clicks] [s3]"
  50. clear {safemodedetection.%loop-player%}
  51. stop
  52. else:
  53. add 1 to {safemodedetection.%loop-player%}
  54. execute console command "/alert %loop-player% %{autoclickertestclicks.%loop-player%}%"
  55.  
  56. on left click:
  57. {autoclickertest.%player%} is true
  58. add 1 to {autoclickertestclicks.%player%}
  59.  
  60. on join:
  61. set {autoclickertest.%player%} to false
  62.  
  63. command /alert <text> <text>:
  64. permission: op
  65. trigger:
  66. loop all players:
  67. if loop-player have permission "player.admin.pro":
  68. send "{@tag} &4これやってんなぁ&e(ちなみにadminにしか通知は来ていません^q^)" to loop-player
  69. send "{@tag} &b%arg 1% &6clicked &b%arg 2% &6times" to loop-player
  70. send "{@tag} &6in 1 second" to loop-player
  71. send "{@tag} &6deal with this hacker" to loop-player
  72.  
  73. command /antiauto [<text>]:
  74. permission: pro.antiauto
  75. trigger:
  76. if arg 1 is not set:
  77. send "{@tag} &6on = やってたら自動でBAN"
  78. send "{@tag} &6off = なんか運営が連打ツール使いたいとき(そんなときない)"
  79. send "{@tag} &6alert = そいつがどんぐらい連打してるか通知が来る"
  80. send "{@tag} &6current mode is %{antiautomode}%"
  81. stop
  82. if arg 1 is "on":
  83. set {antiautomode} to "on"
  84. send "{@tag} &6mode >> on"
  85. stop
  86. if arg 1 is "off":
  87. set {antiautomode} to "off"
  88. send "{@tag} &6mode >> off"
  89. stop
  90. if arg 1 is "alert":
  91. set {antiautomode} to "alert"
  92. send "{@tag} &6mode >> alert"
  93. stop
  94. else:
  95. send "{@tag} &6on = やってたら自動でBAN"
  96. send "{@tag} &6off = 連打ツール使っても大丈夫になる"
  97. send "{@tag} &6alert = そいつがどんぐらい連打してるか通知が来る(自動でBANはしない)"
  98. send "{@tag} &6current mode is %{antiautomode}%"
  99. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement