Commands Dimension - MarkusBordihn/BOs-World-Dimension-Nexus GitHub Wiki
This page explains all commands for creating and managing worlds (dimensions) in World Dimension Nexus. The guide is written for everyone, including young players and people new to Minecraft servers.
- Level 2 (Moderator) 🛡️: See and get info about worlds
- Level 3 (Gamemaster) ⚔️: Create and change worlds
- Level 4 (Admin/Owner) 👑: Remove, import, and export worlds
/wdn dimension list
What it does:
- Shows all available worlds on the server
/wdn dimension info <dimension_name>
What it does:
- Shows details about a specific world
Examples:
# Get information about the lobby dimension
/wdn dimension info world_dimension_nexus:lobby_dimension
# Get information about the creative dimension
/wdn dimension info world_dimension_nexus:creative_dimension
/wdn dimension create <name>
/wdn dimension create <name> <type>
/wdn dimension create <name> <type> <gametype>
Parameters:
-
<name>
: Unique name (lowercase, numbers, underscore, hyphen) -
<type>
: World type (void
,flat
,normal
,skyblock
) -
<gametype>
: Game mode (survival
,creative
,adventure
,spectator
)
Examples:
# Create a creative dimension with void generation and creative mode
/wdn dimension create creative_dimension void creative
# Create a survival dimension with normal terrain and survival mode
/wdn dimension create survival_dimension normal survival
# Create a minigames dimension with flat terrain and adventure mode
/wdn dimension create minigames_dimension flat adventure
# Create a skyblock dimension with skyblock generation and survival mode
/wdn dimension create skyblock_dimension skyblock survival
/wdn dimension set spawnpoint <dimension_name> <x> <y> <z>
What it does:
- Sets where players appear in the world
Examples:
# Set the spawn point for the lobby dimension
/wdn dimension set spawnpoint world_dimension_nexus:lobby_dimension 0 65 0
# Set the spawn point for the creative dimension
/wdn dimension set spawnpoint world_dimension_nexus:creative_dimension 100 64 200
# Set the spawn point for the survival dimension
/wdn dimension set spawnpoint world_dimension_nexus:survival_dimension -50 70 150
/wdn dimension set gametype <dimension_name> <gametype>
What it does:
- Changes the default game mode for a world
Examples:
# Set the default game mode for the creative dimension
/wdn dimension set gametype world_dimension_nexus:creative_dimension creative
# Set the default game mode for the minigames dimension
/wdn dimension set gametype world_dimension_nexus:minigames_dimension adventure
# Set the default game mode for the survival dimension
/wdn dimension set gametype world_dimension_nexus:survival_dimension survival
/wdn dimension export <dimension>
What it does:
- Saves a world to a file for backup or sharing
Examples:
# Export the creative dimension for backup
/wdn dimension export world_dimension_nexus:creative_dimension
# Export the overworld dimension
/wdn dimension export minecraft:overworld
# Export the lobby dimension for sharing
/wdn dimension export world_dimension_nexus:lobby_dimension
/wdn dimension import <file>
/wdn dimension import <file> <name>
/wdn dimension import <file> <name> <type>
What it does:
- Loads a world from a file. You can give it a new name or type
Examples:
# Import a lobby backup file
/wdn dimension import lobby_backup.wdn
# Import a creative template and name it my_creative_dimension
/wdn dimension import creative_template.wdn world_dimension_nexus:my_creative_dimension
# Import a minigames backup and name it tournament_arena_dimension with flat terrain
/wdn dimension import minigames_backup.wdn world_dimension_nexus:tournament_arena_dimension flat
# Import a skyblock template with skyblock generation
/wdn dimension import skyblock_template.wdn world_dimension_nexus:custom_skyblock skyblock
/wdn dimension remove <dimension_name>
What it does:
- Deletes a world forever. This cannot be undone!
Examples:
# Remove an old test dimension
/wdn dimension remove world_dimension_nexus:test_dimension
# Remove an unused creative dimension
/wdn dimension remove world_dimension_nexus:old_creative
Tip: Always export worlds before removing them!
# Create a lobby dimension with flat terrain and adventure mode
/wdn dimension create lobby_dimension flat adventure
# Create a creative dimension with void terrain and creative mode
/wdn dimension create creative_dimension void creative
# Create a survival dimension with normal terrain and survival mode
/wdn dimension create survival_dimension normal survival
# Set the spawn point for the lobby dimension
/wdn dimension set spawnpoint world_dimension_nexus:lobby_dimension 0 65 0
# Set the spawn point for the creative dimension
/wdn dimension set spawnpoint world_dimension_nexus:creative_dimension 0 64 0
# Get information about the lobby dimension
/wdn dimension info world_dimension_nexus:lobby_dimension
# Export the creative dimension for backup
/wdn dimension export world_dimension_nexus:creative_dimension
# Export the lobby dimension for backup
/wdn dimension export world_dimension_nexus:lobby_dimension
# Import a lobby dimension from file
/wdn dimension import lobby_dimension.wdn
# Import a water world dimension from file and name it water_world_dimension
/wdn dimension import fishing_dimension.wdn world_dimension_nexus:water_world_dimension
# Import a template and name it my_world_dimension with flat terrain
/wdn dimension import template.wdn world_dimension_nexus:my_world_dimension flat
- Use only lowercase letters, numbers, underscore, and hyphen for names
- Each world must have a unique name
- Exported files are saved in
world/exports/
- Restart the server after importing for best results
- Always export before removing worlds
- The full dimension name includes the namespace (e.g.,
world_dimension_nexus:lobby_dimension
)