Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. #-----------------------------------------------------------------------------------------------------------#
  2. # MyCommand Plugin config file (last update v5.5.0) #
  3. # #
  4. # BukkitDev Help page : http://dev.bukkit.org/server-mods/mycommand/ #
  5. # #
  6. # With the listener, you can disable completely plugin parts. Put true for active and false for deactive it #
  7. # The vehicle listener, it's used only for DETECTOR_RAIL Material. #
  8. # The Move listener instead, it's used for WarmUps. #
  9. # DELAY_SEC in Signs and Block it's used for prevent the command floods. Put it on 0, for disable it. #
  10. # The Economy function require the Vault plugin. Download it here : http://dev.bukkit.org/server-mods/vault/#
  11. #-----------------------------------------------------------------------------------------------------------#
  12. LISTENERS:
  13. # Active this if you want use the /mycmd-blockset features.
  14. BLOCK_LISTENER: true
  15. # This allow you to execute commands from the ChatListener, Example, without the slash / prefix.
  16. CHAT_LISTENER: true
  17. # Turn this one on, to allow the execution of custom commands in-game. Basically the core of MyCommand
  18. CUSTOM_COMMANDS_GAME: true
  19. # Use ConsoleListener to allow you execute custom commands from the console.
  20. CUSTOM_COMMANDS_CONSOLE: true
  21. # Extra Listener, allows you to execute commands on some extra events, like death,join and someone else. Check playerevents.yml
  22. EXTRA_LISTENER: true
  23. # Enable this if you want use the /mycmd-itemset feature.
  24. ITEM_LISTENER: true
  25. # Active the move listener for cancel WARMUPs (only warm-up type command)
  26. MOVE_LISTENER: false
  27. # Turn this one on, to allow you use /mycmd-npcs feature.
  28. NPCS_LISTENER: false
  29. # This allow to use some place-holders for the bungee_cord proxy. Like reading the amount of players in a determinate server.
  30. PLUGIN_MESSAGE_LISTENER: false
  31. # The Sign listener allow the use of [MyCmd] signs.
  32. SIGN_LISTENER: true
  33. # The Vehicle listener it's used only for the DETECTOR_RAIL Material in block-set feature, and allows you to execute command when a player trigger the detector_rail.
  34. VEHICLE_LISTENER: false
  35. #Determinate how many $args can be typed in a command. (lower = faster)
  36. COMMANDS:
  37. MAX_ARGUMENTS: 9
  38. DEBUG:
  39. GAME: false
  40. CONSOLE: true
  41. DISABLE_PERMISSIONS: false
  42. USE_UUID_FOR_PLAYERDATA: true
  43. USE_NAME_INSTEAD_OF_ID_IN_THE_PERMISSION_NAME: true
  44. USE_THE_UPDATER: true
  45. SAVE_PENDING_COOLDOWNS: true
  46. USE_AT_SELECTORS_PLACEHOLDERS: true
  47. ECONOMY:
  48. ALLOW_DEBT: false
  49. SCHEDULER:
  50. ENABLED: false
  51. DATE_FORMAT: "d M yyyy"
  52. FIRST_CHECK_AFTER_SEC: 60
  53. LAUNCH_CHECK_ON_EVERY_N_MIN: 60
  54. SIGNS:
  55. HEADER: "[MYCMD]"
  56. DELAY_SEC: 5
  57. NPCS:
  58. DELAY_SEC: 3
  59. BLOCKS:
  60. DELAY_SEC: 5
  61. MATERIAL:
  62. RIGHT_CLICK_INTERACTION:
  63. - LEVER
  64. - STONE_BUTTON
  65. - OAK_BUTTON
  66. - OAK_DOOR
  67. PHYSICAL_INTERACTION:
  68. - STONE_PRESSURE_PLATE
  69. - OAK_PRESSURE_PLATE
  70. - DETECTOR_RAIL
  71. # MYSQL support for PlayerData's values only.
  72. MYSQL:
  73. USE: false
  74. HOST: 'localhost'
  75. PORT: '3306'
  76. USERNAME: 'username'
  77. PASSWORD: 'password'
  78. DATABASE: 'MyCommand'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement