mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
13 lines
241 B
Lua
13 lines
241 B
Lua
function print(...)
|
|
local msg = ""
|
|
for i,v in ipairs(arg) do
|
|
msg = msg .. tostring(v) .. "\t"
|
|
end
|
|
Logger.log(LogInfo, msg)
|
|
end
|
|
|
|
function createEnvironment()
|
|
local env = { }
|
|
setmetatable(env, { __index = _G} )
|
|
return env
|
|
end |