Advertisement
khadree07

Untitled

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