Description
Normally to get Lost Cities content in a new world you have to go through a separate screen with many different settings. This mod automatically applies Lost Cities profiles to new worlds without requiring manual configuration in the world creation screen.This is ideal for mod packs that want to have Lost Cities in the world by default without the player setting them up.
Configuration
Basic Setup
- Start Minecraft once with the mod installed
- Navigate to
/config/lost_cities_autoloader/directory - Create or copy a JSON configuration file (see example below)
- Change the config to specify the filename you want to autoload
Configuration Selection
The mod uses a specific configuration file based on the configFileName setting in the mod's config. By default, it looks for survival_cities.json.
Configuration Files
Create JSON files in the config/lost_cities_autoloader/ directory. The mod will load the file specified in its configuration.
Example: To use config/lost_cities_autoloader/ruins.json, set configFileName to "ruins" in the config.
Example:
{
"profile": "tallbuildings",
"description": "Massive cities",
"settings": {
"cityChance": 0.15,
"cityRadius": 200,
"generateLighting": true,
"generateSpawners": false,
"ruinChance": 0.0,
"vineChance": 0.0
}
}
Available Profiles
The profile field should match one of the built-in Lost Cities profiles:
default- Standard Lost Cities generationnodamage- Like default but no explosion damagefloating- Cities on floating islandsspace- Cities in floating glass bubblescavern- Cities in dark cavernsbiosphere- Jungles in glass bubbles on barren landscapeancient- Ancient jungle cities with vines and ruinswasteland- Wasteland with no wateratlantis- Drowned cities with raised water levelsafe- No spawners, lighting but no loottallbuildings- Very tall buildingsrarecities- Cities are rareonlycities- The entire world is a city
Custom Settings (Optional)
You can override specific settings by including a settings object. Common settings include:
cityChance- Probability of city generation (0.0 to 1.0)cityRadius- Maximum radius of cities in blocksgenerateLighting- Whether to add lighting to buildings (true/false)generateSpawners- Whether to add monster spawners (true/false)generateLoot- Whether to add loot chests (true/false)ruinChance- Probability of ruins/damage (0.0 to 1.0)vineChance- Probability of vines on buildings (0.0 to 1.0)
Dimension Requirements
- This is a fun little addition allowing you to start the player in a specific dimension, such as Nether, with cities.
- Lost Cities must support the target dimension type
- Custom dimensions may require additional configuration
Dimension Configuration
lostCityDimension- Dimension where Lost Cities should generate (default: "minecraft:overworld")- Use
"minecraft:overworld"for overworld - Use
"minecraft:the_nether"for nether - Use
"minecraft:the_end"for end - Use custom dimension IDs like
"lostcities:lostcity"for mod dimensions
- Use
enableCustomSpawn- Enable custom player spawn dimension (default: false)playerSpawnDimension- Dimension where players spawn (default: "minecraft:overworld")
No Effect on Existing Worlds
- The autoloader only affects newly created worlds
- Existing worlds keep their original generation settings
