2016-04-01 20:02:19 -04:00
|
|
|
local modpath = minetest.get_modpath("currency")
|
|
|
|
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
-- internationalization boilerplate
|
|
|
|
local S, NS = dofile(modpath.."/intllib.lua")
|
|
|
|
|
|
|
|
minetest.log("info", S("Currency mod loading..."))
|
|
|
|
|
2016-04-01 20:02:19 -04:00
|
|
|
dofile(modpath.."/craftitems.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Craft_items Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
dofile(modpath.."/shop.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Shop Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
dofile(modpath.."/barter.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Barter Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
dofile(modpath.."/safe.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Safe Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
dofile(modpath.."/crafting.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Crafting Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
|
2017-06-17 19:34:42 -04:00
|
|
|
if minetest.settings:get_bool("creative_mode") then
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Creative mode in use, skipping basic income."))
|
2016-04-01 20:02:19 -04:00
|
|
|
else
|
|
|
|
dofile(modpath.."/income.lua")
|
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack
caverealms, coloredwood, concrete, currency, farming redo, home decor,
ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory
unified bricks, unified dyes, worldedit, and xban2
2017-06-16 18:12:21 -04:00
|
|
|
minetest.log("info", "[Currency] "..S("Income Loaded!"))
|
2016-04-01 20:02:19 -04:00
|
|
|
end
|