# /gcreate - Create Worlds

# Create worlds

Creating worlds is one of the main functions of GWorld. The command is more powerful than it appears at first glance.

## The command in detail

`<span class="editor-theme-code">/gcreate <Name> [Environment] [Seed] [Generator]</span>`

### Parameters explained

1. **Name (required):**<span style="white-space: pre-wrap;"> The name of the world. This is also used as the folder name.</span>
    - **Allowed:**<span style="white-space: pre-wrap;"> Letters, numbers, underscores, hyphens.</span>
    - **Not allowed:**<span style="white-space: pre-wrap;"> spaces, special characters.</span>
2. **Environment (required):**<span style="white-space: pre-wrap;"> Determines whether it is an overworld, nether, or end. </span>
    - `<span class="editor-theme-code">NORMAL</span>`<span style="white-space: pre-wrap;"> (default world)</span>
    - `<span class="editor-theme-code">NETHER</span>`
    - `<span class="editor-theme-code">THE_END</span>`
3. **Seed (Optional):**<span style="white-space: pre-wrap;">The starting value for world generation. </span>
    - Omit the argument if there is no generator.
    - <span style="white-space: pre-wrap;">Example: </span>`<span class="editor-theme-code">TerraformGenerator</span>`<span style="white-space: pre-wrap;">, </span>`<span class="editor-theme-code">PlotSquared</span>`
    
    <p class="callout danger">To use a generator, you must have the corresponding plugin installed!</p>

---

## Examples

### 1. Standard Survival World

Simply create a normal world:

```bash
/gcreate MyWorld NORMAL
```

### 2. World with generator

Creating a world with a generator:

```bash
/gcreate MyWorld NORMAL TerraformGenerator
```

### 3. World with generator and seed

Create a world with a generator and seed:

```bash
/gcreate MyWorld NORMAL 12345678 TerraformGenerator
```