Create air world - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html) +--- Forum: Discussion (https://forum.cuberite.org/forum-5.html) +--- Thread: Create air world (/thread-2329.html) |
Create air world - DrMasik - 01-22-2016 Is it possible to create clean air world? RE: Create air world - NiLSPACE - 01-22-2016 If you're willing to create a plugin for it you can just use this: function OnChunkGenerating(a_World, a_ChunkX, a_ChunkZ, a_ChunkDesc) a_ChunkDesc:SetUseDefaultBiomes(false) a_ChunkDesc:SetUseDefaultComposition(false) a_ChunkDesc:SetUseDefaultFinish(false) a_ChunkDesc:SetUseDefaultHeight(false) end Otherwise the only possible thing I can think of it setting the ShapeGenerator to heightgen, the heightgen to Flat and the Flatheight to 0 or -1. RE: Create air world - DrMasik - 01-22-2016 Thank you. I'll test and answer. RE: Create air world - Schwertspize - 01-23-2016 Btw there is a plugin for that, called VoidGenerator |