Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.95 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. gamemode_alias:
  30. command: /gm
  31. type: ALIAS
  32. alias: /gamemode
  33. permission-required: true
  34. simple_dice:
  35. command: /mycmd-dice
  36. type: TEXT
  37. text:
  38. - '&0[&6Dice&0] &eYou got &6$rnd6 !'
  39. permission-required: true
  40. permission-node: mycommand.cmd.dice
  41. permission-error: "&a$player! , &2You can't use this command!"
  42. tab_completer:
  43. command: /greets
  44. type: RUN_COMMAND
  45. runcmd:
  46. - '$broadcasttext$&0[&e$player&0]&r $multiargs'
  47. required_args: 1
  48. register: true
  49. tab_completer:
  50. - Hi
  51. - Hello!
  52. - Well Met!
  53. shortcut:
  54. command: /l
  55. type: RUN_COMMAND
  56. runcmd:
  57. - '/list'
  58. cost: 0
  59. mycmd_colors:
  60. command: /mycmd-colors
  61. type: TEXT
  62. text:
  63. - "&11 &22 &33 &44 &55 &66 &77 &88 &99 &00 &aa &bb &cc &dd &ee &ff"
  64. - "&nn&r &mm&r &ll&r &oo&r $random_color :D"
  65. permission-required: false
  66. shortcut_with_arguments:
  67. command: /t
  68. type: RUN_COMMAND
  69. runcmd:
  70. - '/time $arg1 $arg2'
  71. cost: 0
  72. error-message: '&cType &e/t set day'
  73. require_all_arguments: true
  74. delay_example:
  75. command: /mycmd-countdown
  76. type: RUN_COMMAND
  77. runcmd:
  78. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color3..'
  79. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color2..'
  80. - '$delay$$broadcasttext$&0[&eCountdown&0] $random_color1..'
  81. - '$delay$$broadcasttext$&0[&eCountdown&0] &eGO!!'
  82. cost: 0
  83. delaytimer: 1
  84. delaytimer_format: SECONDS
  85. broadcast_example:
  86. command: /fbc
  87. type: BROADCAST_TEXT
  88. text:
  89. - '&7[&a&lFrüchte&2&lLand]&b $multiargs'
  90. required_args: 1
  91. permission-required: true
  92. permission-node: fbc.admin
  93. run_by_console:
  94. command: /mycmd-runconsole
  95. type: RUN_CONSOLE
  96. runcmd:
  97. - /say This message is getting performed by the console.
  98. cost: 0
  99. warmups_cooldowns_info:
  100. command: /warmupsandcooldowns
  101. type: TEXT
  102. text:
  103. - 'Put your command over /warmupsandcooldowns'
  104. - 'And change type : from text to WARMUP for Warmups and COOLDOWN for Cooldowns'
  105. - 'adjust the warmup and cooldowns time with delaytimer'
  106. delaytimer: 5
  107. add_permission:
  108. command: /command-to-override
  109. type: ADD_PERMISSION
  110. text:
  111. - '$6Add an extra permission to another existing command'
  112. permission-node: permission.name
  113. cost: 0
  114. some_placeholders:
  115. command: /mycmd-playerinfo
  116. type: TEXT
  117. text:
  118. - '&2Player name : &a$player'
  119. - '&2World : &a$world'
  120. - '&2Health : &a$health &2Food : &a$food'
  121. - '&2Exp : &a$exp &2Level : &a$level'
  122. - '&2Gamemode : &a$gamemode'
  123. - '&2LastDamage : &a$lastdamage'
  124. mycmd_list_command:
  125. command: /mycmd-online
  126. type: TEXT
  127. text:
  128. - '&2There are &a$online &2players online.'
  129. - '&a $ponline'
  130. clear_chat:
  131. command: /cc
  132. type: BROADCAST_TEXT
  133. text:
  134. - '%Repeat%100% '
  135. - '&7[&a&lFrüchte&2&lLand&7]&bDer chat wurde geleert!'
  136. required_args: 1
  137. permission-required: true
  138. permission-node: cc.admin
  139. shortcut_with_multiargs:
  140. command: /mycmd-shortcut
  141. type: RUN_COMMAND
  142. runcmd:
  143. - '/say $multiargs'
  144. random_example:
  145. command: /rockpaperscissors
  146. type: RUN_COMMAND_RANDOM
  147. runcmd:
  148. - '/me Rock!'
  149. - '/me Paper!'
  150. - '/me Scissors!'
  151. iconmenu_page1:
  152. command: /iconmenu
  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: '&cMyCommand &4ItemMenu'
  158. iconmenu_size: 27
  159. iconmenu_commands:
  160. - 0:GOLDEN_APPLE:0:/help:&2Help:&aOpen the help menu
  161. - 1:COMPASS;DAMAGE_ALL;1:0:/mycmd:Menu:MyCommand menu
  162. - 9:EMERALD:0:/list:Player List:&bShow online players
  163. - 10:LEGACY_WATCH:0:/time set 0:Day:Turn day
  164. - 11:PLAYER_HEAD%$player:0:/command:Title:Description
  165. - 26:LEGACY_WOOL:11:%openiconmenu%/iconmenu2:Next Page:&cChange IconMenu Page;&a--------->
  166. cost: 0
  167. delaytimer: 5
  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. help_page_0:
  179. command: /mycmd-help
  180. type: TEXT
  181. text:
  182. - '&a ---- &6MyCommand Help &eMain Page &a----'
  183. - '&e This is the Main page of the help '
  184. - '&e Type &6/mycmd-help 2 &efor see the second page'
  185. help_page_1:
  186. command: /mycmd-help 2
  187. type: TEXT
  188. text:
  189. - '&a ---- &6MyCommand Help &ePage two &a----'
  190. - '&e And this is the page two of the help'
  191. itemcost_example:
  192. command: /itemcostexample
  193. type: TEXT
  194. text:
  195. - '$random_colorYou have spent 5 Cobblestone for see this message.'
  196. itemcost: 'COBBLESTONE:5'
  197. scoreboard_example:
  198. command: /sbexample
  199. type: SCOREBOARD
  200. text:
  201. - The Scoreboard will get removed after DelayTimer(sec). If 0 don't remove
  202. - Use $marquee$ as a prefix of the scoreboard name for scroll the text.
  203. - Use scoreboard_refresh_ticks, for determinate how frequent the plugin have to update the scoreboard.
  204. scoreboard_name: "$marquee$&1M&2y&3C&4o&5m&6m&7a&8n&9d &aS&bc&co&dr&ee&fb&0o&1a&2r&3d &nExample&r "
  205. scoreboard_text:
  206. - "4;&c&lCoordinates:"
  207. - "3;&6X:&e $locX &6Y:&e $locY &6Z:&e $locZ "
  208. - "2;&c&lPlayer Info:"
  209. - "1;&6Health: &e$health"
  210. - "0;&6Food: &e$food"
  211. scoreboard_refresh_ticks: 5
  212. delaytimer: 10
  213. bungeecord_example:
  214. command: /bungeetest
  215. type: BUNGEE_TP
  216. server_name: hub
  217. allowed_worlds_example:
  218. command: /onlynether
  219. type: TEXT
  220. text:
  221. - "&cYea,The Nether!"
  222. allowed_worlds:
  223. - world_nether
  224. per_world_commands:
  225. command: /perworldcommand
  226. type: RUN_COMMAND
  227. runcmd:
  228. - "$world=%world%/me This command will be performed only if you are in the world"
  229. - "$world=%world_nether%/me And this only if you are in the nether"
  230. permission-required: false
  231. executefor_example:
  232. command: /executeforall
  233. type: RUN_CONSOLE
  234. executefor: ONLINE_PLAYERS
  235. runcmd:
  236. - "/tp $player 0 64 0"
  237. permission-required: false
  238. ouch:
  239. command: /ouch
  240. type: RUN_COMMAND
  241. runcmd:
  242. - '%PlayerOptions%damage: 1'
  243. - '$text$&c<3'
  244. permission-required: false
  245. heal_me:
  246. command: /mycmd-heal
  247. type: RUN_COMMAND
  248. runcmd:
  249. - '%PlayerOptions%setHealth: 20'
  250. - '%PlayerOptions%setFoodLevel: 20'
  251. - '%PlayerOptions%sendMessage: &aHealed!'
  252. permission-required: false
  253. world_guard_example:
  254. command: /checkregion
  255. type: TEXT
  256. text:
  257. - 'You are in $wgregionname region!'
  258. allowed_wg_region:
  259. - 'region_name_here'
  260. custom_cmd_cooldown:
  261. command: /cooldown-example
  262. type: TEXT
  263. text:
  264. - '&aBla bla bla, type the command again for see the cooldown effect.'
  265. cooldown: 5
  266. custom_cmd_warmup:
  267. command: /warmup-example
  268. type: TEXT
  269. text:
  270. - '&aYou have waited 5 second for see this command performed'
  271. warmup: 5
  272. call_url:
  273. command: /call-url
  274. type: CALL_URL
  275. url: 'http://localhost/yourscript.php?variable=$arg1&player=$player'
  276. get_output : true
  277. show_output_ingame : true
  278. save_output_as : httpResponse
  279. script_example_420:
  280. command: /example420
  281. type: RUN_COMMAND
  282. runcmd:
  283. - $Script$%if%$arg1==password
  284. - $text$&eRight!
  285. - $Script$%if%$arg1==420
  286. - $text$&aBLAZE IT
  287. - $Script$%else%
  288. - $text$Password not correct
  289. bar_text:
  290. command: /bar_example
  291. type: BAR_API_TEXT
  292. text:
  293. - '&aHello $random_color$player'
  294. bar_seconds: 5
  295. bar_percentage: 8
  296. bar_style: SEGMENTED_20
  297. bar_flag: DARKEN_SKY
  298. bar_color: PINK
  299. rawmessage_example:
  300. command: /raw-example
  301. type: RAW_TEXT
  302. text:
  303. - '&aHello &b$player! &aHover your mouse over me!; &dMAGIC'
  304. - '&0[&d*&0]&e Click me; &eClick Here for suggest the command &d/mycmd;/mycmd'
  305. - '$RUN_COMMAND$&0[&e*&0]&c Set the time to day; &eClick for Execute;/time set day'
  306. - '$OPEN_URL$&0[&e*&0]$random_color Open Google.com; &eClick for open;http://www.google.com'
  307. lottery_example:
  308. command: /lottery_example
  309. type: RUN_COMMAND
  310. runcmd:
  311. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  312. - '$text$&6Welcome to &eMyCommand &6Lottery!'
  313. - '$delay$'
  314. - '$text$&b+------------------------------------'
  315. - '$text$&b| &2Prize of today :'
  316. - '$text$&b| &aCOBBLESTONE, BREAD, APPLE, GOLD_INGOT or DIAMOND! '
  317. - '$text$&b+------------------------------------'
  318. - '$text$&ePlease wait for the results!'
  319. - '$delay$$delay$$delay$'
  320. - '$delay$$text$&0[$random_colorLottery&0] &65...'
  321. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  322. - '$delay$$text$&0[$random_colorLottery&0] &64...'
  323. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  324. - '$delay$$text$&0[$random_colorLottery&0] &63...'
  325. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  326. - '$delay$$text$&0[$random_colorLottery&0] &62...'
  327. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  328. - '$delay$$text$&0[$random_colorLottery&0] &61...'
  329. - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
  330. - '$delay$'
  331. - '%PlayerOptions%playSound: ENTITY_EXPERIENCE_ORB_PICKUP:1.0F:1'
  332. - '$Script$%PlayerData%lotteryprize=$GetRandomStringFromList%COBBLESTONE;DIAMOND;LEGACY_GOLD_INGOT;BREAD;APPLE%'
  333. - '$Script$%PlayerData%amount_lotteryprize=$randomnumber%3%'
  334. - '$delay$'
  335. - '$text$&b+------------------------------------'
  336. - '$text$&b| &6Congratulation! You won : &e $PlayerData%amount_lotteryprize% $PlayerData%lotteryprize%! '
  337. - '$text$&b+------------------------------------'
  338. - '%PlayerOptions%addItem: $PlayerData%lotteryprize%:$PlayerData%amount_lotteryprize%'
  339. delaytimer: 1
  340. dailybonus:
  341. command: /dailybonus
  342. type: RUN_COMMAND
  343. runcmd:
  344. - "$Script$%if%$todaydate!=$PlayerData%DailyBonus%"
  345. - "$text$&0[&6Daily&eBonus&0]&b Hello $player! Here, your daily reward!"
  346. - "$text$&0[&6Daily&eBonus&0]&b Received &a1 DIAMOND!"
  347. - "%PlayerOptions%addItem: DIAMOND:1"
  348. - "$Script$%PlayerData%DailyBonus=$todaydate"
  349. - "$text$&0[&6Daily&eBonus&0]&b Come back tomorrow!"
  350. - "$Script$%else%"
  351. - "$text$&0[&6Daily&eBonus&0]&b That's enough for today! Come back tomorrow!"
  352. permission-required: false
  353. broadcast_message_with_perm:
  354. command: /brmsgwithperm
  355. type: BROADCAST_TEXT
  356. text:
  357. - "Only the player with the correct permission can see this message"
  358. broadcast_message_permission_node: permission.for.see.this.message
  359. dynamiciconmenu:
  360. command: /dynamiciconmenu
  361. type: ICON_MENU
  362. iconmenu_size: 36
  363. iconmenu_mode: DYNAMIC
  364. permission-required: false
  365. iconmenu_commands:
  366. - "0:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  367. - "1:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  368. - "2:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  369. - "3:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  370. - "4:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  371. - "5:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  372. - "6:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  373. - "7:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  374. - "8:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  375. - "9:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  376. - "11:CLOCK:0:%stayopen%:&aServer time - $random_color$time:&bToday Date - &6 $todaydate"
  377. - "13:BEACON:0:/mycmd:&6MyCommand:&eLaunch MyCommand"
  378. - "15:ENDER_PEARL<next>ENDER_EYE<next>AIR:0:%stayopen%:???<next>!!!<next>AIR: "
  379. - "17:YELLOW_WOOL<next>LIME_WOOL:4:/command_example: : "
  380. - "18:LIME_WOOL<next>YELLOW_WOOL:5:/command_example: : "
  381. - "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"
  382. - "22:1,IRON_CHESTPLATE<next>GOLDEN_CHESTPLATE;PROTECTION_ENVIRONMENTAL;1<next>DIAMOND_CHESTPLATE;PROTECTION_EXPLOSIONS;3:0:/command_example::Description;Line 2..."
  383. - "25:BARRIER:0:%close%:Close this menu:&cClick here;&cto close"
  384. - "26:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  385. - "27:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  386. - "28:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  387. - "29:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  388. - "30:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  389. - "31:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  390. - "32:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  391. - "33:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  392. - "34:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
  393. - "35:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
  394. delaytimer: 2
  395. holographic_example:
  396. command: /holoexample
  397. type: HOLOGRAPHIC_TEXT
  398. text:
  399. - "&eHello $player, how are you?"
  400. - "$random_coloryeah, i'm fineeeee thanks!"
  401. - "&dCurrent time &5$time"
  402. delaytimer: 3
  403. merchant_example:
  404. command: /mymerchant
  405. type: MERCHANT
  406. merchant_title: '&3Hello &b$player'
  407. merchant_items:
  408. - STONE_SWORD:1:0:DAMAGE_ALL;1;FIRE_ASPECT;1:&3Old Sword:&bA very old sword<cost>GOLD_INGOT:20<max_uses>2
  409. - STONE_SWORD:1<cost>EMERALD:5<max_uses>4
  410. - IRON_BLOCK:1<cost>EMERALD:1<cost>GOLD_INGOT:1
  411. - GOLD_BLOCK:1<cost>IRON_INGOT:10
  412. - EMERALD_BLOCK:1<cost>GOLD_INGOT:50
  413. - DIAMOND_BLOCK:1<cost>GOLD_INGOT:50<cost>EMERALD:50
  414. - LEVER:1
  415. - COBBLESTONE:1
  416. banmenu:
  417. command: /banmenu
  418. type: ICON_MENU
  419. iconmenu_title: '&cBan : &2$multiargs'
  420. iconmenu_size: 27
  421. required_args: 1
  422. error-message: '&c:Unbekannter command! &4Benutze /banmenu <spieler>'
  423. register: true
  424. iconmenu_commands:
  425. - '0:INK_SACK:0:/etempban $multiargs 365d Hacks!:&c365 Tage Ban:&3Benutze das für den Ban! -;&cFly,Speed'
  426. - '2:INK_SACK:0:/etempban $multiargs 10d Respektlos!:&c10 Tage Ban:&3Benutze das für den Ban!-;&cRespektlosigkeit'
  427. - '4:INK_SACK:0:/eban $multiargs Hausverbot!:&cPermanenter Ban:&3Benutze das für den Ban! -;&cRegelvertoß'
  428. - '6:INK_SACK:0:/emute $multiargs 3600 Beleidigung!:&c1 stunde mute:&3Benutze das für den Ban! -;&cBeleidigung'
  429. - '8:INK_SACK:0:/emute $multiargs 1800 Spam!:&cHalbe stunde mute:&3Benutze das für den Ban! -;&cSpam'
  430. - '9:INK_SACK:0:/etempban $multiargs 1800 Spam!:&chalbe stunde ban:&3Benutze das für den Ban! -;&cBugusing'
  431. - '11:INK_SACK:0:/emute $multiargs 3600 Werbung!:&cEine stunde mute:&3Benutze das für den Ban! -;&cWerbung'
  432. - '13:INK_SACK:0:/emute $multiargs 3600 Werbung!:&cEine stunde mute:&3Benutze das für den Ban! -;&cWerbung'
  433. - '15:INK_SACK:0:/emute $multiargs 7200 Erzähl deine witze wo anders!:&cZwei stunden mute:&3Benutze das für den Ban! -;&cProvokation'
  434. permission-required: true
  435. permission-node: admin.punish
  436. achterbahn:
  437. command: /achterbahn
  438. type: ICON_MENU
  439. iconmenu_title: '&a&lFrüchte&2&lLand : &2Achterbahnen'
  440. iconmenu_size: 27
  441. required_args: 1
  442. register: true
  443. iconmenu_commands:
  444. - 0:MINECART:0:/fdr:&b&lAchterbahn:&9Fluch der Raben
  445. - 1:MINECART:0:/kra:&b&lAchterbahn:&7Krake
  446. - 2:MINECART:0:/ff:&b&lFreefall turm
  447. - 3:MINECART:0:/ks:&6&lThe Lost Cave
  448. - 4:MINECART:0:/px:&b&lAchterbahn:&bProject X
  449. - 5:MINECART:0:/col:&b&lAchterbahn:&6Coloso
  450. permission-required: false
  451. permission-node: fl.achterbahn
  452. fluch_der_raben:
  453. command: /fdr
  454. type: BROADCAST_TEXT
  455. text:
  456. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet am &9Fluch der Raben&8!"
  457. broadcast_message_permission_node: fruechteteam.team
  458. Krake:
  459. command: /kra
  460. type: BROADCAST_TEXT
  461. text:
  462. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet an der &8Krake&8!"
  463. broadcast_message_permission_node: fruechteteam.team
  464. Freefall:
  465. command: /ff
  466. type: BROADCAST_TEXT
  467. text:
  468. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet am &bFreefallTower!"
  469. broadcast_message_permission_node: fruechteteam.team
  470. Karussel:
  471. command: /tlc
  472. type: BROADCAST_TEXT
  473. text:
  474. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet an &6&lThe Lost Cave!"
  475. broadcast_message_permission_node: fruechteteam.team
  476. ProjectX:
  477. command: /px
  478. type: BROADCAST_TEXT
  479. text:
  480. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet am &bProjectX!"
  481. broadcast_message_permission_node: fruechteteam.team
  482. Coloso:
  483. command: /col
  484. type: BROADCAST_TEXT
  485. text:
  486. - "&a&lFrüchte&c&lTeam &8┃ &7Der Spieler &e$player &7wartet am &6Coloso&8!"
  487. broadcast_message_permission_node: fruechteteam.team
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement