Chat: started working on dialogue formspec.

Added smartfs for formspec functionality as library:
This commit is contained in:
zorman2000
2016-11-29 04:27:07 -05:00
parent 00e6531f91
commit f53abf7072
3 changed files with 1018 additions and 17 deletions

View File

@ -1,6 +1,9 @@
local path = minetest.get_modpath("advanced_npc")
-- Load SmartFS library by rubenwardy
dofile(path .. "lib/smartfs.lua")
-- Intllib
local S
if minetest.get_modpath("intllib") then
@ -24,7 +27,8 @@ end
mobs.intllib = S
-- NPC
dofile(path .. "/npc.lua") -- TenPlus1
dofile(path .. "/npc.lua")
dofile(path .. "/chat.lua")
--dofile(path .. "/trader.lua")
print (S("[MOD] Advanced NPC loaded"))