mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-04-29 18:59:20 +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 |