Advertisement
Davis0110

Untitled

Sep 10th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 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. banlist:
  30. command: /blist
  31. type: TEXT
  32. text:
  33. - '&7[&c&lGam&b&lble&7] &c> &4Ban-List'
  34. - '&7[&c&lGam&b&lble&7] &c> &aHacking &7= &cPermanent!'
  35. - '&7[&c&lGam&b&lble&7] &c> &aBugusen &7= &c1 Tag!'
  36. - '&7[&c&lGam&b&lble&7] &c> &aRang ausnutzen &7= &c5 Tage!'
  37. permission-required: true
  38. permission-node: mycmd.blist
  39. mutelist:
  40. command: /mlist
  41. type: TEXT
  42. text:
  43. - '&7[&c&lGam&b&lble&7] &c> &4Mute-List'
  44. - '&7[&c&lGam&b&lble&7] &c> &a Beleidigen &7= &c5 stunden!'
  45. - '&7[&c&lGam&b&lble&7] &c> &a Betteln &7= &c1 stunde!'
  46. permission-required: true
  47. permission-node: mycmd.mlist
  48. regeln:
  49. command: /regeln
  50. type: TEXT
  51. text:
  52. - '&7[&c&lGam&b&lble&7] &c> &aHacking &7= &cVerboten'
  53. - '&7[&c&lGam&b&lble&7] &c> &aBeleidigen &7= &cVerboten'
  54. - '&7[&c&lGam&b&lble&7] &c> &aBugusen &7= &cVerboten'
  55. - '&7[&c&lGam&b&lble&7] &c> &aBetteln &7= &cVerboten'
  56. - '&7[&c&lGam&b&lble&7] &c> &aRang ausnutzen &7= &cVerboten'
  57. permission-required: false
  58. broadcast:
  59. command: /nbc
  60. type: BROADCAST_TEXT
  61. text:
  62. - '&7[&c&lGam&b&lble&7]&7 $multiargs'
  63. permission-required: true
  64. permission-node: mycmd.broadcast
  65. countdown:
  66. command: /event
  67. type: RUN_COMMAND
  68. runcmd:
  69. - '$delay$$broadcasttext$&7[&cEvent&7] &c3...'
  70. - '$delay$$broadcasttext$&7[&cEvent&7] &62...'
  71. - '$delay$$broadcasttext$&7[&cEvent&7] &61...'
  72. - '$delay$$broadcasttext$&7[&cEvent&7] &aLOS!!!'
  73. permission-required: true
  74. permission-node: mycmd.cd
  75. Plugins:
  76. command: /pl
  77. type: TEXT
  78. text:
  79. - '&fModule (1): &cSystem'
  80. Plugins2:
  81. command: /module
  82. type: TEXT
  83. text:
  84. - '&fModule (1): &cSystem'
  85. Plugins3:
  86. command: /plugins
  87. type: TEXT
  88. text:
  89. - '&fModule (1): &cSystem'
  90. OP:
  91. command: /op
  92. type: TEXT
  93. text:
  94. - '&cDas darfst du nicht!'
  95. Deop:
  96. command: /deop
  97. type: TEXT
  98. text:
  99. - '&cDas darfst du nicht!'
  100. Ban:
  101. command: /eban
  102. type: TEXT
  103. text:
  104. - '&cDas darfst du nicht!'
  105. tempBan:
  106. command: /etempban
  107. type: TEXT
  108. text:
  109. - '&cDas darfst du nicht!'
  110. Help:
  111. command: /ehelp
  112. type: TEXT
  113. text:
  114. - '&cDu brauchst hilfe wende dich an die &1Supporter &c/ &2Moderator&c!'
  115. - '&cOder benutze "&7/regeln"&c!
  116. unBan:
  117. command: /unban
  118. type: TEXT
  119. text:
  120. - '&cDas darfst du nicht!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement