Advertisement
Oliinyk

Untitled

Nov 17th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. #Default Online Offline SemiOnline
  2. #Default mode will automatically detect the player's UUID(support GeyserMC)
  3. #Online mode is better for servers that enable online-mode(support Yggdrasil)
  4. #Offline mode does not support ignoring username case
  5. #If you use floodgate(GeyserMC) and the option 'username-prefix' is set to empty, Please use SemiOnline mode
  6. UUID-mode: SemiOnline
  7. #In convertion mode, can use command '/xconomy' import data from other plugins based on Vault
  8. #Conflicting data will be skipped, The imported data will be saved in XConomy/importdata/data.yml
  9. #In this mode, XConomy will not start normally
  10. #After the conversion, please check data and turn off this mode
  11. #Sponge version does not have this function
  12. Importdata-mode: false
  13.  
  14.  
  15. #Settings
  16. Settings:
  17. #Chinese ChineseTW English French Spanish Russian Turkish Japanese German
  18. #Indonesia Portuguese Italian
  19. language: English
  20. #Whether to check for new version
  21. check-update: true
  22. #TOP10 and the Server Total refresh time interval (Seconds)
  23. refresh-time: 60
  24. #If set to true, XConomy will register the following commands:
  25. # - economy
  26. # - eco
  27. # - ebalancetop
  28. # - ebaltop
  29. # - eeconomy
  30. #Please keep in mind that if Essentials is installed on your server
  31. #XConomy will take over these commands.
  32. eco-command: true
  33. #XConomy will disable the economic function of Essentials.
  34. #Just the economic function.
  35. disable-essentials: true
  36. #Initial balance
  37. initial-bal: 0
  38. #Tax to be paid for pay command (0.5 means 50%, 1 means 100%)
  39. payment-tax: 0
  40. #Ranking size (Max value 100)
  41. ranking-size: 0
  42. #Rows per page of list (Ranking and help menu)
  43. lines-per-page: 5
  44. #If you need to modify the data in the database directly, it is recommended to enable it
  45. #Asynchronous saving of data is not supported after caching is disabled
  46. #Disabling caching will increase the pressure on the database
  47. disable-cache: false
  48. #Dose save transaction record
  49. #Only MySQL is supported
  50. transaction-record: true
  51. #Record transaction information of pay command while player offline.
  52. #The player will receive tips when they reconnect.
  53. #Transaction-record function must be enabled.
  54. offline-pay-transfer-tips: false
  55. #Ignore the case of player names
  56. username-ignore-case: false
  57.  
  58.  
  59. #It can solve the problem that some plugins need to create non-player accounts, such as Factions
  60. #==========================================================================================
  61. #Plugins supported by default (no requirement to enable non-player-account)
  62. #Towny
  63. #==========================================================================================
  64. #Non-player account data is not synced with BC
  65. non-player-account:
  66. #Whether to enable non-player accounts.
  67. enable: false
  68. #If the account name contains fields in the whitelist, it will be recognized as non-player accounts.
  69. #Otherwise, it is recognized as a player account
  70. #If the player's name contains fields in the whitelist, it will be denied access to the server.
  71. #This function can reduce the times that reading data from the database.
  72. whitelist:
  73. #Whether to enable whitelist.
  74. enable: false
  75. fields-list:
  76. - tax
  77. - nation-
  78.  
  79.  
  80. #The display of the currency
  81. Currency:
  82. # ₴
  83. singular-name: '₴'
  84. plural-name: '₴'
  85. #Is the balance an integer
  86. integer-bal: true
  87. thousands-separator: ' '
  88. #%format_balance% indicate the balance after the format
  89. # display-format: '%balance% %currencyname%'
  90. display-format: '%balance%'
  91. #Maximum amount (default is maximum)
  92. max-number: '10000000000000000'
  93. format-balance:
  94. 1000: k
  95. 1000000: m
  96.  
  97.  
  98.  
  99. #SyncData settings
  100. SyncData:
  101. #Whether to enable data synchronization between multiple servers
  102. enable: false
  103. #BungeeCord Redis
  104. #================================================== BungeeCord Channel ==================================================
  105. #After BungeeCord sync is turned on, the console and other plugins will not be able to modify the balance in the server without player
  106. #Please Set bungeecord to true in the spigot.yml
  107. #================================================== Redis Channel ==================================================
  108. #Require 'slf4j' dependencies
  109. channel-type: BungeeCord
  110. #Server ID, keep the ID and the MySQL settings is the same between the servers requiring synchronization
  111. sign: aa
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement