1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
The RedMew scenario code for Factorio. https://redmew.com/
Go to file
2018-06-02 13:28:33 +01:00
locale/en locale/gen_[...] ==> map_gen/[...] #152 2018-01-19 15:18:01 +01:00
map_gen voidgears deathworld 2018-06-02 13:28:33 +01:00
resources voidgears deathworld 2018-06-02 13:28:33 +01:00
utils changed task module to take a token rather than a global function name 2018-05-24 15:16:38 +01:00
.gitignore added *.sh to gitignore 2018-01-24 12:42:57 +01:00
autodeconstruct.lua changes to match new event module 2018-04-06 20:58:50 +01:00
band.lua updates 2018-05-29 13:28:35 +01:00
base_data.lua changes to match new event module 2018-04-06 20:58:50 +01:00
blueprint_helper.lua updates 2018-06-01 22:23:39 +01:00
bot.lua prime's bot stuff 2018-04-29 20:29:43 +01:00
config.lua added debug support 2018-05-22 01:03:04 +01:00
control.lua updated naughty words 2018-05-29 00:23:55 +01:00
corpse_util.lua changed task module to take a token rather than a global function name 2018-05-24 15:16:38 +01:00
custom_commands.lua changed task module to take a token rather than a global function name 2018-05-24 15:16:38 +01:00
fish_market.lua changes to fish market 2018-06-01 22:23:51 +01:00
follow.lua fixed typo in follow.distance() which caused the function to return incorrect results 2017-07-30 18:00:28 +02:00
info.lua removed line that logs error 2018-05-07 12:32:27 +01:00
LICENSE Create LICENSE 2017-09-17 23:11:08 +02:00
map_layout.lua voidgears deathworld 2018-06-02 13:28:33 +01:00
nuke_control.lua fixed typo 2018-05-16 10:58:55 +01:00
player_list.lua Merge branch 'disable_pets' into develop 2018-04-07 20:02:49 +02:00
poll.lua fixed poll checkbox spam 2018-05-29 00:23:42 +01:00
popup.lua updates 2018-05-25 21:21:32 +01:00
reactor_meltdown.lua fixed bug 2018-05-29 00:02:33 +01:00
README.md Update README.md 2018-03-25 19:07:16 +02:00
score.lua changes to match new event module 2018-04-06 20:58:50 +01:00
spawn_control.lua changes to match new event module 2018-04-06 20:58:50 +01:00
tasklist.lua changes to match new event module 2018-04-06 20:58:50 +01:00
train_station_names.lua fixed bug 2018-05-19 13:53:38 +01:00
user_groups.lua change empty string to true 2018-05-19 13:42:46 +01:00
walk_distance.lua Merge branch 'disable_pets' into develop 2018-04-07 20:02:49 +02:00

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:

  1. Download the Map Converter here (Windows only) to generate the image_data.lua.
  2. Place your image_data.lua file in the folder /map_gen/data/presets/
  3. 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
  4. 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"
  5. Load the scenario from the scenario menu.