Add chat command cookbook

This commit is contained in:
Starbeamrainbowlabs 2020-09-21 00:16:46 +01:00
parent 54e4c04464
commit e3d5479e0c
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
3 changed files with 30 additions and 0 deletions

View file

@ -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)

28
Cookbook.md Normal file
View file

@ -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
```

View file

@ -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)