tibia-client/modules/gamelib/util.lua

11 lines
191 B
Lua
Raw Normal View History

2014-06-02 00:05:26 +02:00
function postostring(pos)
return pos.x .. " " .. pos.y .. " " .. pos.z
end
function dirtostring(dir)
for k,v in pairs(Directions) do
if v == dir then
return k
end
end
end