Remove the without satellite message
- LuziferSenpai
- Filter Inserter
- Posts: 392
- Joined: Tue Jul 08, 2014 10:06 am
- Contact:
Remove the without satellite message
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
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 to
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.
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"}}
Code: Select all
game.players[1].print({"gui-rocket-silo.rocket-launched-without-satellite"})
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 do mods. Modding wiki is friend, it teaches how to mod. Api docs is friend too...
I also update mods, some of them even work.
Recently I did a mod tutorial.
I also update mods, some of them even work.
Recently I did a mod tutorial.
- aubergine18
- Smart Inserter
- Posts: 1264
- Joined: Fri Jul 22, 2016 8:51 pm
- Contact:
Re: Remove the without satellite message
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.
Better forum search for modders: Enclose your search term in quotes, eg. "font_color" or "custom-input" - it prevents the forum search from splitting on hypens and underscores, resulting in much more accurate results.
- LuziferSenpai
- Filter Inserter
- Posts: 392
- Joined: Tue Jul 08, 2014 10:06 am
- Contact:
Re: Remove the without satellite message
That will be coolaubergine18 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.
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.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 43toCode: Select all
game.show_message_dialog{text = {"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).Code: Select all
game.players[1].print({"gui-rocket-silo.rocket-launched-without-satellite"})
The closest solution is defining alternative freeplay scenario, but then you'd need to start the game in that scenario from the very beginning.
-
- Manual Inserter
- Posts: 3
- Joined: Thu Apr 28, 2016 5:44 pm
- Contact:
Re: Remove the without satellite message
play in Multiplayer it doesnt freeze the game and you don't have to tab out of it
Re: Remove the without satellite message
A remote interface was added in one of the recent 0.14 versions.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.
If you want to get ahold of me I'm almost always on Discord.
-
- Filter Inserter
- Posts: 841
- Joined: Mon Sep 14, 2015 7:40 am
- Contact:
Re: Remove the without satellite message
Eh? I don't see it in: Factorio\data\base\scenarios\freeplay\control.luaRseding91 wrote:A remote interface was added in one of the recent 0.14 versions.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.
Am I missing something?
Re: Remove the without satellite message
What?.. http://imgur.com/a/P87HhSupercheese wrote:Eh? I don't see it in: Factorio\data\base\scenarios\freeplay\control.luaRseding91 wrote:A remote interface was added in one of the recent 0.14 versions.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.
Am I missing something?
If you want to get ahold of me I'm almost always on Discord.
-
- Filter Inserter
- Posts: 841
- Joined: Mon Sep 14, 2015 7:40 am
- Contact:
Re: Remove the without satellite message
Yeah that's not in my copy of that file at all. Guess I need to reinstall...
-
- Filter Inserter
- Posts: 841
- Joined: Mon Sep 14, 2015 7:40 am
- Contact:
Re: Remove the without satellite message
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-manualRseding91 wrote:What?.. http://imgur.com/a/P87Hh
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
Hmm.. for some reason I thought it was put into 0.14. I guess not.. anyway it's in 0.15 for sure.
If you want to get ahold of me I'm almost always on Discord.
Re: Remove the without satellite message
What's the grand reasoning for spawning the message dialog at all in the first place?
I do mods. Modding wiki is friend, it teaches how to mod. Api docs is friend too...
I also update mods, some of them even work.
Recently I did a mod tutorial.
I also update mods, some of them even work.
Recently I did a mod tutorial.