Page 1 of 1
Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 5:59 am
by z-em
I can't stand a train getting stopped by hitting a biter.
I want a train that run over everything.
I want a train that can go trough fields of biter to join an advanced base surrounded by ennemy fire.
No more cleaning rail path or defenses along rail.
I cannot find a mod doing this so i'm requesting one.
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 6:23 am
by darkfrei
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 6:28 am
by Koub
This should be close to what you ask :
https://mods.factorio.com/mod/HeavyWagon
[Edit] Damn !

Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 1:03 pm
by z-em
Thanks for answering this fast
I've tested this one, which is indeed the closest one from what i'm looking for. Therefore it's not enough lol. I'm using natural evolution mod so biter are quite hard to kill. Eventually, i could try to change life values of the mod's wagon. If anyone knows how to do that i'll love some help.
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 1:33 pm
by z-em
I have finally found it
https://mods.factorio.com/mod/invincibl ... -and-power
but it's not supported anymore...
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 2:14 pm
by darkfrei
It's very easy mod, but a little bit too cheatty
Code: Select all
function on_built_entity( event )
local entity = event.created_entity
if (entity.name == 'big-electric-pole' or entity.name == 'diesel-locomotive' or entity.name == 'cargo-wagon') then
entity.destructible = false;
end
end
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 2:30 pm
by z-em
I've updated it to work with current version
Here's the link:
https://mods.factorio.com/mod/invincible-trains
Re: Indestructible and unstoppable train and wagon
Posted: Tue Nov 27, 2018 2:51 pm
by darkfrei