Nah, I really enjoyed 0.12 . Losing of rocket defense was the first thing I saw, but now I tested my power armor and it is really strong (maybe even OP). Anyway, new rocket silo is cheaper and faster to produce - I am happy with that .FishSandwich wrote: Okay, well, you don't HAVE to. You can continue playing that save with 0.11.22
Version 0.12.0
Re: Version 0.12.0
Re: Version 0.12.0
So, I know 12.0 is the Steam Release candidate (FF#84) will a period of time pass before the game is available for purchase on Steam? The only thing keeping me from buying Factorio now is that I have no internet-friendly payment options.
-
- Smart Inserter
- Posts: 1847
- Joined: Sun Feb 23, 2014 3:37 pm
- Contact:
Re: Version 0.12.0
IIRC it's going to steam when 0.12 is stable. That could be a couple months away I'm afraid.Duane wrote:So, I know 12.0 is the Steam Release candidate (FF#84) will a period of time pass before the game is available for purchase on Steam? The only thing keeping me from buying Factorio now is that I have no internet-friendly payment options.
Re: Version 0.12.0
Yeeeah but im on holiday so i have no time to play factorio
Re: Version 0.12.0
Its here!
Weekend is saved!
Thank you very much, but now excuse me i have to build a factory.
Weekend is saved!
Thank you very much, but now excuse me i have to build a factory.
Re: Version 0.12.0
This change is rather meh... gotta rebuild most of my factory because of itFactorioBot wrote: [*]Items on transport belts don't go off the belt at the end, so the transport belt has to go directly in front of the required inserter.
(and i have to reduce my laser-turret)
Re: Version 0.12.0
So if I want to kill all biters, set time to always day and set it to peaceful mode (seems to be a lot harder than I recall...) How would I do that?
I know in 0.11 i would do:
/c game.peacefulmode = true
/c game.killallenemies()
/c game.alwaysday=true
But I get errors for all 3.
Error is basically the same for all 3:
Is there anything I am doing wrong? (commands taken directly from the wiki)
I know in 0.11 i would do:
/c game.peacefulmode = true
/c game.killallenemies()
/c game.alwaysday=true
But I get errors for all 3.
Error is basically the same for all 3:
Code: Select all
Cannot execute command. Error: [string "game.killallenemies()"]:1: LuaGameScript doesn't contain key killallenemies
-
- Filter Inserter
- Posts: 952
- Joined: Sat May 23, 2015 12:10 pm
- Contact:
Re: Version 0.12.0
try with underscores between words game.peaceful_mode =trueMrDrummer wrote:So if I want to kill all biters, set time to always day and set it to peaceful mode (seems to be a lot harder than I recall...) How would I do that?
I know in 0.11 i would do:
/c game.peacefulmode = true
/c game.killallenemies()
/c game.alwaysday=true
But I get errors for all 3.
Error is basically the same for all 3:Is there anything I am doing wrong? (commands taken directly from the wiki)Code: Select all
Cannot execute command. Error: [string "game.killallenemies()"]:1: LuaGameScript doesn't contain key killallenemies
Re: Version 0.12.0
The joys of playing an alpha build, lolgenericname1 wrote:you've changed how inserters/belts work.
If you didn't want stuff stuck on the end of a belt you created it so it only just reached the inserted emptying it.
Now the inserter doesn't appear to see the belt unless its right in front of it... (it was probably a bug and should be fixed but it's going to take ages to spot all the bits that now don't work)
-
- Smart Inserter
- Posts: 1847
- Joined: Sun Feb 23, 2014 3:37 pm
- Contact:
Re: Version 0.12.0
It makes sense that all these were moved to luaforce. I can't test the commands right now but you should try that(game.player.force.killallenemies(), for example)
Re: Version 0.12.0
So that one worked, but i cant figure out the killallenemies() one out... kill_all_enemies() nor killall_enemies() work.ratchetfreak wrote:try with underscores between words game.peaceful_mode =trueMrDrummer wrote:So if I want to kill all biters, set time to always day and set it to peaceful mode (seems to be a lot harder than I recall...) How would I do that?
I know in 0.11 i would do:
/c game.peacefulmode = true
/c game.killallenemies()
/c game.alwaysday=true
But I get errors for all 3.
Error is basically the same for all 3:Is there anything I am doing wrong? (commands taken directly from the wiki)Code: Select all
Cannot execute command. Error: [string "game.killallenemies()"]:1: LuaGameScript doesn't contain key killallenemies
Re: Version 0.12.0
From OP
Replaced LuaGameScript::kill_all_enemies() by LuaForce::kill_all_units().
Re: Version 0.12.0
Ah... thanks. I did have a quick browse... but obviously didnt look hard enough ah well. Thanks
Re: Version 0.12.0
IPv6 is awesome, thanks a lot
And thanks for all the other improvements too
And thanks for all the other improvements too
Re: Version 0.12.0
How this work?Basic PvP: New forces can now be created and merged back together; a cease-fire can be agreed upon between forces
-
- Long Handed Inserter
- Posts: 66
- Joined: Sun May 24, 2015 4:41 pm
- Contact:
Re: Version 0.12.0
Awesome!! I really like the roads! So I went along to test the test mode mod. It boots, but when I try to enter a game, it says
So you guys moved the events? I cant use game.oninit, game.onload, and game.ontick. Where is it now?
Thanks!
Code: Select all
__test-mode__\18: LuaGameScript doesn't contain key oninit.
Thanks!
-
- Filter Inserter
- Posts: 952
- Joined: Sat May 23, 2015 12:10 pm
- Contact:
Re: Version 0.12.0
put underscores between the words: on_init, on_load, etc.iUltimateLP wrote:Awesome!! I really like the roads! So I went along to test the test mode mod. It boots, but when I try to enter a game, it saysSo you guys moved the events? I cant use game.oninit, game.onload, and game.ontick. Where is it now?Code: Select all
__test-mode__\18: LuaGameScript doesn't contain key oninit.
Thanks!
-
- Long Handed Inserter
- Posts: 66
- Joined: Sun May 24, 2015 4:41 pm
- Contact:
Re: Version 0.12.0
Found it out too, thanks!ratchetfreak wrote:put underscores between the words: on_init, on_load, etc.iUltimateLP wrote:Awesome!! I really like the roads! So I went along to test the test mode mod. It boots, but when I try to enter a game, it saysSo you guys moved the events? I cant use game.oninit, game.onload, and game.ontick. Where is it now?Code: Select all
__test-mode__\18: LuaGameScript doesn't contain key oninit.
Thanks!
Re: Version 0.12.0
With the new vehicle friction for surfaces, can we hope to see special effects to go along with this? I'd love to see cars (and trains? if theyre affected) kicking up big swathes of dust as they race across the desert.
-
- Long Handed Inserter
- Posts: 53
- Joined: Mon Sep 15, 2014 9:38 pm
- Contact:
Re: Version 0.12.0
With the updated numbers 1 portable fusion reactor produces enough energy to supply 1 mk2 shield within milliseconds, I can stand in a medium sized enemy base without dying. This should be rebalanced I guess.Power armor modules generate and consume 100 times more power in order to be able to charge construction robots.