Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Server Config Settings
- [server]
- #Determines whether or not coins should be craftable via the Coin Minting Machine.
- canMintCoins = false
- #Determines whether or not coins can be melted back into their source material in the Coin Minting Machine.
- canMeltCoins = false
- #Specific Coin Minting Settings.
- [server.coin_minting]
- #Whether copper coins can be minted.
- canMintCopper = true
- #Whether iron coins can be minted.
- canMintIron = true
- #Whether gold coins can be minted.
- canMintGold = true
- #Whether emerald coins can be minted.
- canMintEmerald = true
- #Whether diamond coins can be minted.
- canMintDiamond = true
- #Whether netherite coins can be minted.
- canMintNetherite = true
- #Specific Coin Melting Settings.
- [server.coin_melting]
- #Whether copper coins can be melted.
- canMeltCopper = true
- #Whether iron coins can be melted.
- canMeltIron = true
- #Whether gold coins can be melted.
- canMeltGold = true
- #Whether emerald coins can be melted.
- canMeltEmerald = true
- #Whether diamond coins can be melted.
- canMeltDiamond = true
- #Whether netherite coins can be melted.
- canMeltNetherite = true
- #Wallet Settings.
- [server.wallet]
- #The lowest level wallet capable of converting coins in the UI.
- #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
- #Must be less than or equal to 'pickupLevel'.
- #Range: 0 ~ 5
- convertLevel = 1
- #The lowest level wallet capable of automatically collecting coins while equipped.
- #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
- #Range: 0 ~ 5
- pickupLevel = 2
- #The lowest level wallet capable of allowing transfers to/from your bank account.
- #0-Copper Wallet; 1-Iron Wallet; 2-Gold Wallet; 3-Emerald Wallet; 4-Diamond Wallet; 5-Netherite Wallet
- #Range: 0 ~ 5
- bankLevel = 5
- #Coin value display setting.
- [common.coin_value_display]
- #Tooltip type displayed on coin items.
- #DEFAULT: Conversion tooltips, explaining it's value based on the coins it can be converted to/from.
- #VALUE: Coins numerical display value as defined by the coinValueType option below. Not recommend if using the DEFAULT coinValueType.
- #Allowed Values: DEFAULT, VALUE, NONE
- coinTooltipType = "VALUE"
- #Value display method used throughout the mod.
- #DEFAULT: Coin Count & Icon aglomerate (1n5g for 1 netherite and 5 gold)
- #VALUE: Coin numerical display value as defined by the baseValueCoin and valueFormat config options below.
- #Allowed Values: DEFAULT, VALUE
- coinValueType = "VALUE"
- #Input method used for the Coin Value Input.
- #DEFAULT: Default coin input with up/down buttons for each coin type.
- #VALUE: Text box input for the coins display value.
- #Allowed Values: DEFAULT, VALUE
- coinValueInputType = "VALUE"
- #Coin item defined as 1 value unit for display purposes. Any coins worth less than the base coin will have a decimal value.
- baseValueCoin = "lightmanscurrency:coin_gold"
- #Value display format. Used to add currency signs to coin value displays.
- #{value} will be replaced with the coins numerical value. Only 1 should be present at any given time.
- valueFormat = "{value}\uEAD1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement