What is a World Seed?
A world seed is a number (or text that converts to a number) that Minecraft uses to generate the world. The same seed will always generate the same world layout, making it useful for:
- Creating specific world types
- Sharing interesting world layouts
- Recreating worlds
- Finding specific biomes or structures
Setting a Seed for a New World
Step 1: Access Server Properties
- Log in to your panel
- Navigate to your Minecraft server
- Open the File Manager
- Locate and open
server.properties
Step 2: Set the Seed
- Find the
level-seed=line inserver.properties - Enter your desired seed after the equals sign:
level-seed=123456789
Or use a text seed:
level-seed=MyAwesomeWorld
- Save the file
Step 3: Create New World
If you want to use the seed for a completely new world:
- Backup Current World: Save your current world if needed
- Stop the server
- Delete or rename the current world folder (usually
world/) - Start the server
- A new world will generate using your seed
Changing Seed for Existing World
Important
You cannot change the seed of an existing world. The seed only affects world generation. To use a new seed, you must create a new world.
Option 1: Create New World with New Seed
Warning
Creating a new world will delete your current world! Make sure to backup your current world before proceeding.
- Stop the server
- Backup your current world (rename the
world/folder) - Set the new seed in
server.properties - Delete or rename the current
world/folder - Start the server (new world generates)
- Your old world is preserved as a backup
Option 2: Use Different World Name
- Stop the server
- Set the new seed in
server.properties - Change
level-name=to a new world name:
level-name=world2
level-seed=NewSeed123
- Start the server
- A new world generates in the
world2/folder - Your original world remains untouched
Finding Your Current Seed
Method 1: In-Game Command
- Connect to your server
- Use the command:
/seed - The seed will be displayed (if you have permission)
Method 2: Check Server Properties
- Open
server.properties - Look for
level-seed= - If blank, the world was generated with a random seed
Method 3: Check World Files
- Navigate to your world folder
- Open
level.datusing an NBT editor - The seed is stored in the level data
Using Popular Seeds
Many players share interesting seeds. To use one:
- Get the seed number or text
- Set it in
server.propertiesaslevel-seed=<seed> - Create a new world (or change world name)
- Start the server
Note: Seeds work the same across Java Edition versions, but may differ between major version updates.
Seed Examples
Random Seed
Leave blank for a random world:
level-seed=
Numeric Seed
level-seed=8675309
Text Seed
level-seed=MyServer2024
Multi-World Servers
If you're using a multi-world plugin:
- Each world can have its own seed
- Configure seeds in the multi-world plugin configuration
- Seeds are set when worlds are created
- Check plugin documentation for seed settings
Troubleshooting
Seed Not Working
- Verify Format: Ensure no extra spaces or characters
- Check World: Seed only affects new world generation
- Restart Server: Changes require a server restart
- New World: You may need to create a new world
World Not Generating
- Check Permissions: Ensure server can create folders
- Verify Disk Space: Ensure enough space for world generation
- Check Logs: Look for generation errors in console
- Try Different Seed: Test with a simple numeric seed
Seed Generates Different World
- Seeds may vary between Minecraft versions
- Major version updates can change generation
- Ensure you're using the same Minecraft version as the seed was created for
- Some seeds may not work in older/newer versions
Best Practices
- Backup Before Changes: Always backup before creating new worlds
- Document Seeds: Keep track of seeds you use
- Test Seeds: Test seeds on a local server first
- Version Compatibility: Be aware of version differences
- Player Communication: Let players know about world changes