Money Accounts

circle-info

Money accounts table can be found in server/editable/_config.lua

The Config.MoneyAccounts table defines the different currencies and payment methods available to players within the marketplace. Each entry in this list represents a valid account that can be used to process transactions.

Config.MoneyAccounts = { -- Money accounts used to buy items
    {value = "cosmo", label = "Cosmo"},
    {value = "bank", label = "Bank"},
}

Last updated