View difference between Paste ID: RsdRv0JY and HGi2eRb3
SHOW: | | - or go back to the newest paste.
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: /mycmd-broadcast
87
  type: BROADCAST_TEXT
88
  text:
89
  - '&0[&e$player&0]&r $multiargs'
90
  required_args: 1
91
run_by_console:
92
  command: /mycmd-runconsole
93
  type: RUN_CONSOLE
94
  runcmd:
95
  - /say This message is getting performed by the console.
96
  cost: 0
97
warmups_cooldowns_info:
98
  command: /warmupsandcooldowns
99
  type: TEXT
100
  text:
101
  - 'Put your command over /warmupsandcooldowns'
102
  - 'And change type : from text to WARMUP for Warmups and COOLDOWN for Cooldowns'
103
  - 'adjust the warmup and cooldowns time with delaytimer'
104
  delaytimer: 5
105
add_permission:
106
  command: /command-to-override
107
  type: ADD_PERMISSION
108
  text:
109
  - '$6Add an extra permission to another existing command'
110
  permission-node: permission.name
111
  cost: 0
112
some_placeholders:
113
  command: /mycmd-playerinfo
114
  type: TEXT
115
  text:
116
  - '&2Player name : &a$player'
117
  - '&2World : &a$world'
118
  - '&2Health : &a$health &2Food : &a$food'
119
  - '&2Exp : &a$exp &2Level : &a$level'
120
  - '&2Gamemode : &a$gamemode'
121
  - '&2LastDamage : &a$lastdamage'
122
mycmd_list_command:
123
  command: /mycmd-online
124
  type: TEXT
125
  text:
126
  - '&2There are &a$online &2players online.'
127
  - '&a $ponline'
128
clear_chat:
129
  command: /clearchat
130
  type: BROADCAST_TEXT
131
  text:
132
  - '%Repeat%100% '
133
  - '&0[&eMyCommand&0]&b Chat clared :D'
134
shortcut_with_multiargs:
135
  command: /mycmd-shortcut
136
  type: RUN_COMMAND
137
  runcmd:
138
  - '/say $multiargs'
139
random_example:
140
  command: /SchereSteinPapier
141
  type: RUN_COMMAND_RANDOM
142
  runcmd:
143
  - '/me Rock!'
144
  - '/me Paper!'
145
  - '/me Scissors!'
146
iconmenu_page1:
147
  command: /iconmenu
148
  type: ICON_MENU
149
  text:
150
  - 'POSITION:ITEM_NAME:ITEMDATA:COMMAND/MESSAGE:TITLE:DESCRIPTION;MULTILINES'
151
  - 'ITEM_NAME can also be ITEM_NAME;ENCHANTMENT_NAME;LEVEL'
152
  iconmenu_title: '&cMyCommand &4ItemMenu'
153
  iconmenu_size: 27
154
  iconmenu_commands:
155
  - 0:GOLDEN_APPLE:0:/help:&2Help:&aOpen the help menu
156
  - 1:COMPASS;DAMAGE_ALL;1:0:/mycmd:Menu:MyCommand menu
157
  - 9:EMERALD:0:/list:Player List:&bShow online players
158
  - 10:LEGACY_WATCH:0:/time set 0:Day:Turn day
159
  - 11:PLAYER_HEAD%$player:0:/command:Title:Description
160
  - 26:LEGACY_WOOL:11:%openiconmenu%/iconmenu2:Next Page:&cChange IconMenu Page;&a--------->
161
  cost: 0
162
  delaytimer: 5
163
iconmenu_page2:
164
  command: /iconmenu2
165
  type: ICON_MENU
166
  iconmenu_title: 'Page 2'
167
  iconmenu_size: 9
168
  iconmenu_commands:
169
  - '0:LEGACY_GOLDEN_APPLE:0:Do something:Hello!:=)'
170
  - '8:LEGACY_WOOL:13:%openiconmenu%/iconmenu:Return Back:&cChange IconMenu Page;&a<---------'
171
  cost: 0
172
  delaytimer: 5
173
help_page_0:
174
  command: /mycmd-help
175
  type: TEXT
176
  text:
177
  - '&a ---- &6MyCommand Help &eMain Page &a----'
178
  - '&e This is the Main page of the help '
179
  - '&e Type &6/mycmd-help 2 &efor see the second page'
180
help_page_1:
181
  command: /mycmd-help 2
182
  type: TEXT
183
  text:
184
  - '&a ---- &6MyCommand Help &ePage two &a----'
185
  - '&e And this is the page two of the help'
186
itemcost_example:
187
  command: /itemcostexample
188
  type: TEXT
189
  text:
190
  - '$random_colorYou have spent 5 Cobblestone for see this message.'
191
  itemcost: 'COBBLESTONE:5'
192
scoreboard_example:
193
  command: /sbexample
194
  type: SCOREBOARD
195
  text:
196
  - The Scoreboard will get removed after DelayTimer(sec). If 0 don't remove
197
  - Use $marquee$ as a prefix of the scoreboard name for scroll the text.
198
  - Use scoreboard_refresh_ticks, for determinate how frequent the plugin have to update the scoreboard.
199
  scoreboard_name: "$marquee$&1M&2y&3C&4o&5m&6m&7a&8n&9d &aS&bc&co&dr&ee&fb&0o&1a&2r&3d &nExample&r "
200
  scoreboard_text:
201
  - "4;&c&lCoordinates:"
202
  - "3;&6X:&e $locX &6Y:&e $locY &6Z:&e $locZ "
203
  - "2;&c&lPlayer Info:"
204
  - "1;&6Health: &e$health"
205
  - "0;&6Food: &e$food"
206
  scoreboard_refresh_ticks: 5
207
  delaytimer: 10
208
bungeecord_example:
209
  command: /bungeetest
210
  type: BUNGEE_TP
211
  server_name: hub
212
allowed_worlds_example:
213
  command: /onlynether
214
  type: TEXT
215
  text:
216
  - "&cYea,The Nether!"
217
  allowed_worlds:
218
  - world_nether
219
per_world_commands:
220
  command: /perworldcommand
221
  type: RUN_COMMAND
222
  runcmd:
223
  - "$world=%world%/me This command will be performed only if you are in the world"
224
  - "$world=%world_nether%/me And this only if you are in the nether"
225
  permission-required: false
226
executefor_example:
227
  command: /executeforall
228
  type: RUN_CONSOLE
229
  executefor: ONLINE_PLAYERS
230
  runcmd:
231
  - "/tp $player 0 64 0"
232
  permission-required: false
233
ouch:
234
  command: /ouch
235
  type: RUN_COMMAND
236
  runcmd:
237
  - '%PlayerOptions%damage: 1'
238
  - '$text$&c<3'
239
  permission-required: false
240
heal_me:
241
  command: /mycmd-heal
242
  type: RUN_COMMAND
243
  runcmd:
244
  - '%PlayerOptions%setHealth: 20'
245
  - '%PlayerOptions%setFoodLevel: 20'
246
  - '%PlayerOptions%sendMessage: &aHealed!'
247
  permission-required: false
248
world_guard_example:
249
  command: /checkregion
250
  type: TEXT
251
  text:
252
  - 'You are in $wgregionname region!'
253
  allowed_wg_region:
254
  - 'region_name_here'
255
custom_cmd_cooldown:
256
  command: /cooldown-example
257
  type: TEXT
258
  text:
259
  - '&aBla bla bla, type the command again for see the cooldown effect.'
260
  cooldown: 5
261
custom_cmd_warmup:
262
  command: /warmup-example
263
  type: TEXT
264
  text:
265
  - '&aYou have waited 5 second for see this command performed'
266
  warmup: 5
267
call_url:
268
  command: /call-url
269
  type: CALL_URL
270
  url: 'http://localhost/yourscript.php?variable=$arg1&player=$player'
271
  get_output : true
272
  show_output_ingame : true
273
  save_output_as : httpResponse
274
script_example_420:
275
  command: /example420
276
  type: RUN_COMMAND
277
  runcmd:
278
  - $Script$%if%$arg1==password
279
  - $text$&eRight!
280
  - $Script$%if%$arg1==420
281
  - $text$&aBLAZE IT
282
  - $Script$%else%
283
  - $text$Password not correct
284
bar_text:
285
  command: /bar_example
286
  type: BAR_API_TEXT
287
  text:
288
  - '&aHello $random_color$player'
289
  bar_seconds: 5
290
  bar_percentage: 8
291
  bar_style: SEGMENTED_20
292
  bar_flag: DARKEN_SKY
293
  bar_color: PINK
294
rawmessage_example:
295
  command: /raw-example
296
  type: RAW_TEXT
297
  text:
298
  - '&aHello &b$player! &aHover your mouse over me!; &dMAGIC'
299
  - '&0[&d*&0]&e Click me; &eClick Here for suggest the command &d/mycmd;/mycmd'
300
  - '$RUN_COMMAND$&0[&e*&0]&c Set the time to day; &eClick for Execute;/time set day'
301
  - '$OPEN_URL$&0[&e*&0]$random_color Open Google.com; &eClick for open;http://www.google.com'
302
lottery_example:
303
  command: /lottery_example
304
  type: RUN_COMMAND
305
  runcmd:
306
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
307
  - '$text$&6Welcome to &eMyCommand &6Lottery!'
308
  - '$delay$'
309
  - '$text$&b+------------------------------------'
310
  - '$text$&b| &2Prize of today :'
311
  - '$text$&b| &aCOBBLESTONE, BREAD, APPLE, GOLD_INGOT or DIAMOND! '
312
  - '$text$&b+------------------------------------'
313
  - '$text$&ePlease wait for the results!'
314
  - '$delay$$delay$$delay$'
315
  - '$delay$$text$&0[$random_colorLottery&0] &65...'
316
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
317
  - '$delay$$text$&0[$random_colorLottery&0] &64...'
318
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
319
  - '$delay$$text$&0[$random_colorLottery&0] &63...'
320
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
321
  - '$delay$$text$&0[$random_colorLottery&0] &62...'
322
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
323
  - '$delay$$text$&0[$random_colorLottery&0] &61...'
324
  - '%PlayerOptions%playSound: BLOCK_LEVER_CLICK:1.0F:1'
325
  - '$delay$'
326
  - '%PlayerOptions%playSound: ENTITY_EXPERIENCE_ORB_PICKUP:1.0F:1'
327
  - '$Script$%PlayerData%lotteryprize=$GetRandomStringFromList%COBBLESTONE;DIAMOND;LEGACY_GOLD_INGOT;BREAD;APPLE%'
328
  - '$Script$%PlayerData%amount_lotteryprize=$randomnumber%3%'
329
  - '$delay$'
330
  - '$text$&b+------------------------------------'
331
  - '$text$&b| &6Congratulation! You won : &e $PlayerData%amount_lotteryprize% $PlayerData%lotteryprize%! ' 
332
  - '$text$&b+------------------------------------'
333
  - '%PlayerOptions%addItem: $PlayerData%lotteryprize%:$PlayerData%amount_lotteryprize%'
334
  delaytimer: 1
335
dailybonus:
336
  command: /mylogin
337
  type: RUN_COMMAND
338
  runcmd:
339
  - "$Script$%if%$todaydate!=$PlayerData%DailyBonus%"
340
  - "$text$&0[&6Daily&eBonus&0] &aDu hast deine &6&lTägliche&e&lbelohnung &aabgeholt!"
341
  - "$broadcasttext$&0[&6Daily&eBonus&0] &e$player &ahat seine &6&lTägliche&e&lbelohnung &aabgeholt!"
342
  - "%PlayerOptions%addItem: DIRT:5"
343
  - "$Script$%PlayerData%DailyBonus=$todaydate"
344
  - "$text$&0[&6Daily&eBonus&0]&aKomm morgen wieder!"
345
  - "$Script$%else%"
346
  - "$text$&0[&6Daily&eBonus&0]&aDu hast deine tägliche Belohnung bereits erhalten!"
347
  permission-required: false
348
broadcast_message_with_perm:
349
  command: /brmsgwithperm
350
  type: BROADCAST_TEXT
351
  text:
352
  - "Only the player with the correct permission can see this message"
353
  broadcast_message_permission_node: permission.for.see.this.message
354
dynamiciconmenu:
355
  command: /dynamiciconmenu
356
  type: ICON_MENU
357
  iconmenu_size: 36
358
  iconmenu_mode: DYNAMIC
359
  permission-required: false
360
  iconmenu_commands:
361
  - "0:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
362
  - "1:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
363
  - "2:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
364
  - "3:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
365
  - "4:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
366
  - "5:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
367
  - "6:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
368
  - "7:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
369
  - "8:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
370
  - "9:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
371
  - "11:CLOCK:0:%stayopen%:&aServer time - $random_color$time:&bToday Date - &6 $todaydate"
372
  - "13:BEACON:0:/mycmd:&6MyCommand:&eLaunch MyCommand"
373
  - "15:ENDER_PEARL<next>ENDER_EYE<next>AIR:0:%stayopen%:???<next>!!!<next>AIR: "
374
  - "17:YELLOW_WOOL<next>LIME_WOOL:4:/command_example: : "
375
  - "18:LIME_WOOL<next>YELLOW_WOOL:5:/command_example: : "
376
  - "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"
377
  - "22:1,IRON_CHESTPLATE<next>GOLDEN_CHESTPLATE;PROTECTION_ENVIRONMENTAL;1<next>DIAMOND_CHESTPLATE;PROTECTION_EXPLOSIONS;3:0:/command_example::Description;Line 2..."
378
  - "25:BARRIER:0:%close%:Close this menu:&cClick here;&cto close"
379
  - "26:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
380
  - "27:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
381
  - "28:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
382
  - "29:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
383
  - "30:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
384
  - "31:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
385
  - "32:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
386
  - "33:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
387
  - "34:LIME_WOOL<next>YELLOW_WOOL:5:%stayopen%: : "
388
  - "35:YELLOW_WOOL<next>LIME_WOOL:4:%stayopen%: : "
389
  delaytimer: 2
390
holographic_example:
391
  command: /holoexample
392
  type: HOLOGRAPHIC_TEXT
393
  text:
394
  - "&eHello $player, how are you?"
395
  - "$random_coloryeah, i'm fineeeee thanks!"
396
  - "&dCurrent time &5$time"
397
  delaytimer: 3
398
merchant_example:
399
  command: /mymerchant
400
  type: MERCHANT
401
  merchant_title: '&3Hello &b$player'
402
  merchant_items:
403
  - STONE_SWORD:1:0:DAMAGE_ALL;1;FIRE_ASPECT;1:&3Old Sword:&bA very old sword<cost>GOLD_INGOT:20<max_uses>2
404
  - STONE_SWORD:1<cost>EMERALD:5<max_uses>4
405
  - IRON_BLOCK:1<cost>EMERALD:1<cost>GOLD_INGOT:1
406
  - GOLD_BLOCK:1<cost>IRON_INGOT:10
407
  - EMERALD_BLOCK:1<cost>GOLD_INGOT:50
408
  - DIAMOND_BLOCK:1<cost>GOLD_INGOT:50<cost>EMERALD:50
409
  - LEVER:1
410
  - COBBLESTONE:1
411
RGSETUP:
412
  command: /rgsetup
413
  type: RUN_COMMAND
414
  runcmd:
415
  - '/rg flag $arg1 build -g owners allow'
416
  - '/rg flag $arg1 build -g nonowners deny'
417
  - '/rg flag $arg1 use -g nonowners deny'
418
  - '/rg flag $arg1 use -g owners allow'
419
  - '/rg flag $arg1 chest-access -g nonowners deny'
420
  - '/rg flag $arg1 chest-access -g owners allow'
421
  required_args: 1
422
  permission-required: true
423
givefarm:
424
  command: /givefarm
425
  type: RUN_COMMAND
426
  runcmd:
427
  - '/rg addowner $arg1 $arg2'
428
  required_args: 2
429
  permission-required: true
430
REGELN:
431
  command: /regeln
432
  type: TEXT
433
  text:
434
  - '&8&l⚌⚌⚌⚌⚌⚌⚌⚌&c&lRegeln&8&l⚌⚌⚌⚌⚌⚌⚌⚌'
435
  - '&8&l⚌⚌⚌⚌⚌⚌⚌⚌&c&lAllgemein&8&l⚌⚌⚌⚌⚌⚌⚌⚌'
436
  - '&a1. &cHacking ist in jeglicher Art verboten! (Speed, Fly usw.)'
437
  - '&a2. &cBugusing ist verboten! (Auch das Hochbuggen am Rand der Map!)'
438
  - '&a3. &cBeleidigende oder anstößige Minecraft-Skins sind verboten!'
439
  - '&a4. &cDas griefen ist ebenfalls verboten!'
440
  - '&a5. &cScammen ist erlaubt!'
441
  - '&a6. &cBots sind verboten!'
442
  - '&a7. &cDas vortäuschen von Clientmodifikationen ist ebenfalls verboten!'
443
  - '&a8. &cBannumgehung ist verboten!'
444
  - '&a9. &cDas unnötige Belästigen von Teammitgliedern ist strengstens verboten!'
445
  - '&a10. &cDen Anweisungen des Serverteams ist Folge zu leisten!'
446
  - '&a11. &cDas benutzen von mehreren Accounts um Erde usw zu bekommen ist verboten!'
447
  - '&8&l⚌⚌⚌⚌⚌⚌⚌⚌&b&lChat&8&l⚌⚌⚌⚌⚌⚌⚌⚌'
448
  - '&a1. &bSpamming ist verboten!'
449
  - '&a2. &bDas fragen nach Rechten ist verboten!'
450
  - '&a3. &bIn Caps schreiben ist verboten!'
451
  permission-required: false
452
shop1:
453
  command: /shop
454
  type: ICON_MENU 
455
  iconmenu_title: '&6&lShop'
456
  iconmenu_size: 27
457
  iconmenu_commands:
458
  - '10:FEATHER:0:/buyfly:&lFly:&6Kaufe dir Flyrechte'
459
buyfly:
460
  command: /buyfly
461
  type: RUN_CONSOLE
462
  runcmd:
463
  - '/pex user $player add essentials.fly'
464
  - '/tellraw @a ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Shop","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" $player hat sich ","color":"green"},{"text":"/fly","italic":true,"color":"dark_aqua"},{"text":" gekauft!","color":"green"}]'
465
 - '/playsound random.levelup @a ~ ~ ~ 100' 
466
  register: true
467
  itemcost: 'DIAMOND:16'
468
  delaytimer: 5
469
  permission-required: false
470
#----------------------#
471
#       Punish         #
472
#----------------------#
473
punish_menu:
474
  command: /punish
475
  type: ICON_MENU
476
  iconmenu_title: '&cPunish $arg1'
477
  iconmenu_size: 56
478
  iconmenu_commands:
479
  - '4:PUMPKIN:0:%stayopen%:&c$arg1'
480
  - '13:STONE_AXE:0:%stayopen%/myban $arg1:&cBan:$arg1' 
481
  - '22:IRON_AXE:0:%stayopen%/mykick $arg1:&cKick:$arg1' 
482
  - '1:REDSTONE_BLOCK:0:%stayopen%/mymute5min $arg1:&3Mute &c5min:$arg1'
483
  - '10:REDSTONE_BLOCK:0:%stayopen%/mymute30min $arg1:&3Mute &c30min:$arg1'
484
  - '19:REDSTONE_BLOCK:0:%stayopen%/mymute1h $arg1:&3Mute &c1h:$arg1'
485
  - '28:REDSTONE_BLOCK:0:%stayopen%/mymute2h $arg1:&3Mute &c2h:$arg1'
486
  - '37:REDSTONE_BLOCK:0:%stayopen%/mymute6h $arg1:&3Mute &c6h:$arg1'
487
  - '11:REDSTONE_BLOCK:0:%stayopen%/mymute12h $arg1:&3Mute &c12h:$arg1'
488
  - '20:REDSTONE_BLOCK:0:%stayopen%/mymute24h $arg1:&3Mute &c1 Tag:$arg1'
489
  - '29:REDSTONE_BLOCK:0:%stayopen%/mymute8 $arg1:&3Mute Lifetime:$arg1'
490
  register: true
491
  required_args: 1
492
  cost: 0
493
  delaytimer: 5
494
  permission-node: punish.menu
495
  permission-required: true
496
mykick:
497
  command: /mykick
498
  type: RUN_CONSOLE
499
  runcmd:
500
  - '/ekick $arg1'
501
  - '$text$&c$arg1 &ewurde gekickt!'
502
  required_args: 1
503
  permission-node: punish.kick
504
  permission-required: true
505
mute5min:
506
  command: /mymute5min
507
  type: RUN_CONSOLE
508
  runcmd:
509
  - '/emute $arg1 5min'
510
  - '$text$&c$arg1 &ewurde gemuted!'
511
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für 5 Minuten stummgeschaltet!","color":"green"}]'
512
  required_args: 1
513
  permission-node: punish.mute5
514
  permission-required: true
515
mute30min:
516
  command: /mymute30min
517
  type: RUN_CONSOLE
518
  runcmd:
519
  - '/emute $arg1 30min'
520
  - '$text$&c$arg1 &ewurde gemuted!'
521
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für 30 Minuten stummgeschaltet!","color":"green"}]'
522
  required_args: 1
523
  permission-node: punish.mute30
524
  permission-required: true
525
mute1h:
526
  command: /mymute1h
527
  type: RUN_CONSOLE
528
  runcmd:
529
  - '/emute $arg1 1h'
530
  - '$text$&c$arg1 &ewurde gemuted!'
531
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für eine Stunde stummgeschaltet!","color":"green"}]'
532
  required_args: 1
533
  permission-node: punish.mute1
534
  permission-required: true
535
mute2h:
536
  command: /mymute2h
537
  type: RUN_CONSOLE
538
  runcmd:
539
  - '/emute $arg1 2h'
540
  - '$text$&c$arg1 &ewurde gemuted!'
541
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für zwei Stunden stummgeschaltet!","color":"green"}]'
542
  required_args: 1
543
  permission-node: punish.mute2
544
  permission-required: true
545
mute6h:
546
  command: /mymute6h
547
  type: RUN_CONSOLE
548
  runcmd:
549
  - '/emute $arg1 6h'
550
  - '$text$&c$arg1 &ewurde gemuted!'
551
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für 6 Stunden stummgeschaltet!","color":"green"}]'
552
  required_args: 1
553
  permission-node: punish.mute6
554
  permission-required: true
555
mute12h:
556
  command: /mymute12h
557
  type: RUN_CONSOLE
558
  runcmd:
559
  - '/emute $arg1 12h'
560
  - '$text$&c$arg1 &ewurde gemuted!'
561
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für 12 Stunden stummgeschaltet!","color":"green"}]'
562
  required_args: 1
563
  permission-node: punish.mute12
564
  permission-required: true
565
mute24h:
566
  command: /mymute24h
567
  type: RUN_CONSOLE
568
  runcmd:
569
  - '/emute $arg1 24h'
570
  - '$text$&c$arg1 &ewurde gemuted!'
571
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde für einen Tag stummgeschaltet!","color":"green"}]'
572
  required_args: 1
573
  permission-node: punish.mute24
574
  permission-required: true
575
mute8:
576
  command: /mymute8
577
  type: RUN_CONSOLE
578
  runcmd:
579
  - '/emute $arg1'
580
  - '$text$&c$arg1 &ewurde gemuted!'
581
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde stummgeschaltet!","color":"green"}]'
582
  required_args: 1
583
  permission-node: punish.mute8
584
  permission-required: true
585
myban:
586
  command: /myban
587
  type: RUN_CONSOLE
588
  runcmd:
589
  - '/eban $arg1'
590
  - '$text$&c$arg1 &ewurde gebannt!'
591
  - '/tellraw @a[score_TEAM_min=1] ["",{"text":"[","bold":true,"color":"dark_gray"},{"text":"Team","bold":true,"color":"red"},{"text":"]","bold":true,"color":"dark_gray"},{"text":" My","bold":true,"color":"green"},{"text":"Farm","bold":true,"color":"dark_green"},{"text":" »","color":"dark_gray"},{"text":" Der Spieler ","color":"green"},{"text":"$arg1","italic":true,"color":"red"},{"text":" wurde gebannt!","color":"green"}]'
592
  required_args: 1
593
  permission-node: punish.ban
594
  permission-required: true
595
freeze:
596
  command: /freeze
597
  type: RUN_CONSOLE
598
  runcmd:
599
  - '$text$&3$arg1 wurde eingefroren!'
600
  - '/effect $arg1 minecraft:jump_boost 1000000 200'
601
  - '/effect $arg1 minecraft:blindness 1000000 20'
602
  - '/effect $arg1 minecraft:slowness 1000000 100'
603
  required_args: 1
604
  permission-required: true
605
  permission-node: punish.freeze
606
unfreeze:
607
  command: /unfreeze
608
  type: RUN_CONSOLE
609
  runcmd:
610
  - '$text$&b$arg1 wurde aufgefroren!'
611
  - '/effect $arg1 clear'
612
  required_args: 1
613
  permission-required: true
614
  permission-node: punish.unfreeze
615
Discord:
616
  command: /Discord
617
  type: RUN_CONSOLE
618
  runcmd:
619
  - '/tellraw $player ["",{"text":"[","color":"yellow","bold":true},{"text":"Discord","color":"dark_aqua","clickEvent":{"action":"open_url","value":"https://discord.gg/Be3GhMF"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Hier Klicken","color":"green"}]}},"bold":false},{"text":"]","color":"yellow","bold":true}]'
620
  permission-required: false
621
Discord2:
622
  command: /phildiscord
623
  type: RUN_CONSOLE
624
  runcmd:
625
  - '/tellraw @a ["",{"text":"My","bold":true,"color":"green","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":"Farm","bold":true,"color":"dark_green","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":" ","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":"»","color":"dark_gray","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":" ","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":"Hier findet ihr den ","color":"green","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":"Discord Server","color":"dark_aqua","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":" von ykPhil!","color":"green","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}},{"text":" [Klick]","color":"red","clickEvent":{"action":"open_url","value":"https:/discord.gg/kuE8ytm"},"hoverEvent":{"action":"show_text","value":"Hier klicken!"}}]'
626
  permission-required: false