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 |