diff --git a/Chat-Command-Reference.md b/Chat-Command-Reference.md index fd040d2..d762723 100644 --- a/Chat-Command-Reference.md +++ b/Chat-Command-Reference.md @@ -5,6 +5,7 @@ This is the full chat command reference for WorldEditAdditions. Having trouble f Other useful links: - [WorldEditAdditions quick reference](https://github.com/sbrl/Minetest-WorldEditAdditions#quick-command-reference) + - [WorldEditAdditions cookbook](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Cookbook.md) - [WorldEdit Chat Command Reference](https://github.com/Uberi/Minetest-WorldEdit/blob/master/ChatCommands.md) - [`we_env`](https://github.com/sfan5/we_env#readme) diff --git a/Cookbook.md b/Cookbook.md new file mode 100644 index 0000000..814d32b --- /dev/null +++ b/Cookbook.md @@ -0,0 +1,28 @@ +# 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. + +## 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 +``` diff --git a/README.md b/README.md index f4afb01..8d8bbe5 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ _(Do you have a cool build that you used WorldEditAdditions to build? [Get in to - [Quick Command Reference](#quick-command-reference) (including links to detailed explanations) - [Using the Far Wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#far-wand) - [Detailed Chat Command Explanations](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md) + - [Chat Command Cookbook](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Cookbook.md) - [Troubleshooting](#troubleshooting) - [Contributing](#contributing) - [WorldEditAdditions around the web](#worldeditadditions-around-the-web)