teste
[gestor/gestor2.git] / init.lua
blobba1f35ceedb280140d83806a2df0646ce7e2b34c
1 --[[
2 Mod Gestor para Minetest
3 Gestor v1.0 Copyright (C) 2016 BrunoMine (https://github.com/BrunoMine)
5 Recebeste uma cópia da GNU Lesser General
6 Public License junto com esse software,
7 se não, veja em <http://www.gnu.org/licenses/>.
9 Inicializador de scripts
12 -- Notificador de Inicializador
13 local notificar = function(msg)
14 if minetest.setting_get("log_mods") then
15 minetest.debug("[GESTOR]"..msg)
16 end
17 end
19 local modpath = minetest.get_modpath("gestor")
21 -- Variavel global das funcionalidades
22 gestor = {}
24 -- Banco de Dados do gestor
25 gestor.bd = memor.montar_bd()
27 -- Carregar scripts
28 notificar("Carregando...")
29 dofile(modpath.."/diretrizes.lua")
30 dofile(modpath.."/estruturador.lua")
31 dofile(modpath.."/protetor.lua")
32 dofile(modpath.."/lugares_avulsos.lua")
33 dofile(modpath.."/menu_principal.lua")
34 dofile(modpath.."/comandos.lua")
35 dofile(modpath.."/anticrash.lua")
36 notificar("OK")