Advertisement
Guest User

Untitled

a guest
Mar 6th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.12 KB | None | 0 0
  1. # default config.yml for MysqlPlayerDataBridge
  2. # config version 3.21.0
  3.  
  4. #MySQL Database details
  5. database:
  6. mysql:
  7. #MySQL server address
  8. host: 127.0.0.1
  9. #MySQL server port (default 3306)
  10. port: 3306
  11. #Database name (NOTE! You need to create the database, then the plugin will create the tables.)
  12. databaseName: ''
  13. #Tables names (the plugin will auto create them)
  14. TablesNames:
  15. #Inventory and Armor table name.
  16. inventoryTableName: 'mpdb_inventory'
  17. #Enderchest table name.
  18. enderchestTableName: 'mpdb_enderchest'
  19. #Experience table name.
  20. experienceTableName: 'mpdb_experience'
  21. #PotionEffects table name.
  22. potionEffectsTableName: 'mpdb_potionEffects'
  23. #Health, food and air table name.
  24. healthFoodAirTableName: 'mpdb_health_food_air'
  25. #Location table name.
  26. locationTableName: 'mpdb_location'
  27. #Economy table name.
  28. economyTableName: 'mpdb_economy'
  29. #User name
  30. user: ''
  31. #User password
  32. password: ''
  33. #SSL connection
  34. sslEnabled: false
  35. #This maintenance task runs async with a 2 min delay after the server starts.
  36. removeOldAccounts:
  37. #Enable or disable database clean up of old accounts. | (true or false)
  38. enabled: false
  39. #Inactivity in days. Default 60 days.
  40. inactivity: 60
  41.  
  42.  
  43. #Other configurable options
  44. General:
  45. #Enable or disable sharing of player data features
  46. enableModules:
  47. #Share players inventory | (true or false)
  48. shareInventory: true
  49. #Share players gamemode | (true or false)
  50. shareGamemode: false
  51. #Share players equipped armor | (true or false)
  52. shareArmor: false
  53. #Share players enderchest | (true or false)
  54. shareEnderchest: true
  55. #Share experience | (true or false)
  56. shareExperience: false
  57. #Share potion effects | (true or false)
  58. sharePotionEffects: false
  59. #Share players health level | (true or false)
  60. shareHealth: false
  61. #Share players food and saturation level | (true or false)
  62. shareFood: false
  63. #Share players air level | (true or false)
  64. shareAir: false
  65. #Share players location | (true or false)
  66. #NOTE! Sharing bed spawn location requires share location enabled!
  67. shareLocation: false
  68. shareBedSpawn: false
  69. #Share players economy accounts | (true or false)
  70. #!!! NOTE !!!! For economy sync you need to install Vault and an Economy system.
  71. shareEconomy: false
  72. #Extra economy sync options. Note that this requires the economy sync to be enabled.
  73. economyOptions:
  74. #Enable support for ChestShop offline money sync. | (true or false)
  75. #NOTE! A server restart is required if you change settings here.
  76. #Only available for UUID compatible servers. (1.7.10 and up)
  77. #------------------------------------------------------------------
  78. #Enable support for the popular ChestShop plugin: https://dev.bukkit.org/projects/chestshop
  79. ChestShop-Support: false
  80. #Enable support for QuickShop plugin: https://dev.bukkit.org/bukkit-plugins/quickshop-notlikeme/
  81. #Because the QuickShop API does not provide info about the tax I had to code it in this plugin too, this setting should be the same as in QuickShop config.
  82. #To disable the tax set it to: QuickShop-SalesTax: 0.00
  83. QuickShop-Support: false
  84. QuickShop-SalesTax: 0.05
  85. #Enable support for premium plugin Shop: https://www.spigotmc.org/resources/shop-a-simple-intuitive-shop-plugin.9628/
  86. #Important! Only works for virtual currency. The Shop plugin needs players data files to work do not remove the world/playerdata folder.
  87. Shop-Support: false
  88. #Enable support for plugin AuctionHouse: https://www.spigotmc.org/resources/auction-house-1-7-1-11.6050/
  89. AuctionHouse-Support: false
  90. #Enable support for plugin ShopChest: https://www.spigotmc.org/resources/shopchest.11431/
  91. ShopChest-Support: false
  92. #Enable support for plugin ShopChestPlayerShopGUI+: https://www.spigotmc.org/resources/playershopgui.37707/
  93. PlayerShopGUI-Support: false
  94. #Enable support for Essentials Economy commands for offline players.
  95. #Will handle eco commands: /eco take|give|set|reset for offline players that are in the database.
  96. EssentialsEconomyCommands-Support: false
  97. #Save online players data task. If you disable this task data will only be saved when the player disconnects.
  98. saveDataTask:
  99. #Enable or disable the data save task. | (true or false)
  100. enabled: true
  101. #Time between data saves in minutes. | Default 3 min.
  102. interval: 3
  103. #Hide the data save task log messages.
  104. hideLogMessages: false
  105. #Disable sounds generated by this plugin. The sync confirmation sound for example. | (true or false)
  106. disableSounds: true
  107. #This will disable inventory, armor and enderchest sync for players in creative mode. | (true or false)
  108. #Can be useful in certain cases where you have 2 survival servers and give cretive access to some in one survival server and don't want them to get the creative items on the other servers. Note that you will require another plugin to create a separate inventory for creative mode.
  109. disableCreativeItemShare: false
  110. #Kick players when sync fails.
  111. kickOnFailedSync: false
  112. #Extra options for location sync.
  113. locationSyncOptions:
  114. #Players need to be online some time in order to update their location.
  115. #In seconds. Set to 0 to disable. (Default 0 seconds)
  116. onlineTimeToSaveLocation: 0
  117.  
  118.  
  119. #This feature allows you to delete folders or files when the server shuts down or restarts.
  120. #For example: Players data and stats folder, or other plugins that store data as file based and are not needed.
  121. #As in time the server will store many players data there is a need to clean up unneeded files.
  122. DataCleanup:
  123. #Enable or disabled data clean up | true or false
  124. Enabled: false
  125. #This can include folders or files. The root directory is the server main folder. (Tested on Linux)
  126. #NOTE!!! Some plugins need the world/playerdata files for offline players else they will have problems.
  127. CleanUp-Paths:
  128. - 'world/playerdata'
  129. - 'world/stats'
  130.  
  131.  
  132. #Debug console messages.
  133. Debug:
  134. #Economy sync debug messages.
  135. EconomySync: false
  136. #Inventory sync debug messages.
  137. InventorySync: false
  138.  
  139.  
  140. #Chat messages, supports color and format codes. To disable a chat message set it to '' Example: loginSyncConfirmation: ''
  141. #Minecraft Color and Format Codes: http://minecraft.gamepedia.com/Formatting_codes
  142. ChatMessage:
  143. #This message will be sent to players after data sync is complete.
  144. loginSyncConfirmation: '&6[&bMarsland&6]&a Din spiller-data er loadet korrekt ind!'
  145. loginSyncStarted: '&6[&bMarsland&6]&a Loader din spiller-data...'
  146. loginSyncFailed: '&6[&4FEJL&6] &cVi kunne ikke loade din spiller-data! &eKontakt os på &bwww.freakyville.net/forum'
  147. noPermission: '&6[&bMarsland&6]&a &eYou do not have permission.'
  148. configReload: '&6[&bMarsland&6]&a &eConfig reload complete! Check the server log or console for details.'
  149. importingData: '&6[&bMarsland&6]&a &eImporting players data to the database... Check server console for details.'
  150. importingDataComplete: '&6[&bMarsland&6]&a &eData import complete!'
  151. inventorySyncError: '&6[&4FEJL&6] &cVi kunne ikke loade din spiller-data! &eKontakt os på &bwww.freakyville.net/forum'
  152. inventorySyncBackup: '&6[&c&lFEJL-INFO!&6] &aVi genskabte din inventory - Fjern ALT fra din inventory og relog venligst, for ikke at tabe items!'
  153. armorSyncError: '&6[&4FEJL&6]&c Vi kunne ikke loade din armor-data! &eKontakt os på &bwww.freakyville.net/forum'
  154. armorSyncBackup: '&6[&c&lFEJL-INFO!&6] &aVi genskabte din inventory - Fjern ALT fra din inventory og relog venligst, for ikke at tabe items!'
  155. #The place holder %money% will be replaced by the amount of money the player will receive.
  156. offlineMoneyReceived: '&6[&bMarsland&6]&a &eYou received&6 %money% &emoney from your shop sales.'
  157. syncInProgress: '&6[&bMarsland&6]&a Vi synkroniserer data... Vent venligst...'
  158. reloadCmdBlocked: '&6[&bMarsland&6]&a &cReload kommandoen er blokeret!'
  159. #Other messages
  160. Commands:
  161. inventoryUsage: '&cUsage: &6/mpdb inv <name>'
  162. inventoryInfo: '&cInfo: &7Open a player inventory. Replace <name> with the player name.'
  163. armorUsage: '&cUsage: &6/mpdb armor <name>'
  164. armorInfo: '&cInfo: &7Edit a player armor. Replace <name> with the player name.'
  165. enderchestUsage: '&cUsage: &6/mpdb end <name>'
  166. enderchestInfo: '&cInfo: &7Edit a player enderchest. Replace <name> with the player name.'
  167. ecoBalUsage: '&cUsage: &6/mpdb ecoBal <name>'
  168. ecoBalInfo: '&cInfo: &7Check a player balance. Replace <name> with the player name.'
  169. ecoSetUsage: '&cUsage: &6/mpdb ecoSet <name> <amount>'
  170. ecoSetInfo: '&cInfo: &7Change a player balance. Replace <name> with the player name and <amount> with new balance.'
  171. ecoSetTip: '&6[&bMarsland&6]&a &eReplace <amount> with a number!'
  172. deleteUsage: '&cUsage: &6/mpdb delete <name>'
  173. deleteInfo: '&cInfo: &7Delete a player from the database. Replace <name> with the player name.'
  174. cmdNotFound: '&cCommand not found! For help do: &6/mpdb help'
  175. playerNotFound: '&6[&bMarsland&6]&a &ePlayer not found!'
  176. #The place holder %playerName% will get replaced by the player name.
  177. inventoryOpen: '&6[&bMarsland&6]&a&c %playerName% &einventory.'
  178. armorOpen: '&6[&bMarsland&6]&a&c %playerName% &earmor.'
  179. enderchestOpen: '&6[&bMarsland&6]&a&c %playerName% &eenderchest.'
  180. deleteData: '&6[&bMarsland&6]&a&c %playerName% &edata deleted!'
  181. #The place holder %balance% will be replaced by the player balance.
  182. ecoSet: '&6[&bMarsland&6]&a&c %playerName% &ebalance set! New balance: %balance%'
  183. ecoBalance: '&6[&bMarsland&6]&a&c %playerName% &ebalance: %balance%'
  184. #Essentials eco commands messages.
  185. userNotInDB: '&6[&bMarsland&6]&a &cCould not find user in database!'
  186. userOnline: '&6[&bMarsland&6]&a &cPlayer is online on another server in sync!'
  187. essentialsEcoReset: '&6[&bMarsland&6]&a &aUser balance reset complete!'
  188. essentialsEcoGive: '&6[&bMarsland&6]&a &aAdded money successfully!'
  189. essentialsEcoTake: '&6[&bMarsland&6]&a &aRemoved money successfully!'
  190. essentialsEcoSet: '&6[&bMarsland&6]&a &aBalance set successfully!'
  191. essentialsEcoBal: '&6[&bMarsland&6]&a &aBalance for %name% is: %balance%'
  192.  
  193.  
  194. #Minecraft Color and Format Codes: http://minecraft.gamepedia.com/Formatting_codes
  195. KickMessages:
  196. saveAndKickCommand: '&cServeren genstarter - Rejoin om 2 minutter!'
  197. syncFailedKick: '&6[&4FEJL&6] &cVi kunne ikke loade din spiller-data! &eKontakt os på &bwww.freakyville.net/forum'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement