(Actual) Factions!

This commit is contained in:
Anthony Recascino
2016-07-29 23:02:22 -04:00
commit 220d0c4f26
5 changed files with 3059 additions and 0 deletions

29
init.lua Normal file
View File

@ -0,0 +1,29 @@
-------------------------------------------------------------------------------
-- factions Mod by Sapier
--
-- License WTFPL
--
--! @file init.lua
--! @brief factions mod to be used by other mods
--! @copyright Sapier
--! @author Sapier
--! @date 2013-05-08
--!
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
local factions_version = "0.1.6"
core.log("action", "MOD: factions (by sapier) loading ...")
--!path of mod
factions_modpath = minetest.get_modpath("factions")
dofile (factions_modpath .. "/factions.lua")
dofile (factions_modpath .. "/chatcommands.lua")
factions.load()
factions_chat.init()
core.log("action","MOD: factions (by sapier) " .. factions_version .. " loaded.")