mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
Add chat command cookbook
This commit is contained in:
parent
54e4c04464
commit
e3d5479e0c
3 changed files with 30 additions and 0 deletions
|
@ -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
28
Cookbook.md
Normal 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
|
||||
```
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue