08-19-2016, 04:20 AM
Suppose the chunk is 70, 40. Let's apply the formula:
r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca
"ChunkX / 32" is 70 / 32, which is 2.1875
"ChunkZ / 32" is 40 / 32, which is 1.25
Flooring simply means "remove the fractions", so 2.1875 becomes 2, and 1.25 becomes 1.
Therefore, the file name is:
r.2.1.mca
In other words:
r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca
"ChunkX / 32" is 70 / 32, which is 2.1875
"ChunkZ / 32" is 40 / 32, which is 1.25
Flooring simply means "remove the fractions", so 2.1875 becomes 2, and 1.25 becomes 1.
Therefore, the file name is:
r.2.1.mca
In other words:
Code:
r.<floor(ChunkX / 32)>.<floor(ChunkZ / 32)>.mca =
r.<floor(70 / 32)>.<floor(40 / 32)>.mca =
r.<floor(2.1875)>.<floor(1.25)>.mca =
r.2.1.mca