4

Looking for a plugin

InterestBull 4/22/24 8:27 pm history
200
8/31/2024 12:08 pm
Is there any plugins that will work on a spigot 1.20.4 server that can automatically create a layer of bedrock at y 0 and remove everything below it? (It needs to automatically do it to every chunk loaded - not manually.)
Please ask for any other info.
Posted by
InterestBull
Level 1 : New Miner
0

  Have something to say?

JoinSign in

3

NenfDev
04/25/2024 12:14 am
Level 1 : New Server owner
Get a plugin called Skript, I usuallyndont recommend it but it sounds perfect for what you need! I'll provide a starting point below since there is a bit of a learning curve.
```
every 1 second:
loop all loaded chunks:
let {_world} be the world of loop-chunk
let {_chunk} be loop-chunk
loop blocks between locations (0, 0, 0, {_chunk}) and (15, 0, 15, {_chunk}):
set loop-block to bedrock
loop blocks between locations (0, -64, 0, {_chunk}) and (15, -1, 15, {_chunk}):
delete loop-block
```
1
Juuaannn
04/24/2024 7:30 pm
Level 38 : Artisan Sailor
Sounds like that would be a lot of work for one plugin. Have you considered making a world of that specification on world painter? Or even MCedit or amulet editor?
2
InterestBull
08/31/2024 12:08 pm
Level 1 : New Miner
sorry if it is really late, but how could I do this for Minecraft 1.21? I want to make a world that is fairly large (at least a total 10000 blocks wide). How could I do this?
1

Welcome