Advertisement
GeradesoLukas

Untitled

Feb 26th, 2022
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1.  
  2. #Server Config Settings
  3. [server]
  4. #Determines whether or not coins should be craftable via the Coin Minting Machine.
  5. canMintCoins = false
  6. #Determines whether or not coins can be melted back into their source material in the Coin Minting Machine.
  7. canMeltCoins = false
  8.  
  9. #Specific Coin Minting Settings.
  10. [server.coin_minting]
  11. #Whether copper coins can be minted.
  12. canMintCopper = true
  13. #Whether iron coins can be minted.
  14. canMintIron = true
  15. #Whether gold coins can be minted.
  16. canMintGold = true
  17. #Whether emerald coins can be minted.
  18. canMintEmerald = true
  19. #Whether diamond coins can be minted.
  20. canMintDiamond = true
  21. #Whether netherite coins can be minted.
  22. canMintNetherite = true
  23.  
  24. #Specific Coin Melting Settings.
  25. [server.coin_melting]
  26. #Whether copper coins can be melted.
  27. canMeltCopper = true
  28. #Whether iron coins can be melted.
  29. canMeltIron = true
  30. #Whether gold coins can be melted.
  31. canMeltGold = true
  32. #Whether emerald coins can be melted.
  33. canMeltEmerald = true
  34. #Whether diamond coins can be melted.
  35. canMeltDiamond = true
  36. #Whether netherite coins can be melted.
  37. canMeltNetherite = true
  38.  
  39. #Wallet Settings.
  40. [server.wallet]
  41. #The lowest level wallet capable of converting coins in the UI.
  42. #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
  43. #Must be less than or equal to 'pickupLevel'.
  44. #Range: 0 ~ 5
  45. convertLevel = 1
  46. #The lowest level wallet capable of automatically collecting coins while equipped.
  47. #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
  48. #Range: 0 ~ 5
  49. pickupLevel = 2
  50. #The lowest level wallet capable of allowing transfers to/from your bank account.
  51. #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
  52. #Range: 0 ~ 5
  53. bankLevel = 5
  54.  
  55. #Coin value display setting.
  56. [common.coin_value_display]
  57. #Tooltip type displayed on coin items.
  58. #DEFAULT: Conversion tooltips, explaining it's value based on the coins it can be converted to/from.
  59. #VALUE: Coins numerical display value as defined by the coinValueType option below. Not recommend if using the DEFAULT coinValueType.
  60. #Allowed Values: DEFAULT, VALUE, NONE
  61. coinTooltipType = "VALUE"
  62. #Value display method used throughout the mod.
  63. #DEFAULT: Coin Count & Icon aglomerate (1n5g for 1 netherite and 5 gold)
  64. #VALUE: Coin numerical display value as defined by the baseValueCoin and valueFormat config options below.
  65. #Allowed Values: DEFAULT, VALUE
  66. coinValueType = "VALUE"
  67. #Input method used for the Coin Value Input.
  68. #DEFAULT: Default coin input with up/down buttons for each coin type.
  69. #VALUE: Text box input for the coins display value.
  70. #Allowed Values: DEFAULT, VALUE
  71. coinValueInputType = "VALUE"
  72. #Coin item defined as 1 value unit for display purposes. Any coins worth less than the base coin will have a decimal value.
  73. baseValueCoin = "lightmanscurrency:coin_gold"
  74. #Value display format. Used to add currency signs to coin value displays.
  75. #{value} will be replaced with the coins numerical value. Only 1 should be present at any given time.
  76. valueFormat = "{value}\uEAD1"
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement