kurakurakuragon

GGGame_CCClicker

Apr 27th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. #option
  2.  
  3. options:
  4. Title: &d[&6Control&eSystem&d]
  5.  
  6. # 処罰系統
  7. command /tempban:
  8. permission: skript.punishment
  9. trigger:
  10.  
  11. #Ipcheck
  12. command /info <player>:
  13. permission: skript.punishment
  14. trigger:
  15. loop all players:
  16. loop-player is not arg 1
  17. if ip of loop-player is ip of arg 1:
  18. set {_SameIP} to "%loop-player% (%UUID of loop-player%)"
  19. remove "%loop-player%" from {player.info.%arg 1%::*}
  20. add "%loop-player%" to {player.info.%arg 1%::*}
  21. remove "%arg 1%" from {player.info.%arg 1%::*}
  22. add "%arg 1%" to {player.info.%arg 1%::*}
  23. send "&9----------------------------------" to player
  24. send "&eName &8: &7%arg 1%" to player
  25. send "&aUUID &8: &7%UUID of arg 1%" to player
  26. send "&bIP &8: &7%ip of arg 1%" to player
  27. send "&6Same IP &8: &7%{_SameIP}%" to player
  28. send "&9Used IP &8: &7%{player.info.%arg 1%::*}%" to player
  29. send "&9----------------------------------" to player
  30.  
  31. #初期系統
  32.  
  33. #serverSpawn
  34.  
  35. command /setserverspawn:
  36. permission: skript.admin
  37. trigger:
  38. set {server.spawn} to location of player
  39. send "{@Title} &fServerSpawnを変更しました"
  40.  
  41. on join:
  42. set join message to "{@Title} &f%player%さんがサーバーに参加しました"
  43. teleport the player to {server.spawn}
  44.  
  45. on quit:
  46. set quit message to "{@Title} &f%player%さんがサーバーから退出しました"
  47.  
  48. #他
  49.  
  50. #command log
  51.  
  52. on command:
  53. sender is player
  54. loop all players:
  55. loop-player have permission "admin"
  56. message "&d[&6Command&eLog&d] &c%player%&8 /%full command%" to loop-player
  57.  
  58. # mustn't command
  59.  
  60. on command:
  61. if full command is "pl":
  62. player do not have permission "admin"
  63. send "Plugins (11): &aClickerGames&f, &aWordEdit&f, &aSkript&f, &aWorldGurd&f, &aPermissionsEx&f, &aLunaChat&f, &aViaVersion&f, &aViaBackWars&f, &aPlayerRealms&f, &aHolographicDisplays&f, &aPacketMenu"
  64. cancel event
  65. if full command is "plugins":
  66. player do not have permission "admin"
  67. send "Plugins (11): &aClickerGames&f, &aWordEdit&f, &aSkript&f, &aWorldGurd&f, &aPermissionsEx&f, &aLunaChat&f, &aViaVersion&f, &aViaBackWars&f, &aPlayerRealms&f, &aHolographicDisplays&f, &aPacketMenu"
  68. cancel event
  69. if full command is "help":
  70. player do not have permission "admin"
  71. send "{@Title} &cそのコマンドは使用できません"
  72. cancel event
  73.  
  74. #TAB
  75.  
  76. on quit:
  77. loop all players:
  78. wait 0.5 ticks
  79. set tab header to "&6&l-ClickerGames-" and footer to "&aOnline players &8: &a%amount of all players%&7/&c15" for loop-player
  80.  
  81. on world change:
  82. loop all players:
  83. set tab header to "&6&l-ClickerGames-" and footer to "&aOnline players &8: &a%amount of all players%&7/&c15" for loop-player
  84.  
  85. #item name and lore
  86.  
  87. command /itemname [<text>]:
  88. permission: skript.admin
  89. trigger:
  90. set the name of held item to colored arg
  91. send "{@Title} &f変更が完了しました"
  92.  
  93.  
  94. command /itemlore [<number>] [<text>]:
  95. permission: skript.admin
  96. trigger:
  97. set line arg 1 of lore of held item to colored "%arg 2%"
  98. send "{@Title} &f変更が完了しました"
  99.  
  100. on tab complete:
  101. player do not have permission "skript.punishment"
  102. cancel event
Add Comment
Please, Sign In to add comment