[MOD 0.11.21] Condense Air [ver. 1.0.0]

Topics and discussion about specific mods
Post Reply
Nagshell
Long Handed Inserter
Long Handed Inserter
Posts: 63
Joined: Wed Feb 25, 2015 1:53 pm
Contact:

[MOD 0.11.21] Condense Air [ver. 1.0.0]

Post by Nagshell »

Do you ever found that getting water is very annoying?

This mod let's you get water from air in any place you want.
Also it is possible to play on maps where there is 0 water.

Balance notes:
Usually water is free, producing it with new method costs a little of energy [and fuel in early game], so I think it's okay.

To enable starting without pumps at all this mod gives you 1 solar panel and 2 assembly machines. I think that in vanilla game it does not matter that much, but it could be breaking difficulty of some mods, so you have been warned.

Short instructions:
Produce heat battery from copper and stone.
Cool it down in furnace.
Use cold battery to condense air.

Download
Version 1.0.0
CondenseAir_1.0.0.zip
(11.26 KiB) Downloaded 867 times

Natha
Fast Inserter
Fast Inserter
Posts: 192
Joined: Sun Mar 15, 2015 1:48 pm
Contact:

Re: [MOD 0.11.21] Condense Air [ver. 1.0.0]

Post by Natha »

nice mod. Condense air can e.g. used if there are different planet types, e.g. desert planet (see https://forums.factorio.com/forum/vie ... f=5&t=9492)

User avatar
Grandirus
Burner Inserter
Burner Inserter
Posts: 14
Joined: Fri Jun 12, 2015 7:21 pm
Contact:

Re: [MOD 0.11.21] Condense Air [ver. 1.0.0]

Post by Grandirus »

I have downloaded the mod and corrected the control.lua to work on the newer version of the game:

Code: Select all

require "defines"

game.onevent(defines.events.onplayercreated, function(event)
  local player = game.getplayer(event.playerindex)
  player.insert({name='assembling-machine-2', count=2})
  player.insert({name='solar-panel', count=1})
end)
to

Code: Select all

require "defines"

script.on_event(defines.events.on_player_created, function(event)
  local player = game.get_player(event.player_index)
  player.insert({name='assembling-machine-2', count=2})
  player.insert({name='solar-panel', count=1})
end)

Post Reply

Return to “Mods”