Advertisement
KingofAiming

Untitled

Aug 2nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.82 KB | None | 0 0
  1. #-----------------------------------------------------------------------------------------------------------#
  2. # MyCommand Commands config file (last update v5.5.0) #
  3. # #
  4. # BukkitDev Help page : https://dev.bukkit.org/projects/mycommand/pages/getstarted #
  5. # #
  6. # How to make a command : (See an example command below) #
  7. # For first, put your command name on first line #
  8. # Now put your command_line name after the "command:" line. Don't forget the '/' before your command. #
  9. # So, now select your command type from a predefined list putting it after "type" line #
  10. # COMMAND TYPE LIST : #
  11. # TEXT , ALIAS , RUN_COMMAND , BROADCAST_TEXT , RUN_COMMAND_TEXT , RUN_COMMAND_BROADCAST_TEXT #
  12. # ADD_PERMISSION , WARMUP , COOLDOWN , RUN_CONSOLE , RUN_CONSOLE_RANDOM , SPOUT_TEXT #
  13. # RUN_COMMAND_RANDOM , RUN_ASOPERATOR , ICON_MENU , SCOREBOARD , BUNGEE_TP , SPOUT_NOTIFICATION #
  14. # BAR_API_TEXT , BAR_API_BROADCAST_TEXT , CALL_URL, TITLE, BROADCAST_TITLE, ACTION_BAR #
  15. # #
  16. # If your command is "TEXT" type, you can put multiple line of text below this parameter #
  17. # You can do the same thing with the "RUNCOMMAND" type, but instead of text, puts commands in this list #
  18. # For delayed command(s) add $delay$ before the command in runcmd Example : - $delay$/list #
  19. # Set delay time with delaytimer: 5 (5 = seconds) | #
  20. # If you are using the Vault plugin, you can put the "cost: 123.0" with this line. #
  21. # You can customize your permission node by placing "permission-node:" field in a command #
  22. # Also,you can change the permission error message with "permission-error:" #
  23. # Custom error-message for invalid args ,put "error-message:" line in a command. #
  24. # You can use itemcost : 'ID:AMOUNT' for set a cost with items. #
  25. # Register REAL commands putting "register: true" below the command. #
  26. # With register commands you can use the "tab_completer: - Hi - Hello!" #
  27. # For Scripts and more features, find more on the bukkitdev page #
  28. #-----------------------------------------------------------------------------------------------------------#
  29. broadcast_server:
  30. command: /serverbc
  31. type: TEXT
  32. text:
  33. - '&e&lServer &7┃ &a$arg1'
  34. error-message: '&c» &7Das ist nicht erlaubt!'
  35. permission-required: true
  36. permission-node: bc.admin
  37. wartungen_server:
  38. command: /wartungen
  39. type: TEXT
  40. text:
  41. - '&8|━━━━━━━━━━━━━━━━━━━━ &cWartungen&8 ━━━━━━━━━━━━━━━━━━━━|'
  42. - '&eDieser Befehl ist in wartungen!'
  43. - '&8|━━━━━━━━━━━━━━━━━━━━ &cWartungen&8 ━━━━━━━━━━━━━━━━━━━━|'
  44. permission-required: false
  45. regeln_server:
  46. command: /regeln
  47. type: TEXT
  48. text:
  49. - '&8|━━━━━━━━━━━━━━━━━━━━ &cRegeln&8 ━━━━━━━━━━━━━━━━━━━━|'
  50. - '&f1. &cHacken &7in aller Form ist &cverboten!'
  51. - '&f2. &cSpammen &7in aller Art ist &cverboten!'
  52. - '&f3. &cBeleidigen &7in aller Form ist &cverboten!'
  53. - '&f4. &cWerbung &7ist in aller Form &cverboten!'
  54. - '&f5. &cEchtgeld-Handel &7ist strengstens &cverboten!'
  55. - '&f6. &cSchädliche Daten &7zu verbreiten ist &cverboten!'
  56. - '&f7. &cPrivate und Sensible Daten &7zu verbreiten ist &cverboten!'
  57. - '&f8. &cPornografische Inhalte &7sind strengstens &cverboten!'
  58. - '&f9. &7Es gibt keine &cFehler&7, nur &aFeatures&7!'
  59. - '&f10. &cBitte &7achtet auf die Anweisungen des &6Teams!'
  60. - '&8|━━━━━━━━━━━━━━━━━━━━ &cRegeln&8 ━━━━━━━━━━━━━━━━━━━━|'
  61. permission-required: false
  62. discord_server:
  63. command: /discord
  64. type: TEXT
  65. text:
  66. - '&8|━━━━━━━━━━━━━━━━━━━━ &9Discord&8 ━━━━━━━━━━━━━━━━━━━━|'
  67. - '&aWir haben einen Discord:'
  68. - '&6https://discord.gg/7YCXGQU'
  69. - '&8|━━━━━━━━━━━━━━━━━━━━ &9Discord&8 ━━━━━━━━━━━━━━━━━━━━|'
  70. permission-required: false
  71. plugin_server:
  72. command: /pl
  73. type: TEXT
  74. text:
  75. - '&fModule (1): &eServer'
  76. permission-required: false
  77. plugin_server2:
  78. command: /plugins
  79. type: TEXT
  80. text:
  81. - '&fModule (1): &eServer'
  82. permission-required: false
  83. help_command:
  84. command: /hilfe
  85. type: TEXT
  86. text:
  87. - '&8|━━━━━━━━━━━━━━━━ &eHilfe&8 ━━━━━━━━━━━━━━━━|'
  88. - '&aUnter &6/warp &afindest du die Warps!'
  89. - '&8|━━━━━━━━━━━━━━━━ &eHilfe&8 ━━━━━━━━━━━━━━━━|'
  90. permission-required: false
  91. tab_completer:
  92. command: /greets
  93. type: RUN_COMMAND
  94. runcmd:
  95. - '$broadcasttext$&0[&e$player&0]&r $multiargs'
  96. required_args: 1
  97. register: true
  98. tab_completer:
  99. - Hi
  100. - Hello!
  101. - Well Met!
  102. delay_example:
  103. command: /mycmd-countdown
  104. type: RUN_COMMAND
  105. runcmd:
  106. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color3..'
  107. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color2..'
  108. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color1..'
  109. - '$delay$$broadcasttext$&0[&eCountdown&0] &eGO!!'
  110. cost: 0
  111. delaytimer: 1
  112. delaytimer_format: SECONDS
  113. some_placeholders:
  114. command: /playerinfo
  115. type: TEXT
  116. text:
  117. - '&2Player name : &a$player'
  118. - '&2World : &a$world'
  119. - '&2Health : &a$health &2Food : &a$food'
  120. - '&2Exp : &a$exp &2Level : &a$level'
  121. - '&2Gamemode : &a$gamemode'
  122. - '&2LastDamage : &a$lastdamage'
  123. mycmd_list_command:
  124. command: /mycmd-online
  125. type: TEXT
  126. text:
  127. - '&2There are &a$online &2players online.'
  128. - '&a $ponline'
  129. clear_chat:
  130. command: /cc
  131. type: BROADCAST_TEXT
  132. text:
  133. - '%Repeat%100% '
  134. - '&eServer &8┃ &7Der &6Chat &7wurde &6geleert!'
  135. error-message: '&c» &7Das ist nicht erlaubt!'
  136. permission-required: true
  137. permission-node: cc.admin
  138. server_menu:
  139. command: /menu
  140. type: ICON_MENU
  141. text:
  142. - 'POSITION:ITEM_NAME:ITEMDATA:COMMAND/MESSAGE:TITLE:DESCRIPTION;MULTILINES'
  143. - 'ITEM_NAME can also be ITEM_NAME;ENCHANTMENT_NAME;LEVEL'
  144. iconmenu_title: '&eServer Menu'
  145. iconmenu_size: 27
  146. iconmenu_commands:
  147. - 3:GOLDEN_APPLE:0:/hilfe:&2Hilfe:&aÖffnet das Hilfe Menü!
  148. - 21:EMERALD:0:/list:&6Online Spieler:&bZeigt dir alle online Spieler!
  149. - 5:PAPER:0:/regeln:&9Regeln:&bZeigt dir die Regeln!
  150. - 13:BOOK:0:/discord:&dDiscord:&eUnser Discord!
  151. - 23:NAME_TAG:0:/wartungen:&cComming Soon:&cComming soon!
  152. cost: 0
  153. delaytimer: 5
  154. permission-node: menu.user
  155. permission-required: true
  156. iconmenu_page2:
  157. command: /iconmenu2
  158. type: ICON_MENU
  159. iconmenu_title: 'Page 2'
  160. iconmenu_size: 9
  161. iconmenu_commands:
  162. - '0:LEGACY_GOLDEN_APPLE:0:Do something:Hello!:=)'
  163. - '8:LEGACY_WOOL:13:%openiconmenu%/iconmenu:Return Back:&cChange IconMenu Page;&a<---------'
  164. cost: 0
  165. delaytimer: 5
  166. dailybonus:
  167. command: /daily
  168. type: RUN_CONSOLE
  169. runcmd:
  170. - "$Script$%if%$todaydate!=$PlayerData%DailyBonus%"
  171. - "$text$&6&lDailyBonus &7| &b Moin $player! Hier ist deine tägliche Belohnung!"
  172. - "$text$&6&lDailyBonus &7| &b Du hast +1 DIAMANTEN erhalten!"
  173. - "%PlayerOptions%addItem: DIAMOND:1"
  174. - "$Script$%PlayerData%DailyBonus=$todaydate"
  175. - "$text$&6&lDailyBonus &7| &bKomm morgen wieder!"
  176. - "$Script$%else%"
  177. - "$text$&6&lDailyBonus &7| &bNicht so gierig! Komm morgen wieder!"
  178. permission-node: daily.user
  179. permission-required: true
  180. broadcast_message_with_perm:
  181. command: /brmsgwithperm
  182. type: BROADCAST_TEXT
  183. text:
  184. - "Only the player with the correct permission can see this message"
  185. broadcast_message_permission_node: permission.for.see.this.message
  186. dynamiciconmenu:
  187. command: /dynamiciconmenu
  188. type: ICON_MENU
  189. iconmenu_size: 36
  190. iconmenu_mode: DYNAMIC
  191. permission-required: false
  192. iconmenu_commands:
  193. - "0:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  194. - "1:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  195. - "2:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  196. - "3:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  197. - "4:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  198. - "5:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  199. - "6:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  200. - "7:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  201. - "8:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  202. - "9:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  203. - "11:CLOCK:0:%stayopen%:&aServer time - $random_color$time:&bToday Date - &6 $todaydate"
  204. - "13:BEACON:0:/mycmd:&6MyCommand:&eLaunch MyCommand"
  205. - "15:ENDER_PEARL<next>ENDER_EYE<next>AIR:0:%stayopen%:???<next>!!!<next>AIR: "
  206. - "17:YELLOW_WOOL<next>LIME_WOOL:4:/command_example: : "
  207. - "18:LIME_WOOL<next>YELLOW_WOOL:5:/command_example: : "
  208. - "19:BOOK<next>2,BOOK<next>3,BOOK:0:%stayopen%:$random_colorPage 1<next>$random_colorPage 2<next>$random_colorPage 3:1<next>2<next>3"
  209. - "22:1,IRON_CHESTPLATE<next>GOLDEN_CHESTPLATE;PROTECTION_ENVIRONMENTAL;1<next>DIAMOND_CHESTPLATE;PROTECTION_EXPLOSIONS;3:0:/command_example::Description;Line 2..."
  210. - "25:BARRIER:0:%close%:Close this menu:&cClick here;&cto close"
  211. - "26:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  212. - "27:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  213. - "28:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  214. - "29:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  215. - "30:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  216. - "31:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  217. - "32:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  218. - "33:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  219. - "34:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  220. - "35:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  221. delaytimer: 2
  222. holographic_example:
  223. command: /holoexample
  224. type: HOLOGRAPHIC_TEXT
  225. text:
  226. - "&eHello $player, how are you?"
  227. - "$random_coloryeah, i'm fineeeee thanks!"
  228. - "&dCurrent time &5$time"
  229. delaytimer: 3
  230. warp_menu:
  231. command: /warp
  232. type: ICON_MENU
  233. text:
  234. - 'POSITION:ITEM_NAME:ITEMDATA:COMMAND/MESSAGE:TITLE:DESCRIPTION;MULTILINES'
  235. - 'ITEM_NAME can also be ITEM_NAME;ENCHANTMENT_NAME;LEVEL'
  236. iconmenu_title: '&cWarps'
  237. iconmenu_size: 27
  238. iconmenu_commands:
  239. - 3:ENDER_PEARL:0:/warp TeamHalle:&eTeamHalle:&bWarpt dich zur TeamHalle!
  240. - 5:BOOK_AND_QUILL:0:/warp Bewerben:&5Bewerben:&aWarpe dich zu den Bewerbungen!
  241. - 11:DIAMOND_SWORD:0:/warp PvP:&ePvP:&dWarpt dich zu PVP!
  242. - 13:MAGMA_CREAM:0:/spawn:&aSpawn:&6Warpe dich zum Spawn!
  243. - 15:DIAMOND_PICKAXE:0:/warp Speedmine:&2Speedmine:&6Teleportiere dich zu Speedmine!
  244. - 21:CHEST:0:/warp Shop:&5Shop:&9Teleportiere dich zum Shop!
  245. - 23:DIAMOND_BOOTS:0:/warp SkyPvP:&cSkyPvP:&3Teleportiere dich zu SkyPvP!
  246. delaytimer: 5
  247. permission-node: warp.user
  248. permission-required: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement