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-08 19:22:23 +02:00
locale/en locale/gen_[...] ==> map_gen/[...] #152 2018-01-19 15:18:01 +01:00
map_gen Fixed grilleds suggestions 2018-06-06 15:32:20 +02:00
resources merged branches 2018-06-04 16:35:18 +01:00
utils Implemented undo rotation, paste, decon 2018-06-05 18:00:25 +02:00
.gitignore added *.sh to gitignore 2018-01-24 12:42:57 +01:00
antigrief.lua Minor changes to antigrief.lua 2018-06-06 22:48:22 +02: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 Implemented paintbrush 2018-06-08 19:22:23 +02: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 Made undo warning appear more than once 2018-06-06 22:53:30 +02:00
fish_market.lua changes to fish market 2018-06-01 22:23:51 +01:00
follow.lua Cleanup up utils 2018-06-02 18:16:04 +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 tidied up map_layout.lua 2018-06-03 12:41:58 +01:00
nuke_control.lua Fixed merge conflict between master and develop (#176 vs. #177 & #178) 2018-06-04 12:36:21 +02:00
paint.lua Implemented paintbrush 2018-06-08 19:22:23 +02:00
player_list.lua merged branches 2018-06-04 16:35:18 +01:00
poll.lua merged branches 2018-06-04 16:35:18 +01:00
popup.lua updates 2018-05-25 21:21:32 +01:00
reactor_meltdown.lua Fixed potential issue with reactors blowing up on antigrief surface 2018-06-05 02:06:26 +02: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 Fixed bug in print_spawns and minor refactoring 2018-06-05 11:25:00 +02:00
tasklist.lua Remove unessecary lines 2018-06-04 18:35:17 -04:00
train_station_names.lua Removed unessesary lines and variables 2018-06-04 17:58:47 -04:00
user_groups.lua Fixed merge conflict between master and develop (#176 vs. #177 & #178) 2018-06-04 12:36:21 +02: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.