RokiJack1326

New3

Feb 2nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. #-----------------------------------------------------------------------------------------------------------#
  2. #-----------------------------------------------------------------------------------------------------------#
  3. # MyCommand Commands config file (last update v5.3.0) #
  4. # #
  5. # BukkitDev Help page : http://dev.bukkit.org/server-mods/mycommand/pages/configuration-and-example #
  6. # #
  7. # How to make a command : (See an example command below) #
  8. # For first, put your command name on first line #
  9. # Now put your command_line name after the "command:" line. Don't forget the '/' before your command. #
  10. # So, now select your command type from a predefined list putting it after "type" line #
  11. # COMMAND TYPE LIST : #
  12. # TEXT , ALIAS , RUN_COMMAND , BROADCAST_TEXT , RUN_COMMAND_TEXT , RUN_COMMAND_BROADCAST_TEXT #
  13. # ADD_PERMISSION , WARMUP , COOLDOWN , RUN_CONSOLE , RUN_CONSOLE_RANDOM , SPOUT_TEXT #
  14. # RUN_COMMAND_RANDOM , RUN_ASOPERATOR , ICON_MENU , SCOREBOARD , BUNGEE_TP , SPOUT_NOTIFICATION #
  15. # BAR_API_TEXT , BAR_API_BROADCAST_TEXT , CALL_URL, TITLE, BROADCAST_TITLE, ACTION_BAR #
  16. # #
  17. # If your command is "TEXT" type, you can put multiple line of text below this parameter #
  18. # You can do the same thing with the "RUNCOMMAND" type, but instead of text, puts commands in this list #
  19. # For delayed command(s) add $delay$ before the command in runcmd Example : - $delay$/list #
  20. # Set delay time with delaytimer: 5 (5 = seconds) | #
  21. # If you are using the Vault plugin, you can put the "cost: 123.0" with this line. #
  22. # You can customize your permission node by placing "permission-node:" field in a command #
  23. # Also,you can change the permission error message with "permission-error:" #
  24. # Custom error-message for invalid args ,put "error-message:" line in a command. #
  25. # You can use itemcost : 'ID:AMOUNT' for set a cost with items. #
  26. # Register REAL commands putting "register: true" below the command. #
  27. # With register commands you can use the "tab_completer: - Hi - Hello!" #
  28. # For Scripts and more features, find more on the bukkitdev page #
  29. #-----------------------------------------------------------------------------------------------------------#
  30. gamemode_alias:
  31. command: /gm
  32. type: ALIAS
  33. alias: /gamemode
  34. permission-required: true
  35. uranai:
  36. command: /u_job
  37. type: RUN_AS_OPERATOR
  38. runcmd:
  39. - /scoreboard players add $arg1 占い 1
  40. itemcost: "DIAMOND:3"
  41. success-message: "占い師の権利を消費しました"
  42. error-message: "このコマンドの実行には占い師の権利が3個必要です"
  43. permission-required: false
  44. register: true
  45. reibai:
  46. command: /r_job
  47. type: RUN_AS_OPERATOR
  48. runcmd:
  49. - /scoreboard players add $arg1 霊媒 1
  50. itemcost: "ENDER_CHEST:3"
  51. success-message: "霊媒師の権利を消費しました"
  52. error-message: "このコマンドの実行には霊媒師の権利が3個必要です"
  53. permission-required: false
  54. register: true
  55. CO_J:
  56. command: /co_j
  57. type: BROADCAST-TEXT
  58. text:
  59. - '&a$playerさんが&4人狼CO&aしました'
  60. permission-required: false
  61. CO_K:
  62. command: /co_k
  63. type: BROADCAST-TEXT
  64. text:
  65. - '&a$playerさんが&4狂人CO&aしました'
  66. permission-required: false
  67. CO_r:
  68. command: /co_r
  69. type: BROADCAST-TEXT
  70. text:
  71. - '&a$playerさんが&b霊媒師CO&aしました'
  72. permission-required: false
  73. CO_U:
  74. command: /co_u
  75. type: BROADCAST-TEXT
  76. text:
  77. - '&a$playerさんが&b占い師CO&aしました'
  78. permission-required: false
  79. CO_S:
  80. command: /co_s
  81. type: BROADCAST-TEXT
  82. text:
  83. - '&a$playerさんが&b市民CO&aしました'
  84. permission-required: false
  85. CO_3:
  86. command: /co_y
  87. type: BROADCAST-TEXT
  88. text:
  89. - '&a$playerさんが&d吸血鬼CO&aしました'
  90. permission-required: false
Add Comment
Please, Sign In to add comment