In other languages: Русский 简体中文

Scenario system

From Official Factorio Wiki
Revision as of 13:53, 14 October 2019 by Wheybags (talk | contribs) (Added section on packaging a scenario as a mod)
Jump to navigation Jump to search


The scenario system allows save-based mods to be created, so that installing mods separately is not necessary. This allows for server side scripting, or to provide a separate objective than the vanilla freeplay (which is actually a scenario, just like the campaign).

Creation

Creation of a scenario starts in the world editor. The world editor allows an author to save a world that they have created as a scenario. This allows players to add special scripting to the scenario.

There are two ways to create a scenario:

  • Via the Map editor.
  • Creating a new folder in the scenarios folder, and adding a control.lua.

Differences between scenarios, saves, and mods

There are a few differences between a scenario, a save, and a mod. In a way, a scenario takes parts from both.

  • Scenarios, unlike mods, cannot add anything to the game. The only type of scripting allowed in a scenario is scripting that would occur in control.lua.
  • Scenarios can have premade maps, such as the supply scenario, or can have maps made with the world generator, such as freeplay.
  • Scenarios do not need to be installed client side, unlike mods. This allows servers to implement small changes to gameplay on their end, such as displaying a MOTD to joining players.
  • Scenarios, unlike normal saves, are stored in a different folder.
  • Scenarios can be used to create a bit of a story, as the campaign does.

Limitations of Scenarios

  • Scenarios must be packaged into a mod to be distributed on the mod portal.
  • Scenarios cannot add anything to the game (Namely, they may not make calls to data:extend()).
  • Scenarios count as mods for the purpose of isolating achievements.

Playing a scenario

There are several scenarios included into the game by default. To play a scenario, click Play->Scenarios, and choose either a user scenario, or a scenario from the base game or mod. The Freeplay scenario is the same as the basic game, where the objective is to launch a rocket.

Upon choosing a scenario to play and saving the game, a normal save will be created that encompasses the map itself, and the control.Lua scripting that was provided by the scenario. This can be removed by deleting the script.dat and control.Lua files from the save, turning it into a normal save. Do this at your own risk, as it may break the save depending on how intertwined the scenario is with the save.

Installing scenarios

Scenarios made by other players can be installed into a folder called scenarios in the player's user data directory. It can then be played from the scenarios menu.

Scenarios added by mods are also shown in the Scenarios menu.

Packaging a scenario as a mod

Create an empty mod, as described in Tutorial:Mod_structure. Then, simply add a "scenarios" folder, and copy your scenario into that folder. If you created a scenario with the map editor, you can find it in the scenarios folder in your user data directory.

See also