Page 1 of 1

Remove the without satellite message

Posted: Thu Sep 08, 2016 7:30 pm
by LuziferSenpai
Is it possible to remove the without satellite message? Because it doesnt make fun, when you using Orbital Ion Cannon MOD and Launch Control and get every 10 sec this Message and you need to TAB.

Re: Remove the without satellite message

Posted: Thu Sep 08, 2016 8:28 pm
by Adil
The message is in control.lua of the freeplay scenario.
If doing things by hand, you'd need to edit the /data/base/scenarios/freeplay/control.lua, for example, replace the line 43

Code: Select all

game.show_message_dialog{text = {"gui-rocket-silo.rocket-launched-without-satellite"}}
to

Code: Select all

game.players[1].print({"gui-rocket-silo.rocket-launched-without-satellite"})
However, there's no simple way of doing so along the style of the current modding paradigm (i.e. all is done within mod folder).
The closest solution is defining alternative freeplay scenario, but then you'd need to start the game in that scenario from the very beginning.

Re: Remove the without satellite message

Posted: Thu Sep 08, 2016 8:38 pm
by aubergine18
Maybe if devs add a remote interface to the freeplay scenario? That way players and even mods could disable that message without needing to edit the mod.

Re: Remove the without satellite message

Posted: Fri Sep 09, 2016 4:38 am
by LuziferSenpai
aubergine18 wrote:Maybe if devs add a remote interface to the freeplay scenario? That way players and even mods could disable that message without needing to edit the mod.
That will be cool
Adil wrote:The message is in control.lua of the freeplay scenario.
If doing things by hand, you'd need to edit the /data/base/scenarios/freeplay/control.lua, for example, replace the line 43

Code: Select all

game.show_message_dialog{text = {"gui-rocket-silo.rocket-launched-without-satellite"}}
to

Code: Select all

game.players[1].print({"gui-rocket-silo.rocket-launched-without-satellite"})
However, there's no simple way of doing so along the style of the current modding paradigm (i.e. all is done within mod folder).
The closest solution is defining alternative freeplay scenario, but then you'd need to start the game in that scenario from the very beginning.
I know, but i dont want to edit the Base Game. This is why i was thinking like ages that they need to make that Message so, that you can add new satellites.

Re: Remove the without satellite message

Posted: Sat Oct 15, 2016 3:04 pm
by fps_holland
play in Multiplayer it doesnt freeze the game and you don't have to tab out of it

Re: Remove the without satellite message

Posted: Sat Oct 15, 2016 4:42 pm
by Rseding91
aubergine18 wrote:Maybe if devs add a remote interface to the freeplay scenario? That way players and even mods could disable that message without needing to edit the mod.
A remote interface was added in one of the recent 0.14 versions.

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 1:03 am
by Supercheese
Rseding91 wrote:
aubergine18 wrote:Maybe if devs add a remote interface to the freeplay scenario? That way players and even mods could disable that message without needing to edit the mod.
A remote interface was added in one of the recent 0.14 versions.
Eh? I don't see it in: Factorio\data\base\scenarios\freeplay\control.lua

Am I missing something?

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 1:23 am
by Rseding91
Supercheese wrote:
Rseding91 wrote:
aubergine18 wrote:Maybe if devs add a remote interface to the freeplay scenario? That way players and even mods could disable that message without needing to edit the mod.
A remote interface was added in one of the recent 0.14 versions.
Eh? I don't see it in: Factorio\data\base\scenarios\freeplay\control.lua

Am I missing something?
What?.. http://imgur.com/a/P87Hh

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 1:58 am
by Supercheese
Yeah that's not in my copy of that file at all. Guess I need to reinstall...

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 2:40 am
by Supercheese
Rseding91 wrote:What?.. http://imgur.com/a/P87Hh
Are you sure that code has been added to the right release branch? I just re-downloaded: https://www.factorio.com/get-download/0 ... n64-manual

Within the archive, Factorio_0.14.14\data\base\scenarios\freeplay\control.lua is the following: http://pastebin.com/VmPppUBN

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 4:32 am
by Rseding91
Hmm.. for some reason I thought it was put into 0.14. I guess not.. anyway it's in 0.15 for sure.

Re: Remove the without satellite message

Posted: Sun Oct 16, 2016 11:54 am
by Adil
What's the grand reasoning for spawning the message dialog at all in the first place?