mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-05 06:53:52 +01:00
1.3 KiB
1.3 KiB
WorldEditAdditions Cookbook
This file contains a number of useful commands that WorldEditAdditions users have discovered and found useful. They do not necessarily have to contain WorldEditAdditions commands - pure WorldEdit commands are fine too.
See also:
- Quick Command Reference
- WorldEditAdditions Detailed Chat Command Explanations
- WorldEdit Chat Command Reference
Fix lighting
//multi //1 //2 //outset 50 //fixlight //y
As a brush:
//brush cubeapply 50 fixlight
Terrain editing
The following brushes together can make large-scale terrain sculpting easy:
//brush cubeapply 25 set stone
//brush ellipsoid 11 9 11 stone
//brush sphere 5 stone
//brush cubeapply 50 fillcaves stone
//brush cubeapply 30 50 30 conv
//brush cubeapply 50 conv
//brush sphere 5 air
//brush cubeapply 50 fixlight
//brush cubeapply 50 layers dirt_with_grass dirt 3 stone 10
En-mass Foliage clearing
Clearing large amounts of foliage is easy!
//many 25 //multi //clearcut //y //shift x 10
Adjust the numbers (and direction in the //shift
command) to match your scenario.