Table of Contents

Scenario

Our scenario, located on GitHub, is a hard fork of the Explosive Gaming (ExpGaming) community's scenario for Factorio v1.1. When 2.0/Space Age was released, the ExpGaming scenario development team fully integrated their scenario with Clusterio. As we no longer use Clusterio, the decision was made to hard-fork the 1.0 scenario.

Local Development

To test scenario features in singleplayer, you must either promote yourself to an administrative role in the file config/expcore/roles.lua, or run the Permission Elevation command below.

Useful Commands

Permission Elevation

This command will promote the current player to the Administrator role.

local Roles = require 'expcore.roles'
local user = game.player
Roles.assign_player(user, {'Administrator'})
Roles.override_player_roles(user, {'Administrator'})
 
local PermissionGroups = require 'expcore.permission_groups'
PermissionGroups.set_player_group(user, "Admin")

An alternative command was provided by TSP on behalf of the ExpGaming community.

package.loaded["level/expcore/roles.lua"].assign_player(game.player, "System")