Advertisement
nyaago50000

Untitled

Feb 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. #SkEssentials version 3.0 by Tapioca_MilkTea#
  2. command /gamemode [<text>] [<player>]:
  3. aliases:gm
  4. permission:essential.commands
  5. permission message: &c実行する権限を持っていません。
  6. trigger:
  7. if arg 1 is not set:
  8. send "&cUsage: /gamemode <mode> [player]"
  9. stop
  10. if arg 1 is "0" or "s" or "survival":
  11. if arg 2 is not set:
  12. set the player's gamemode to survival
  13. send "&c%player%&6のゲームモードを&cサバイバルモード&6に変更しました。" to player
  14. stop
  15. if arg 2 is set:
  16. set the arg 2's gamemode to survival
  17. send "&c%arg 2%&6のゲームモードを&cサバイバルモード&6に変更しました。" to player
  18. stop
  19. if arg 1 is "1" or "c" or "creative":
  20. if arg 2 is not set:
  21. set the player's gamemode to creative
  22. send "&c%player%&6のゲームモードを&cクリエイティブモード&6に変更しました。" to player
  23. stop
  24. if arg 2 is set:
  25. set the arg 2's gamemode to creative
  26. send "&c%arg 2%&6のゲームモードを&cクリエイティブモード&6に変更しました。" to player
  27. stop
  28. if arg 1 is "2" or "a" or "adventure":
  29. if arg 2 is not set:
  30. set the player's gamemode to adventure
  31. send "&c%player%&6のゲームモードを&cアドベンチャーモード&6に変更しました。" to player
  32. stop
  33. if arg 2 is set:
  34. set the arg 2's gamemode to adventure
  35. send "&c%arg 2%&6のゲームモードを&cアドベンチャーモード&6に変更しました。" to player
  36. stop
  37. if arg 1 is "3" or "spectator":
  38. if arg 2 is not set:
  39. set the player's gamemode to spectator
  40. send "&c%player%&6のゲームモードを&cスペクテイターモード&6に変更しました。" to player
  41. stop
  42. if arg 2 is set:
  43. set the arg 2's gamemode to spectator
  44. send "&c%arg 2%&6のゲームモードを&cスペクテイターモード&6に変更しました。" to player
  45. stop
  46. command /tpall [<player>]:
  47. permission:essential.commands
  48. permission message: &c実行する権限を持っていません。
  49. trigger:
  50. if arg 1 is not set:
  51. loop all players:
  52. teleport loop-player to player
  53. send "&6全てのプレイヤーをあなたの場所にテレポートしています..."
  54. stop
  55. if arg 1 is set:
  56. loop all players:
  57. teleport loop-player to arg 1
  58. send "&6全てのプレイヤーを&c%arg 1%&6の場所にテレポートしています"
  59. stop
  60. command /hat:
  61. aliases: head
  62. trigger:
  63. if player is holding air:
  64. send "&4手にアイテムを持ってから、このコマンドを実行してください"
  65. stop
  66. if id of player's tool is more than 255:
  67. send "&4帽子にこのアイテムを使用することは出来ません"
  68. if id of player's tool is less than 255:
  69. if player's helmet slot is empty:
  70. set {hats} to 1 of player's tool
  71. remove {hats} from player's inventory
  72. equip player with {hats}
  73. message "&6帽子を装備しました"
  74. if player's helmet slot is not empty:
  75. send "&4頭に何も装備されていない状態で、このコマンドを実行してください"
  76. command /feed [<player>]:
  77. permission:essential.commands
  78. permission message: &c実行する権限を持っていません。
  79. trigger:
  80. if arg 1 is not set:
  81. set player's food level to 10
  82. send "&6あなたの空腹度を回復しました"
  83. stop
  84. if arg 1 is set:
  85. set arg 1's food level to 10
  86. send "&c%arg 1%&6の空腹度を回復しました"
  87. stop
  88. command /heal [<player>]:
  89. permission:essential.commands
  90. permission message: &c実行する権限を持っていません。
  91. trigger:
  92. if arg 1 is not set:
  93. heal the player by 1000 hearts
  94. set player's food level to 10
  95. send "&6あなたの体力と空腹度を回復しました"
  96. stop
  97. if arg 1 is set:
  98. heal arg 1 by 1000 hearts
  99. set arg 1's food level to 10
  100. send "&6あなたの体力と空腹度が回復されました" to arg 1
  101. send "&c%arg 1%&6の体力と空腹度を回復しました"
  102. stop
  103. command /day:
  104. permission:essential.commands
  105. permission message: &c実行する権限を持っていません。
  106. trigger:
  107. execute player command "/time set 6000"
  108. send "&6朝に変更しました"
  109. command /night:
  110. permission:essential.commands
  111. permission message: &c実行する権限を持っていません。
  112. trigger:
  113. execute player command "/time set 18000"
  114. send "&6夜に変更しました"
  115. command /clearchat:
  116. aliases:cc,clean,clearc,cchat
  117. permission:essential.commands
  118. permission message: &c実行する権限を持っていません。
  119. trigger:
  120. loop 200 times:
  121. broadcast ""
  122. broadcast "&6%player%がチャット履歴を消去しました"
  123. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement