-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathplugin.yml
1452 lines (1293 loc) · 38.1 KB
/
plugin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: RoyalCommands
main: org.royaldev.royalcommands.RoyalCommands
version: 0.2.3pre
website: http://dev.royaldev.org/
author: jkcclemens
depend: [Vault]
softdepend: [VanishNoPacket]
commands:
level:
description: Levels your experience up one level.
usage: /<command>
setlevel:
description: Sets your XP level to specified amount.
usage: /<command> [level] (player)
aliases: [slvl, slevel, setlvl]
sci:
description: Selectively removes items from a player's inventory.
usage: /<command> [player] [item] (amount)
speak:
description: Make another player talk.
usage: /<command> [player] [message]
facepalm:
description: Broadcasts your facepalm.
usage: /<command>
aliases: [fp, fpalm, facep]
slap:
description: Broadcasts you slapping another player.
usage: /<command> [player]
harm:
description: Harms a player.
usage: /<command> [player] [damage]
starve:
description: Lowers a player's hunger.
usage: /<command> [player] [damage]
aliases: [strv]
banned:
description: Returns if a player is banned.
usage: /<command> [player]
setarmor:
description: Sets your armor to a certain type.
usage: /<command> [material]
aliases: [armor, sarmor]
getip:
description: Gets the IP of a user.
usage: /<command> [player]
aliases: [getaddr, gip]
compareip:
description: Compare two users' IP addresses.
usage: /<command> [player1] [player2]
aliases: [compip, cip]
ragequit:
description: Ragequits yourself or another player.
usage: /<command> (player)
aliases: [rage, rq]
quit:
description: Makes yourself quit.
usage: /<command>
rank:
description: Check the rank of the specified player (permissions).
usage: /<command> [player]
freeze:
description: Freezes the player.
usage: /<command> [player]
aliases: [fz, frz]
fakeop:
description: Fakes a "You are now op!" message.
usage: /<command> [player]
aliases: [fop]
vtp:
description: Teleports to anyone, regardless of being vanished or having teleport off.
usage: /<command> [player]
vtphere:
description: Teleports anyone you, regardless of being vanished or having teleport off.
usage: /<command> [player]
megastrike:
description: Strikes lightning 15 times at the player's cursor or at specified player.
usage: /<command> (player)
aliases: [mstrike, megasmite, msmite, ms]
pext:
description: Extinguishes yourself or a player.
usage: /<command> (player)
aliases: [playerext, pex, splash]
item:
description: Adds an item to your inventory.
usage: /<command> [item](:metadata) (amount)
aliases: [i]
clearinventory:
description: Clears your inventory.
usage: /<command> (user)
aliases: [ci, clearinv]
weather:
description: Changes the weather.
usage: /<command> [conditions] (seconds)
fixchunk:
description: Fixes a voided chunk (world holes) by reloading it.
usage: /<command>
aliases: [fc, fixc, cfix]
give:
description: Gives a player items.
usage: /<command> [player] [item](:metadata) (amount)
aliases: [g]
message:
description: Send a message to a player.
usage: /<command> [player] [message]
aliases: [msg, send, tell, whisper]
reply:
description: Reply to a message.
usage: /<command> [message]
aliases: [r]
gamemode:
description: Toggles your gamemode.
usage: /<command> (player)
aliases: [gm, gamem, gmode]
ban:
description: Bans a user.
usage: /<command> [player] (message)
aliases: [rban, banish]
mute:
description: Stop a user from speaking.
usage: /<command> [player] (seconds)
aliases: [silence]
kick:
description: Kicks a player from the server.
usage: /<command> [player] (message)
aliases: [boot]
time:
description: Sets the time of your current world.
usage: /<command> [ticks] (world)
home:
description: Teleports the player home.
usage: /<command> (home)
aliases: [rhome]
sethome:
description: Sets the player's home.
usage: /<command> (home)
aliases: [shome, rsethome]
delhome:
description: Deletes a home.
usage: /<command> [home]
aliases: [dhome, rmhome, deletehome, removehome, rdeletehome]
listhome:
description: List your set homes.
usage: /<command> (player)
aliases: [lshome, listhomes, lshomes, homes, rlisthomes]
strike:
description: Strikes lightning at the player's cursor or at specified player.
usage: /<command> (player)
aliases: [smite, lightning]
jump:
description: Moves the player to the block they are looking at.
usage: /<command>
aliases: [j, go]
warn:
description: Warns the specified player.
usage: /<command> [player] (message)
clearwarns:
description: Clears the warnings on a player.
usage: /<command> [player]
aliases: [removewarns, clearwarnings, removewarnings, rmwarns, rmwarnings]
warp:
description: Go to a warp point.
usage: /<command> [warp] (player)
aliases: [warps]
setwarp:
description: Set a warp point.
usage: /<command> [warp]
aliases: [mkwarp, createwarp]
delwarp:
description: Delete a warp point.
usage: /<command> [warp]
aliases: [dwarp, deletewarp, rmwarp, removewarp]
repair:
description: Repairs the item in your hand.
usage: /<command> (all)
aliases: [fix]
unban:
description: Removes a ban from a player.
usage: /<command> [player]
aliases: [unbanish]
heal:
description: Heals a player or the player himself.
usage: /<command> (player)
feed:
description: Feeds a player or the player himself.
usage: /<command> (player)
god:
description: Toggles godmode on a player or the player himself.
usage: /<command> (player)
aliases: [tgm, godmode]
banreason:
description: Displays the reason why a user was banned.
usage: /<command> [player]
aliases: [br, banr, breason]
setspawn:
description: Sets the spawn of the world the player is standing in.
usage: /<command>
spawn:
description: Takes the player to the spawn of the world they are standing in.
usage: /<command>
banip:
description: Bans an IP address or a player's IP.
usage: /<command> (player/IP)
unbanip:
description: Unbans an IP address or a player's IP.
usage: /<command> (player/IP)
aliases: [pardonip]
list:
description: Lists the players online and the maximum amount.
usage: /<command>
aliases: [who, players, online, listplayers, playing]
back:
description: Takes you to your previous location.
usage: /<command>
teleport:
description: Teleports you to a player.
usage: /<command> [player]
aliases: [tp]
teleporthere:
description: Teleports a player to you.
usage: /<command> [player]
aliases: [tphere, tph]
teleportrequest:
description: Sends a teleport request to a player.
usage: /<command> [player]
aliases: [tpr, tpa, tprequest, teleportr]
tpaccept:
description: Accepts a teleport request.
usage: /<command>
aliases: [tpac, tpyes]
tpdeny:
description: Denies a teleport request.
usage: /<command>
aliases: [tpad, tpno]
listwarns:
description: Lists the warnings a player has.
usage: /<command> (player)
aliases: [warns, lswarns, lwarns, lwarn, lswarn, listwarn]
more:
description: Gives more of the item in hand.
usage: /<command>
teleportrequesthere:
description: Sends a teleport here request to a player.
usage: /<command> [player]
aliases: [tprh, tpahere, tpah, teleportrhere, tphrequest, tphererequest, tprhere]
spy:
description: Allows the player to spy on private messages.
usage: /<command>
aliases: [msgspy, socialspy]
spawnmob:
description: Spawns mobs where the player is looking.
usage: /<command> [mob] (amount)
aliases: [sm, mobspawn]
afk:
description: Marks the player as away from keyboard.
usage: /<command>
aliases: [away]
assign:
description: Assigns a command to a certain block.
usage: /<command> [command]
aliases: [as, pt, powertool]
onehitkill:
description: Makes all attacks kill anything (not dragons).
usage: /<command> (player)
aliases: [ohk, instakill, ik]
burn:
description: Sets a player on fire for a set amount of time.
usage: /<command> [player] (seconds)
aliases: [ignite, enflame]
kickall:
description: Kicks everyone from the server except the command issuer.
usage: /<command> (reason)
aliases: [ka, kickeveryone]
world:
description: Teleports the player to the specified world.
usage: /<command> [world]
aliases: [goto, gotoworld, tpworld, worldtp, teleportworld, worldteleport, tpw]
jail:
description: Puts a player in jail.
usage: /<command> [player] [jail]
aliases: [tjail, togglejail]
setjail:
description: Sets the location of a jail.
usage: /<command> [name]
aliases: [sjail]
less:
description: Sets the amount of the item in hand to one.
usage: /<command>
spawner:
description: Sets the type of a mob spawner.
usage: /<command> [mob]
tp2p:
description: Teleports one player to another.
usage: /<command> [player] [player]
aliases: [teleportplayertoplayer, teleportplayer2player, tpptp, tpp2p, teleportp2p, teleportptop]
motd:
description: Shows the message of the day.
usage: /<command>
aliases: [messageoftheday]
deljail:
description: Removes a jail.
usage: /<command> [jail]
aliases: [deletejail, rmjail, removejail, destroyjail]
force:
description: Forces a player to run a command.
usage: /<command> [player] [command]
aliases: [sudo, run]
ping:
description: Pings the server.
usage: /<command>
aliases: [pong]
realname:
description: Displays the real name of a player.
usage: /<command> [player]
aliases: [rn]
invsee:
description: Allows you to see the inventory or a player.
usage: /<command> [player]
aliases: [invs]
nick:
description: Sets the display name of a player.
usage: /<command> (player) (nick)
aliases: [dispname, name]
ingot2block:
description: Makes raw materials into blocks.
usage: /<command> (hand|all)
aliases: [i2b, itb]
near:
description: Gets nearby players.
usage: /<command> (radius)
aliases: [nearby, nearme, close]
kill:
description: Kills another player.
usage: /<command> [player]
aliases: [murder]
suicide:
description: Kills yourself.
usage: /<command>
aliases: [enditall, anhero]
killall:
description: Kills everyone on the server but yourself.
usage: /<command>
aliases: [kall]
muteall:
description: Mutes everyone on the server.
usage: /<command>
aliases: [silenceall]
kit:
description: Gives you a kit defined in the config.
usage: /<command> [kit-name]
rules:
description: Displays server rules.
usage: /<command>
aliases: [rule]
broadcast:
description: Broadcasts a message to the server.
usage: /<command> [message]
aliases: [bc, broadc, bcast]
hug:
description: Broadcasts a hug to the server.
usage: /<command>
aliases: [embrace]
explode:
description: Explodes where the player is looking or the specified player.
usage: /<command> [player] (power)
aliases: [destroy, end]
ride:
description: Mounts the player on another player.
usage: /<command> [player]
aliases: [mount, eject]
whobanned:
description: Displays who banned the specified player.
usage: /<command> [player]
aliases: [whoban, wbanned, banwho, bannedwho, wban]
tppos:
description: Teleports you to a specific coordinate point.
usage: /<command> [x] [y] [z] (world)
aliases: [tpos, teleportposition, tpcoords, tpp, tpc, teleportcoordinates, teleportpos, tpposition, tposition]
ignore:
description: Ignores when a player chats.
usage: /<command> (player)
aliases: [forget]
help:
description: Displays help for commands.
usage: /<command> (page)
coords:
description: Displays coordinates for yourself or a player.
usage: /<command> (player)
aliases: [pos, position, loc, location, coordinates]
tpall:
description: Teleports everyone to you.
usage: /<command>
aliases: [teleportall]
tpaall:
description: Sends a teleport request to everyone.
usage: /<command>
aliases: [tprall, teleportaskall, teleportrequestall]
vip:
description: Modifies the VIP list. VIPs can join the server when it is full.
usage: /<command> [add|remove|check|?] (player)
aliases: [reserve, slot]
dump:
description: Dumps contents of inventory into chest.
usage: /<command>
aliases: [empty, store]
seen:
description: Shows when a player was last online.
usage: /<command> [player]
aliases: [lastseen]
tempban:
description: Temporarily bans a player.
usage: /<command> [player] [seconds]
aliases: [tban, temporarilyban]
tptoggle:
description: Toggles teleportation.
usage: /<command>
aliases: [toggletp]
kits:
description: Lists the kits available to you.
usage: /<command>
aliases: [listkit, listkits]
lag:
description: Displays the ticks per seconds over a period of time.
usage: /<command> (seconds to run)
aliases: [tps, getlag]
mem:
description: Displays the current memory usage.
usage: /<command>
aliases: [memory, getmem, lagmem, ram, getram]
entities:
description: Displays the entities close to you.
usage: /<command> (radius)
aliases: [neare, enear, ents, entity, closeents, entsclose, ent]
invmod:
description: Modifies other players' inventories.
usage: /<command> [player]
aliases: [modinv]
workbench:
description: Opens a workbench anywhere.
usage: /<command>
aliases: [wb, ct, craftingtable]
enchantingtable:
description: Opens an enchanting table anywhere.
usage: /<command>
aliases: [et]
trade:
description: Opens a mutual chest between two players.
usage: /<command> [player]
furnace:
description: Remotely manages a furnace you set.
usage: /<command> [set/show]
enchant:
description: Enchants the item in hand.
usage: /<command> [enchantment/all] (level)
fireball:
description: Launches a fireball out of you.
usage: /<command>
aliases: [fb]
fly:
description: Toggles creative flymode for yourself or a player
usage: /<command> (player)
whitelist:
description: Manages the dynamic whitelist.
usage: /<command> [check/add/remove] [player]
aliases: [wl]
playertime:
description: Changes player time. If not time specified, resets it.
usage: /<command> [player] (time)
aliases: [ptime]
compass:
description: Changes where your compass points.
usage: /<command> [reset/here/location/player] (x y z/player)
helmet:
description: Changes your helmet.
usage: /<command> [item/none]
aliases: [helm]
rcmds:
description: Displays version of RoyalCommands and reloads config file.
usage: /<command>
aliases: [royalcommands]
permissions:
rcmds.level:
description: Allows you to level your XP up by 1
default: op
rcmds.setlevel:
description: Allows you to set your XP level
default: op
rcmds.sci:
description: Allows you to selectively clear inventories
default: op
rcmds.speak:
description: Allows you to spoof a message
default: op
rcmds.facepalm:
description: Allows you to facepalm
default: op
rcmds.slap:
description: Allows you to slap another player
default: op
rcmds.harm:
description: Allows you to damage another player
default: op
rcmds.starve:
description: Allows you to starve another player
default: op
rcmds.banned:
description: Allows you to check if a player is banned
default: op
rcmds.setarmor:
description: Allows you to set your armor
default: op
rcmds.getip:
description: Allows you to get the IP of another player
default: op
rcmds.compareip:
description: Allows you to compare to players' IPs
default: op
rcmds.ragequit:
description: Allows you to ragequit.
default: op
rcmds.quit:
description: Allows you to quit.
default: op
rcmds.rank:
description: Allows you to check the rank of a player.
default: op
rcmds.freeze:
description: Allows you to freeze a player.
default: op
rcmds.fakeop:
description: Allows you to fake op.
default: op
rcmds.vtp:
description: Allows you to override teleport.
default: op
rcmds.megastrike:
description: Allows you to call a mega-strike.
default: op
rcmds.pext:
description: Allows you to extinguish players.
default: op
rcmds.item:
description: Allows you to spawn items.
default: op
rcmds.fixchunk:
description: Allows you to fix chunk errors.
default: true
rcmds.weather:
description: Allows you to change weather.
default: op
rcmds.clearinventory:
description: Allows you to clear your inventory.
default: op
rcmds.give:
description: Allows you to give items to players.
default: op
rcmds.message:
description: Allows you to private message.
default: op
rcmds.reply:
description: Allows you to reply to private messages.
default: op
rcmds.gamemode:
description: Allows you to change your gamemode.
default: op
rcmds.mute:
description: Allows you to mute players.
default: op
rcmds.ban:
description: Allows you to ban players.
default: op
rcmds.time:
description: Allows you to change the time.
default: op
rcmds.home:
description: Allows you to go home.
default: op
rcmds.sethome:
description: Allows you to set a home.
default: op
rcmds.sethome.multi:
description: Allows you to set multiple homes.
default: op
rcmds.delhome:
description: Allows you to delete a home.
default: op
rcmds.listhome:
description: Allows you to list your homes.
default: op
rcmds.strike:
description: Allows you to strike lightning.
default: op
rcmds.jump:
description: Allows you to jump to your cursor.
default: op
rcmds.warn:
description: Allows you to warn players.
default: op
rcmds.clearwarns:
description: Allows you to clear warnings on players.
default: op
rcmds.warp:
description: Allows you to warp.
default: op
rcmds.setwarp:
description: Allows you to set warp points.
default: op
rcmds.delwarp:
description: Allows you to delete warps.
default: op
rcmds.repair:
description: Allows you to repair items.
default: op
rcmds.heal:
description: Allows you to heal yourself.
default: op
rcmds.unban:
description: Allows you to unban players.
default: op
rcmds.feed:
description: Allows you to feed yourself.
default: op
rcmds.banreason:
description: Allows you to check a player's ban reason.
default: op
rcmds.setspawn:
description: Allows you to set the spawn of the world.
default: op
rcmds.god:
description: Allows you to use god mode.
default: op
rcmds.spawn:
description: Allows you to go to your world's spawn.
default: op
rcmds.banip:
description: Allows you to ban IPs.
default: op
rcmds.unbanip:
description: Allows you to unban IPs.
default: op
rcmds.list:
description: Allows you to see who is online.
default: op
rcmds.back:
description: Allows you to return to where you were.
default: op
rcmds.teleport:
description: Allows you to teleport to other players.
default: op
rcmds.teleporthere:
description: Allows you to teleport other players to you.
default: op
rcmds.teleportrequest:
description: Allows you to ask other players to teleport.
default: op
rcmds.teleportrequesthere:
description: Allows you to ask other players to teleport to you.
default: op
rcmds.tpaccept:
description: Allows you to accept a teleport request.
default: op
rcmds.tpdeny:
description: Allows you to deny a teleport request.
default: op
rcmds.listwarns:
description: Allows you to list your warnings.
default: op
rcmds.more:
description: Allows you to give yourself more of the item in hand.
default: op
rcmds.spy:
description: Allows you to spy on private messages.
default: op
rcmds.spawnmob:
description: Allows you to spawn mobs.
default: op
rcmds.afk:
description: Allows you to mark yourself as AFK.
default: op
rcmds.assign:
description: Allows you to assign a command to a block.
default: op
rcmds.onehitkill:
description: Allows you to kill anything instantly.
default: op
rcmds.burn:
description: Allows you to set players on fire.
default: op
rcmds.kick:
description: Allows you to a player.
default: op
rcmds.kickall:
description: Allows you to kick every player.
default: op
rcmds.world:
description: Allows you to teleport between worlds.
default: op
rcmds.jail:
description: Allows you to jail players.
default: op
rcmds.setjail:
description: Allows you to set jails.
default: op
rcmds.less:
description: Allows you to get one of the item in hand.
default: op
rcmds.spawner:
description: Allows you to change the type of a mob spawner.
default: op
rcmds.tp2p:
description: Allows you to teleport players to each other.
default: op
rcmds.motd:
description: Allows you to see the message of the day.
default: op
rcmds.deljail:
description: Allows you to delete a jail.
default: op
rcmds.force:
description: Allows you to run a command as another player.
default: op
rcmds.ping:
description: Allows you to use /ping.
default: op
rcmds.invsee:
description: Allows you see another player's inventory.
default: op
rcmds.realname:
description: Allows you to see a player's real name.
default: op
rcmds.nick:
description: Allows you to set a player's display name.
default: op
rcmds.ingot2block:
description: Allows you to make raw materials into blocks.
default: op
rcmds.near:
description: Allows you to see nearby players.
default: op
rcmds.kill:
description: Allows you to kill other players.
default: op
rcmds.suicide:
description: Allows you to kill yourself.
default: op
rcmds.killall:
description: Allows you to kill all players on the server.
default: op
rcmds.muteall:
description: Allows you to mute all players on the server.
default: op
rcmds.kit:
description: Allows you to spawn kits.
default: op
rcmds.rules:
description: Allows you to see server rules.
default: op
rcmds.help:
description: Allows you to see server help.
default: op
rcmds.broadcast:
description: Allows you to broadcast messages to the server.
default: op
rcmds.hug:
description: Allows you to hug other players.
default: op
rcmds.explode:
description: Allows you to explode other players.
default: op
rcmds.ride:
description: Allows you to ride on other players.
default: op
rcmds.whobanned:
description: Allows you to who banned a player.
default: op
rcmds.tppos:
description: Allows you to teleport to a coordinate point.
default: op
rcmds.ignore:
description: Allows you to ignore other players.
default: op
rcmds.coords:
description: Allows you to see your coordinates.
default: op
rcmds.tpall:
description: Allows you to teleport everyone to you.
default: op
rcmds.tpaall:
description: Allows you to request everyone to teleport to you.
default: op
rcmds.vip:
description: Allows you to modify the VIP list.
default: op
rcmds.dump:
description: Allows you to store your inventory in a chest.
default: op
rcmds.seen:
description: Allows you to see when a player was last online.
default: op
rcmds.tempban:
description: Allows you to temporarily ban a player.
default: op
rcmds.tptoggle:
description: Allows you to toggle teleportation.
default: op
rcmds.kits:
description: Allows you to list available kits.
default: op
rcmds.lag:
description: Allows you to poll the ticks per second.
default: op
rcmds.mem:
description: Allows you to see the memory usage.
default: op
rcmds.entities:
description: Allows you to see nearby entities.
default: op
rcmds.invmod:
description: Allows you to modify other players' inventories.
default: op
rcmds.workbench:
description: Allows you to open a workbench anywhere.
default: op
rcmds.enchantingtable:
description: Allows you to open an enchanting table anywhere.
default: op
rcmds.trade:
description: Allows you to trade with other players.
default: op
rcmds.furnace:
description: Allows you to remotely open a furnace.
default: op
rcmds.enchant:
description: Allows you to enchant items.
default: op
rcmds.fireball:
description: Allows you to launch a fireball.
default: op
rcmds.fly:
description: Allows you to toggle flymode.
default: op
rcmds.whitelist:
description: Allows you to manage the dynamic whitelist.
default: op
rcmds.playertime:
descripiton: Allows you to change other players' times.
default: op
rcmds.compass:
description: Allows you to change where your compass points.
default: op
rcmds.helmet:
description: Allows you to change your helmet.
default: op
rcmds.rcmds:
description: Allows you to reload RoyalCommands' config.
default: op
rcmds.updates:
description: Allows you to see new update messages.
default: op
rcmds.exempt.speak:
description: Makes the player immune to /speak.
default: false
rcmds.exempt.sci:
description: Makes the player immune to /sci.
default: false
rcmds.exempt.harm:
description: Makes the player immune to /harm.
default: false
rcmds.exempt.starve:
description: Makes the player immune to /starve.
default: false
rcmds.exempt.slap:
description: Makes the player immune to /slap.