locale/en | ||
map_gen | ||
resources | ||
utils | ||
.gitignore | ||
antigrief.lua | ||
autodeconstruct.lua | ||
base_data.lua | ||
blueprint_helper.lua | ||
bot.lua | ||
config.lua | ||
control.lua | ||
corpse_util.lua | ||
custom_commands.lua | ||
fish_market.lua | ||
follow.lua | ||
infinite_storage_chest.lua | ||
info.lua | ||
LICENSE | ||
map_layout.lua | ||
nuke_control.lua | ||
paint.lua | ||
player_colors.lua | ||
player_list.lua | ||
player_stats.lua | ||
poll.lua | ||
popup.lua | ||
reactor_meltdown.lua | ||
README.md | ||
score.lua | ||
spawn_control.lua | ||
tag_group.lua | ||
tasklist.lua | ||
train_station_names.lua | ||
user_groups.lua | ||
wood_market.lua |
RedMew Scenario
Getting Started
To use our scenario download it here and unzip it into %AppData%/factorio/scenarios/ (~/.factorio/scenarios for linux)
Generating maps
There are 3 ways to generate maps using our scenario: Vanilla, FactorioMapConverter and Custom Maps.
Vanilla
Just start the scenario from the scenario menu and you are ready to go.
Custom Maps
We have many premade map modules that you can combine to create a unique map.
Checkout map_gen/data/map_previews to view all our modules. You can select and activate a module by removing the "--" infront of the module in the map_layout.lua file.
You can mix as many modules as you want, as long as they logically fit together.
Futher instructions on this read the comments in the map_layout.lua file.
FactorioMapConverter
You can generate your own maps from images. This works in 2 steps:
First convert the image file into a lua file (For example image_data.lua). Then use our scenario to loa the image_data.lua file and generate the map from it.
To achieve this please follow these steps:
- Download the Map Converter here (Windows only) to generate the image_data.lua.
- Place your image_data.lua file in the folder /map_gen/data/presets/
- Create new lua file (for example my_image.lua) inside the folder map_gen/presets/. This file is used to configure your map (scale, translaten etc.)
To do this you can copy map_gen/presets/template.lua and replace line 8 to point to your image_data.lua - Load your new preset by adding a new line to map_layout.lua. This should look similar to this:
MAP_GEN = require "map_gen.presets.my_image.lua"
- Load the scenario from the scenario menu.