@@ -4,22 +4,23 @@ description: How to use the world create command.
44---
55
66You can create new worlds with the ` /world create <key> ` command.
7- There are three options ` generator ` , ` type ` , and ` preset ` .
7+ There are three options ` generator ` , ` type ` , and ` preset ` .
8+ If you don't specify any of these options, the default world settings will be used.
89
9- <Callout type = " info" title = " Frequesntly asked questions" >
10+ <Callout type = " info" title = " Frequently asked questions" >
1011 [ What does \< key\> stand for, in command arguments?] ( /docs/worlds/faq#key-argument )
1112 [ Why keys instead of world names?] ( /docs/worlds/faq#why-keys )
1213</Callout >
1314
14- ## Dimensions
15+ ### Example [ !toc ]
1516
16- There are following dimensions types :
17+ Creating a new world with the default settings :
1718
18- - ` minecraft:overworld ` - [ The primary dimension. ] ( https://minecraft.wiki/w/Overworld )
19- - ` minecraft:the_nether ` - [ The Nether dimension. ] ( https://minecraft.wiki/w/The_Nether )
20- - ` minecraft:the_end ` - [ The End dimension. ] ( https://minecraft.wiki/w/The_End )
19+ ```
20+ /world create my_new_world
21+ ```
2122
22- ## Generator
23+ ## Using a world generator plugin
2324
2425To generate a new world using a custom generator, use the command
2526` /world create <key> generator <generator> [<dimension>] [<structures>] [<seed>] `
@@ -33,7 +34,7 @@ PlotSquared generation example:
3334/world create city:plots generator PlotSquared
3435```
3536
36- ## Type
37+ ## Defining the world type
3738
3839To generate a new world using a predefined world type, use the command
3940` /world create <key> type <type> [<dimension>] [<structures>] [<seed>] `
@@ -56,7 +57,7 @@ Amplified world example:
5657/world create amplified_test_world type minecraft:amplified
5758```
5859
59- ## Preset
60+ ## Using a flat world preset
6061
6162To generate a new world using an existing preset, use the command
6263` /world create <key> preset <preset> [<dimension>] [<structures>] [<seed>] `
@@ -74,3 +75,26 @@ Void world example:
7475```
7576/world create my_void_world preset the-void
7677```
78+
79+ ## Available Dimensions
80+
81+ There are following dimensions types:
82+
83+ - ` minecraft:overworld ` - [ The primary dimension.] ( https://minecraft.wiki/w/Overworld )
84+ - ` minecraft:the_nether ` - [ The Nether dimension.] ( https://minecraft.wiki/w/The_Nether )
85+ - ` minecraft:the_end ` - [ The End dimension.] ( https://minecraft.wiki/w/The_End )
86+
87+ ## Additional options
88+
89+ All of the above commands also support the following additional options:
90+
91+ - ` [<structures>] ` - Controls whether structures generate in the world. Defaults to ` true ` .
92+ - ` [<seed>] ` - Sets the world seed. If not provided, a random seed will be used.
93+
94+ ### Example [ !toc]
95+
96+ Creating a normal world with structures disabled and a specific seed:
97+
98+ ```
99+ /world create no_structures_set_seed type minecraft:noise false 123456789
100+ ```
0 commit comments