local a = include("autolua.lua") ART = {} a.AddLuaSHFolder("shared",true) a.AddLuaCSFolder("client",true) a.AddLuaSVFolder("server",false) GM.Name = "Artery" GM.Author = "Alexander \"Apickx\" Pickering" GM.Email = "apickx@cogarr.org" GM.Website = "cogarr.net" --Some global functions that are helpful function printf(fmt, ...) print(string.format(fmt,...)) end --Add a thing to report errors to a master server --TODO:Set up a master server to collect errors for correction local olderr = error function error(str) print("I got an error!") olderr(str) end