Advertisement
Cpjet64

gc config

Dec 14th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. #----------------------------------------------------------------------------------------------------
  2. # Configuration file for GCore
  3. #----------------------------------------------------------------------------------------------------
  4.  
  5. # Data management (affects only GCore)
  6. data:
  7. # Back end (JSON, MYSQL) (default JSON)
  8. # If you enable MySQL on another plugin requiring GCore, you should definitely enable it here as well
  9. backend: MYSQL
  10. # Synchronization delay (in seconds) (disabled with -1, by default)
  11. # If this is enabled, the plugin will check the stored data (json/mysql), and if there's new/different data, cached data will be overriden here
  12. sync_delay: -1
  13. # MySQL identifiers (if backend is MYSQL)
  14. mysql:
  15. host: 10.0.1.20:3306
  16. name: minecraft
  17. user: xxxxxxxxxx
  18. pass: xxxxxxxxxxxxxx
  19. args: '&useSSL=false' # This line is optional, you can add custom arguments if you want it
  20.  
  21. # Locale lang (affects all plugins)
  22. locale_lang: en_US
  23.  
  24. # Enable update notifications ? (affects all plugins)
  25. # Set this option to 'true' is recommended ! If you disable this, you'll not be able to get the latest updates/bug fixes notifications.
  26. update_check: true
  27.  
  28. # Show debug console messages (basically more information, you shouldn't disable it) (affects all plugins)
  29. show_debug: true
  30.  
  31. # Show data debug console messages (initialize/load/save/delete elements/boards, etc)
  32. # Will only appear if show_debug is true
  33. show_data_debug: true
  34.  
  35. # Allow custom materials to be loaded
  36. # If this is set to true, basically no check will be made for material validity when it comes to loading one, so make sure that you know what you're doing
  37. allow_custom_materials: true
  38.  
  39. # NPC update delay (in ticks)
  40. npc_update_delay: 2
  41.  
  42. # Cache parsed items
  43. # Set this option to false to re-parse every item when needed, instead of parsing them ; items with placeholders in their name/lore will NOT be cached no matter what
  44. cache_parsed_items: true
  45.  
  46. # Time zone (if not specified, the server host time zone will be used)
  47. # Format : 'GMTxAA:BB' where :
  48. # - x is + or -
  49. # - AA is the hour, between 00 and 23
  50. # - BB is the minute, between 00 and 59
  51. #time_zone: 'GMT+01:00' (GMT +1h)
  52.  
  53. # Force the plugin to behave for this specific server version (use this if GCore can't detect the server implementation you're using)
  54. #forced_version_compat: MC_1_7_10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement