Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Disable biters expansion ---
- /c game.map_settings.enemy_expansion.enabled = false
- --- Destroy clifs ---
- /c local mgs = game.player.surface.map_gen_settings
- mgs.cliff_settings.cliff_elevation_0 = 1024
- game.player.surface.map_gen_settings = mgs
- /c for _, v in pairs(game.player.surface.find_entities_filtered{type="cliff"}) do
- v.destroy()
- end
- --- Timelapse script (its not a command) ---
- script.on_nth_tick(300, function(event)
- game.take_screenshot{
- surface=game.surfaces[1],
- position={-60,75},
- resolution={9120, 5130},
- zoom=1,
- path="screens/" .. string.format("%06d", event.tick/event.nth_tick) .. ".jpg",
- show_entity_info=true,
- allow_in_replay=true,
- daytime=1
- }
- end)
Add Comment
Please, Sign In to add comment