mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
11 lines
191 B
Lua
11 lines
191 B
Lua
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 |