minertrade/init.lua

26 lines
929 B
Lua
Raw Normal View History

2022-05-12 11:32:28 -03:00
modMinerTrade = {
modName = minetest.get_current_modname(),
modPath = minetest.get_modpath(minetest.get_current_modname()),
}
2017-03-13 18:26:38 -03:00
2022-05-12 11:32:28 -03:00
dofile(modMinerTrade.modPath.."/config.lua") -- <== Antes de carregar tudo!
dofile(modMinerTrade.modPath.."/translate.lua") -- <== Antes de 'api.lua'!
dofile(modMinerTrade.modPath.."/api.lua")
dofile(modMinerTrade.modPath.."/item_exchange_table.lua")
dofile(modMinerTrade.modPath.."/item_dispensing_machine.lua")
2017-03-13 18:26:38 -03:00
2022-05-12 11:32:28 -03:00
--dofile(modMinerTrade.modPath.."/item_atm.lua")
--dofile(modMinerTrade.modPath.."/item_strongbox.lua")
--dofile(modMinerTrade.modPath.."/item_strongbox_old.lua")
--dofile(modMinerTrade.modPath.."/item_miner_cash.lua")
2017-03-13 18:26:38 -03:00
-- --dofile(path.."/item_rent_door.lua")
2022-05-12 11:32:28 -03:00
--dofile(modMinerTrade.modPath.."/payday.lua")
--dofile(modMinerTrade.modPath.."/commands.lua")
if modMinerTrade.doAtmLoad ~= nil then
modMinerTrade.doAtmLoad()
end
2017-03-13 18:26:38 -03:00
2017-03-15 16:02:43 -03:00
minetest.log('action',"["..modname:upper().."] Loaded!")