Advertisement
KingofAiming

Untitled

Aug 7th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. regeln_server:
  30. command: /regeln
  31. type: TEXT
  32. text:
  33. - '&8&l&m-------------------&c Regeln&8&l&m --------------------'
  34. - '&f1. &cHacken &7in aller Form ist &cverboten!'
  35. - '&f2. &cSpammen &7in aller Art ist &cverboten!'
  36. - '&f3. &cBeleidigen &7in aller Form ist &cverboten!'
  37. - '&f4. &cWerbung &7ist in aller Form &cverboten!'
  38. - '&f5. &cEchtgeld-Handel &7ist strengstens &cverboten!'
  39. - '&f6. &cSchädliche Daten &7zu verbreiten ist &cverboten!'
  40. - '&f7. &cPrivate und Sensible Daten &7zu verbreiten ist &cverboten!'
  41. - '&f8. &cPornografische Inhalte &7sind strengstens &cverboten!'
  42. - '&f9. &7Es gibt keine &cFehler&7, nur &aFeatures&7!'
  43. - '&f10. &cBitte &7achtet auf die Anweisungen des &6Teams!'
  44. - '&8&l&m-------------------&c Regeln&8&l&m -------------------'
  45. permission-required: false
  46. discord_server:
  47. command: /discord
  48. type: TEXT
  49. text:
  50. - '&8&l&m------------------------------------------------'
  51. - '&8'
  52. - '&6◊ Server&7 ┃ &aUnser Discord: https://discord.gg/gfMYF7b'
  53. - '&8'
  54. - '&8&l&m------------------------------------------------'
  55. permission-required: false
  56. plugin_server:
  57. command: /pl
  58. type: TEXT
  59. text:
  60. - '&fModule (1): &eServer'
  61. permission-required: false
  62. plugin_server2:
  63. command: /plugins
  64. type: TEXT
  65. text:
  66. - '&fModule (1): &eServer'
  67. permission-required: false
  68. plugin_server3:
  69. command: /mo
  70. type: TEXT
  71. text:
  72. - '&fModule (1): &eServer'
  73. permission-required: false
  74. plugin_server4:
  75. command: /modul
  76. type: TEXT
  77. text:
  78. - '&fModule (1): &eServer'
  79. permission-required: false
  80. plugin_server5:
  81. command: /module
  82. type: TEXT
  83. text:
  84. - '&fModule (1): &eServer'
  85. permission-required: false
  86. plugin_server6:
  87. command: /modules
  88. type: TEXT
  89. text:
  90. - '&fModule (1): &eServer'
  91. permission-required: false
  92. help_command:
  93. command: /hilfe
  94. type: TEXT
  95. text:
  96. - '&8&l&m------------------------------------------------'
  97. - '&8'
  98. - '&6◊ Server&7 ┃ &aUnter &6/warp &afindest du die Warps!'
  99. - '&6◊ Server&7 ┃ &aUnter &6/ranks &afindest du die Ränge!'
  100. - '&6◊ Server&7 ┃ &aUnter &6/menu &afindest du das Server-Menu!'
  101. - '&8'
  102. - '&8&l&m------------------------------------------------'
  103. permission-required: false
  104. tab_completer:
  105. command: /greets
  106. type: RUN_COMMAND
  107. runcmd:
  108. - '$broadcasttext$&0[&e$player&0]&r $multiargs'
  109. required_args: 1
  110. register: true
  111. tab_completer:
  112. - Hi
  113. - Hello!
  114. - Well Met!
  115. delay_example:
  116. command: /mycmd-countdown
  117. type: RUN_COMMAND
  118. runcmd:
  119. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color3..'
  120. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color2..'
  121. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color1..'
  122. - '$delay$$broadcasttext$&0[&eCountdown&0] &eGO!!'
  123. cost: 0
  124. delaytimer: 1
  125. delaytimer_format: SECONDS
  126. some_placeholders:
  127. command: /playerinfo
  128. type: TEXT
  129. text:
  130. - '&2Player name : &a$player'
  131. - '&2World : &a$world'
  132. - '&2Health : &a$health &2Food : &a$food'
  133. - '&2Exp : &a$exp &2Level : &a$level'
  134. - '&2Gamemode : &a$gamemode'
  135. - '&2LastDamage : &a$lastdamage'
  136. mycmd_list_command:
  137. command: /online
  138. type: TEXT
  139. text:
  140. - '&2There are &a$online &2players online.'
  141. - '&a $ponline'
  142. clear_chat:
  143. command: /cc
  144. type: BROADCAST_TEXT
  145. text:
  146. - '%Repeat%100% '
  147. - '&eServer &8┃ &7Der &6Chat &7wurde &6geleert!'
  148. error-message: '&c» &7Das ist nicht erlaubt!'
  149. permission-required: true
  150. permission-node: cc.admin
  151. server_menu:
  152. command: /menu
  153. type: ICON_MENU
  154. text:
  155. - 'POSITION:ITEM_NAME:ITEMDATA:COMMAND/MESSAGE:TITLE:DESCRIPTION;MULTILINES'
  156. - 'ITEM_NAME can also be ITEM_NAME;ENCHANTMENT_NAME;LEVEL'
  157. iconmenu_title: '&eServer Menu'
  158. iconmenu_size: 27
  159. iconmenu_commands:
  160. - 10:GOLDEN_APPLE:0:/hilfe:&2Hilfe:&aÖffnet das Hilfe Menü!
  161. - 12:PAPER:0:/regeln:&9Regeln:&bZeigt dir die Regeln!
  162. - 14:BOOK:0:/discord:&dDiscord:&eUnser Discord!
  163. - 16:BEACON:0:/ranks:&bRänge:&6Alle Spieler Ränge!
  164. cost: 0
  165. delaytimer: 5
  166. permission-node: menu.user
  167. permission-required: true
  168. iconmenu_page2:
  169. command: /iconmenu2
  170. type: ICON_MENU
  171. iconmenu_title: 'Page 2'
  172. iconmenu_size: 9
  173. iconmenu_commands:
  174. - '0:LEGACY_GOLDEN_APPLE:0:Do something:Hello!:=)'
  175. - '8:LEGACY_WOOL:13:%openiconmenu%/iconmenu:Return Back:&cChange IconMenu Page;&a<---------'
  176. cost: 0
  177. delaytimer: 5
  178. dailybonus:
  179. command: /daily
  180. type: RUN_CONSOLE
  181. runcmd:
  182. - "$Script$%if%$todaydate!=$PlayerData%DailyBonus%"
  183. - "$text$&6&lDailyBonus &7| &b Moin $player! Hier ist deine tägliche Belohnung!"
  184. - "$text$&6&lDailyBonus &7| &b Du hast +1 DIAMANTEN erhalten!"
  185. - "%PlayerOptions%addItem: DIAMOND:1"
  186. - "$Script$%PlayerData%DailyBonus=$todaydate"
  187. - "$text$&6&lDailyBonus &7| &bKomm morgen wieder!"
  188. - "$Script$%else%"
  189. - "$text$&6&lDailyBonus &7| &bNicht so gierig! Komm morgen wieder!"
  190. permission-node: daily.user
  191. permission-required: true
  192. warp_menu:
  193. command: /warp
  194. type: ICON_MENU
  195. text:
  196. - 'POSITION:ITEM_NAME:ITEMDATA:COMMAND/MESSAGE:TITLE:DESCRIPTION;MULTILINES'
  197. - 'ITEM_NAME can also be ITEM_NAME;ENCHANTMENT_NAME;LEVEL'
  198. iconmenu_title: '&cWarps'
  199. iconmenu_size: 27
  200. iconmenu_commands:
  201. - 3:ENDER_PEARL:0:/ewarp TeamHalle:&eEventbühne:&bWarpt dich zur Eventbühne!
  202. - 5:DIAMOND_SWORD:0:/ewarp PvP:&ePvP:&dWarpt dich zu PVP!
  203. - 13:MAGMA_CREAM:0:/spawn:&aSpawn:&6Warpe dich zum Spawn!
  204. - 21:STICK:0:/ewarp Knockback:&3Knockback:&6Teleportiere dich zu Knockback!
  205. - 23:DIAMOND_BOOTS:0:/ewarp 1vs1:&c1vs1:&3Teleportiere dich zu 1vs1!
  206. delaytimer: 5
  207. permission-node: warp.user
  208. permission-required: true
  209. ban_info:
  210. command: /baninfo
  211. type: TEXT
  212. text:
  213. - '&8&l&m»--------------------------------------------«'
  214. - '&9'
  215. - '&e Grund &7- &eZeit'
  216. - '&c'
  217. - '&f1.&c Hacking&7 - &c3 Tage ban'
  218. - '&f2.&c Werbung&7 - &c30m Mute'
  219. - '&f3.&c Beleidigeng&7 - &c15m Mute'
  220. - '&f4.&c Echtgeldhandel&7 - &cPerma ban'
  221. - '&f5.&c Chatbombing&7 - &c30m Mute'
  222. - '&f6.&c Griefen&7 - &cPerma ban'
  223. - '&f7.&c Caps&7 - &c3m Mute'
  224. - '&f8.&c Mods&7 - &c1 Tag ban'
  225. - '&7'
  226. - '&8&l&m»--------------------------------------------«'
  227. permission-required: true
  228. permission-node: baninfo.team
  229. rank_info:
  230. command: /ranks
  231. type: TEXT
  232. text:
  233. - '&8&l&m -----------------&b Ränge &8&l&m -----------------'
  234. - '&f1.&6 Premium'
  235. - '&f2.&e Pro'
  236. - '&f3.&3 Expert'
  237. - '&f4.&d Supreme'
  238. - '&f5.&c King'
  239. - '&f6.&5 YouTuber'
  240. - '&8&l&m -----------------&b Ränge &8&l&m -----------------'
  241. permission-required: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement