Go to file
luk3yx f9d5edf7fe Add a configurable income amount. 2019-07-25 14:25:54 +12:00
LICENSE.md Fork into money3 2019-05-23 16:47:11 +12:00
README.md Add a configurable income amount. 2019-07-25 14:25:54 +12:00
config.lua Add a configurable income amount. 2019-07-25 14:25:54 +12:00
convertval.lua Fork into money3 2019-05-23 16:47:11 +12:00
core.lua Allow money.add to add money to "frozen" users 2019-05-25 18:46:16 +12:00
depends.txt Fork into money3 2019-05-23 16:47:11 +12:00
income.lua Add a configurable income amount. 2019-07-25 14:25:54 +12:00
init.lua Fork into money3 2019-05-23 16:47:11 +12:00
lockedsign.lua first commit 2014-02-14 22:46:44 -06:00
mod.conf Fork into money3 2019-05-23 16:47:11 +12:00
settingtypes.txt Add a configurable income amount. 2019-07-25 14:25:54 +12:00

README.md

money3

This is a fork of money2 that uses more modern APIs such as mod storage and is fully backwards compatible with money2 (you can upgrade from money2 nicely, however you can't downgrade again).

Config settings

These can be set in config.lua or minetest.conf.

  • money3.initial_amount: The amount of money new players get. Default: 0.
  • money3.currency_name: The text appended to the currency when displaying it. Default: cr.
  • money3.enable_income: Pays players money (by default 10cr) every in-game day. Default: true if creative mode is disabled, otherwise false. If you are using the currency mod, it is probably a good idea to set currency.income_enabled to false. If you use an outdated version of the currency mod where this setting does not exist, the automatic income system is automatically disabled.
  • money3.income_amount: Changes the amount of income players get paid. If income is not enabled, this does nothing.
  • money3.convert_items: A lua table (that can also be nil to disable) similar to the following (default) one:
{
    gold = { item = "default:gold_ingot", dig_block="default:stone_with_gold",
        desc='Gold', amount=75, minval=25 },
    silver = { item = "moreores:silver_ingot",
        dig_block="moreores:mineral_silver", desc='Silver', amount = 27,
        minval=7}
}