1
0
cuberite-2a/MCServer/Plugins/Core/onchunkgenerating.lua
nielsbreu@gmail.com 03e29802cd Updated core plugin.
Added limited world. Configurable through webadmin.
Added a Manage server page in webadmin where you can reload/restart/stop the server.
You can add players to groups with the webadmin. without the player have to relog first
You can change someone's group in-game with a command, without the player have to relog first
Hardcore mode
Improved death messages

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1306 0a769ca7-a7f5-676a-18bf-c427514a06d6
2013-03-24 15:44:44 +00:00

21 lines
768 B
Lua

function OnChunkGenerating(World, ChunkX, ChunkZ, ChunkDesc)
if LimitWorld == true then
SpawnX = math.floor(World:GetSpawnX() / 16)
SpawnZ = math.floor(World:GetSpawnZ() / 16)
if ( (SpawnX + LimitWorldWidth) < ChunkX ) or ( (SpawnX - LimitWorldWidth) > ChunkX ) then
FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
end
if ( (SpawnZ + LimitWorldWidth) < ChunkZ ) or ( (SpawnZ - LimitWorldWidth) > ChunkZ ) then
FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
end
end
end
function FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
ChunkDesc:FillBlocks(0,0)
ChunkDesc:SetUseDefaultBiomes(false)
ChunkDesc:SetUseDefaultHeight(false)
ChunkDesc:SetUseDefaultComposition(false)
ChunkDesc:SetUseDefaultStructures(false)
ChunkDesc:SetUseDefaultFinish(false)
end