get_event_handler(event) | Find the event handler for an event. |
raise_event(event, table) | Raise an event. |
set_game_state{game_finished=…, player_won=…, next_level=…, can_continue=…} | Set scenario state. |
get_entity_by_tag(tag) → LuaEntity | |
show_message_dialog{text=…, image=…, point_to=…} | Show an in-game message dialog. |
disable_tips_and_tricks() | Disable showing tips and tricks. |
is_demo() → boolean | Is this the demo version of Factorio? |
save(name) | Save scenario progress. |
load(name) | Load scenario progress. |
reload_script() | Forces a reload of the scenario script when the save game without the migration is loaded. |
save_atlas() | Saves the current configuration of Atlas to a file. |
check_consistency() | Run internal consistency checks. |
regenerate_entity(entitites) | Regenerate autoplacement of some entities on all surfaces. |
take_screenshot{player=…, by_player=…, position=…, resolution=…, zoom=…, path=…, show_gui=…, show_entity_info=…, anti_alias=…} | Take a screenshot and save it to a file. |
write_file(filename, data, append, for_player) | Write a string to a file. |
remove_path(path) | Remove file or directory. |
remove_offline_players(players) | Remove players who are currently not connected from the map. |
force_crc() | Force a CRC check. |
create_force(force) → LuaForce | Create a new force. |
merge_forces(source, destination) | Merge two forces together. |
create_surface(name, settings) | Create a new surface |
server_save(name) | Instruct the server to save the map. |
delete_surface(surface) | Deletes the given surface and all entities on it. |
disable_replay() | Disables replay saving for the current save file. |
direction_to_string(direction) | Converts the given direction into the string version of the direction. |
print(message) | Print text to the chat console all players. |
player :: LuaPlayer [R] | The player typing at the console - nil in all other instances. |
players :: custom dictionary uint or string → LuaPlayer [R] | |
evolution_factor :: float [RW] | Evolution factor of enemies. |
map_settings :: MapSettings [R] | |
difficulty :: defines.difficulty [R] | Current scenario difficulty. |
forces :: custom dictionary string → LuaForce [R] | |
entity_prototypes :: custom dictionary string → LuaEntityPrototype [R] | |
item_prototypes :: custom dictionary string → LuaItemPrototype [R] | |
fluid_prototypes :: custom dictionary string → LuaFluidPrototype [R] | |
tile_prototypes :: custom dictionary string → LuaTilePrototype [R] | |
equipment_prototypes :: custom dictionary string → LuaEquipmentPrototype [R] | |
damage_prototypes :: custom dictionary string → LuaDamagePrototype [R] | |
virtual_signal_prototypes :: custom dictionary string → LuaVirtualSignalPrototype [R] | |
equipment_grid_prototypes :: custom dictionary string → LuaEquipmentGridPrototype [R] | |
tick :: uint [R] | Current map tick. |
finished :: boolean [R] | Is the scenario finished? |
speed :: float [RW] | Speed to update the map at. |
surfaces :: custom dictionary string → LuaSurface [R] | |
active_mods :: dictionary string → string [R] | The active mods versions. |
connected_players :: array of LuaPlayer [R] | The online players This is primarally useful when you want to do some action against all online players. |
Main toplevel type, provides access to most of the API though its members. An instance
of LuaGameScript is available as the global object named game
.
Find the event handler for an event.
Raise an event.
Show an in-game message dialog.
point_to={type="nowhere"}
to remove the arrow entirely.) The dialog itself will be placed near the arrow's target.Disable showing tips and tricks.
Is this the demo version of Factorio?
Save scenario progress.
Load scenario progress.
Forces a reload of the scenario script when the save game without the migration is loaded.
Saves the current configuration of Atlas to a file. This will result in huge file containing all of the game graphics moved to as small space as possible.
Run internal consistency checks. Allegedly prints any errors it finds.
Take a screenshot and save it to a file.
Write a string to a file.
true
, this will append to the end of the file. Defaults to false
,Remove file or directory. Given path is taken relative to the script output directory. Can be used to remove files created by LuaGameScript::write_file.
Force a CRC check. Tells all peers to calculate their current map CRC; these CRC are then compared against each other. If a mismatch is detected, the game is desynced and some peers are forced to reconnect.
Create a new force.
Merge two forces together. All entities in the source force will be reassigned to the target force. The source force will then be destroyed.
Instruct the server to save the map.
Deletes the given surface and all entities on it.
Disables replay saving for the current save file. Once done there's no way to re-enable replay saving for the save file without loading an old save.
Converts the given direction into the string version of the direction.
The player typing at the console - nil
in all other instances. See LuaGameScript::players for accessing all players.
Evolution factor of enemies.
Current scenario difficulty.
Current map tick.
Is the scenario finished?
Speed to update the map at. 1.0 is normal speed -- 60 UPS.
The active mods versions. The keys are mod names, the values are the versions.
for name, version in pairs(game.active_mods) do
p.print(name .. " version " .. version)
end
The online players
This is primarally useful when you want to do some action against all online players.