Advertisement
khadree07

Untitled

Aug 27th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. LISTENERS:
  2. # Active this if you want use the /mycmd-blockset features.
  3. BLOCK_LISTENER: true
  4. # This allow you to execute commands from the ChatListener, Example, without the slash / prefix.
  5. CHAT_LISTENER: false
  6. # Turn this one on, to allow the execution of custom commands in-game. Basically the core of MyCommand
  7. CUSTOM_COMMANDS_GAME: true
  8. # Use ConsoleListener to allow you execute custom commands from the console.
  9. CUSTOM_COMMANDS_CONSOLE: true
  10. # Extra Listener, allows you to execute commands on some extra events, like death,join and someone else. Check playerevents.yml
  11. EXTRA_LISTENER: false
  12. # Enable this if you want use the /mycmd-itemset feature.
  13. ITEM_LISTENER: true
  14. # Active the move listener for cancel WARMUPs (only warm-up type command)
  15. MOVE_LISTENER: false
  16. # Turn this one on, to allow you use /mycmd-npcs feature.
  17. NPCS_LISTENER: false
  18. # This allow to use some place-holders for the bungee_cord proxy. Like reading the amount of players in a determinate server.
  19. PLUGIN_MESSAGE_LISTENER: false
  20. # The Sign listener allow the use of [MyCmd] signs.
  21. SIGN_LISTENER: true
  22. # 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.
  23. VEHICLE_LISTENER: false
  24. #Determinate how many $args can be typed in a command. (lower = faster)
  25. COMMANDS:
  26. MAX_ARGUMENTS: 9
  27. DEBUG:
  28. GAME: false
  29. CONSOLE: true
  30. DISABLE_PERMISSIONS: false
  31. USE_UUID_FOR_PLAYERDATA: true
  32. USE_NAME_INSTEAD_OF_ID_IN_THE_PERMISSION_NAME: true
  33. USE_THE_UPDATER: true
  34. SAVE_PENDING_COOLDOWNS: true
  35. USE_AT_SELECTORS_PLACEHOLDERS: true
  36. ECONOMY:
  37. ALLOW_DEBT: false
  38. SCHEDULER:
  39. ENABLED: false
  40. DATE_FORMAT: "d M yyyy"
  41. FIRST_CHECK_AFTER_SEC: 60
  42. LAUNCH_CHECK_ON_EVERY_N_MIN: 60
  43. SIGNS:
  44. HEADER: "SkyPvP"
  45. DELAY_SEC: 5
  46. NPCS:
  47. DELAY_SEC: 3
  48. BLOCKS:
  49. DELAY_SEC: 5
  50. MATERIAL:
  51. RIGHT_CLICK_INTERACTION:
  52. - LEVER
  53. - STONE_BUTTON
  54. - OAK_BUTTON
  55. - OAK_DOOR
  56. PHYSICAL_INTERACTION:
  57. - STONE_PRESSURE_PLATE
  58. - OAK_PRESSURE_PLATE
  59. - DETECTOR_RAIL
  60. # MYSQL support for PlayerData's values only.
  61. MYSQL:
  62. USE: false
  63. HOST: 'localhost'
  64. PORT: '3306'
  65. USERNAME: 'username'
  66. PASSWORD: 'password'
  67. DATABASE: 'MyCommand'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement