Page 1 of 1

[MOD 0.11.21] Condense Air [ver. 1.0.0]

Posted: Sat Apr 11, 2015 3:23 pm
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 870 times

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

Posted: Sat Apr 11, 2015 4:11 pm
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)

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

Posted: Sat Jun 18, 2016 7:47 pm
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)