tibia-client/modules/core/util.lua

13 lines
241 B
Lua
Raw Normal View History

2011-08-20 22:30:41 +02:00
function print(...)
local msg = ""
for i,v in ipairs(arg) do
msg = msg .. tostring(v) .. "\t"
end
Logger.log(LogInfo, msg)
2011-08-21 03:01:46 +02:00
end
function createEnvironment()
local env = { }
setmetatable(env, { __index = _G} )
return env
2011-08-20 22:30:41 +02:00
end