Page 2 of 4
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Fri Jan 08, 2016 7:44 pm
				by Proxy
				So, it's like the Compact machines mod from Minecraft?
YUS.
but i'm not sure if you got Diffrent Tiers of Trains, higher Tiers mean More Space...
but still, very Awesome! 

 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Fri Jan 08, 2016 11:17 pm
				by ske
				Can you ride a train inside the train?
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Fri Jan 08, 2016 11:47 pm
				by Supercheese
				ske wrote:Can you ride a train inside the train?
Yo, I heard you like trains, so we put a train inside your train.
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 1:18 am
				by orzelek
				You were thinking about adding some way to generate path through resources for the train.
If you are interested I think it would be possible to get RSO to keep the internal list of resources it uses to generate them and make it readable by interface. Would make finding resources to path through much easier potentially.
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 2:53 pm
				by xiaohong
				ske wrote:Can you ride a train inside the train?
Yes, but not tested
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 2:55 pm
				by xiaohong
				orzelek wrote:You were thinking about adding some way to generate path through resources for the train.
If you are interested I think it would be possible to get RSO to keep the internal list of resources it uses to generate them and make it readable by interface. Would make finding resources to path through much easier potentially.
I was thinking generate a random path then sprinkling resources along the path. Seems to be easier to implement this way.
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 2:57 pm
				by xiaohong
				Proxy wrote:So, it's like the Compact machines mod from Minecraft?
YUS.
but i'm not sure if you got Diffrent Tiers of Trains, higher Tiers mean More Space...
but still, very Awesome! 

 
No tiers yet, but you can expand the train space by adding wagons. I will have to check out that mod.
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 3:52 pm
				by orzelek
				xiaohong wrote:orzelek wrote:You were thinking about adding some way to generate path through resources for the train.
If you are interested I think it would be possible to get RSO to keep the internal list of resources it uses to generate them and make it readable by interface. Would make finding resources to path through much easier potentially.
I was thinking generate a random path then sprinkling resources along the path. Seems to be easier to implement this way.
 
That might be easier 
 
I'm patiently waiting for ability to expand the railroad 

 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 6:18 pm
				by Krysmphoenix
				So I'm a little confused how the NESTT chests bring resources inside, even after watching the video.
I tried setting up several iron NESTT chests but only one of them actually moved resources inside. Can we only use one NESTT chest per resource?
Also it seems like NESTT chests only work on the engine piece, not on the cargo segments. Is that intentional or am I just kind of messing something up?
Also I'm a little curious how the NESTT brings water and oil inside, since I'm trying to figure out where to put my steam engines and oil refineries. It would be convenient if I could move those tanks somewhere else, but I haven't tested anything yet.
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 10:51 pm
				by kel
				Theres one little thing im hoping that you fix: 
that is that you can produce water from the black area using a offshore pump.
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 11:26 pm
				by Klonan
				kel wrote:Theres one little thing im hoping that you fix: 
that is that you can produce water from the black area using a offshore pump.
Thats a game bug/feature, only way i can suggest to fix it is to spawn indestructible wall around the edge of the internal area
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Sat Jan 09, 2016 11:44 pm
				by orzelek
				Klonan wrote:kel wrote:Theres one little thing im hoping that you fix: 
that is that you can produce water from the black area using a offshore pump.
Thats a game bug/feature, only way i can suggest to fix it is to spawn indestructible wall around the edge of the internal area
 
Bug report would be in order - should get fixed anyway.
 
			
					
				Bug report
				Posted: Tue Jan 12, 2016 8:49 am
				by unrealsolver
				Hello. I've just installed the mod, but there are no train when I start the scenario (both scenarios), just rails.
I'm running Ubuntu 14.04 and using Factorio 0.12.21
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Tue Jan 12, 2016 10:49 pm
				by StanFear
				Klonan wrote:kel wrote:Theres one little thing im hoping that you fix: 
that is that you can produce water from the black area using a offshore pump.
Thats a game bug/feature, only way i can suggest to fix it is to spawn indestructible wall around the edge of the internal area
 
it is actually really easy to fix, go to your game installation folder then ./data/base/prototypes/tile/tiles.lua
then, line 58 comment the line going from 
Code: Select all
{
  type = "tile",
  name = "out-of-map",
  collision_mask =
  {
    "ground-tile",
    "water-tile",
    "resource-layer",
    "floor-layer",
    "item-layer",
    "object-layer",
    "player-layer",
    "doodad-layer"
  }, ...
to 
Code: Select all
{
  type = "tile",
  name = "out-of-map",
  collision_mask =
  {
    "ground-tile",
    --"water-tile",
    "resource-layer",
    "floor-layer",
    "item-layer",
    "object-layer",
    "player-layer",
    "doodad-layer"
  }, ...
to @xiaohong, create a new out-of-map tileset with basically the same data but with this line commented out, use it outside the train compartment and this should be solved !
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Wed Jan 13, 2016 2:40 am
				by xiaohong
				Krysmphoenix wrote:So I'm a little confused how the NESTT chests bring resources inside, even after watching the video.
I tried setting up several iron NESTT chests but only one of them actually moved resources inside. Can we only use one NESTT chest per resource?
Also it seems like NESTT chests only work on the engine piece, not on the cargo segments. Is that intentional or am I just kind of messing something up?
Also I'm a little curious how the NESTT brings water and oil inside, since I'm trying to figure out where to put my steam engines and oil refineries. It would be convenient if I could move those tanks somewhere else, but I haven't tested anything yet.
here is the setup:
[s][n][c]
s = side of the train
n = nestt-chest
c = any chest
place 1 ore in the nestt-chest and the chest next to it will be filled. 
Note that it will only fill if you are over the ore patch.
Also if you have two duplicate setups with the same ore, only one will be filled.
All resources can only be gathered in the locomotive and not in wagons, this is a feature.
The oil and water tanks are stationary for now.
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Wed Jan 13, 2016 2:44 am
				by xiaohong
				StanFear wrote:
to @xiaohong, create a new out-of-map tileset with basically the same data but with this line commented out, use it outside the train compartment and this should be solved !
Thanks, will add this in the next release.
 
			
					
				Re: Bug report
				Posted: Wed Jan 13, 2016 2:46 am
				by xiaohong
				unrealsolver wrote:Hello. I've just installed the mod, but there are no train when I start the scenario (both scenarios), just rails.
I'm running Ubuntu 14.04 and using Factorio 0.12.21
Sounds like the mod was not installed correctly. In the game main menu click "Mods", check if "Never Ever Stop The Train" is there, and is enabled.
 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Mon Jan 18, 2016 8:07 pm
				by StanFear
				ehm ... I think I found a bug : 
on version 0.1.0, If I enter a secound train, the map never gets generated (the enter/exit boutton is available directly when I enter the train), and when I teleport inside, I get killed right away ... I know it probably shouldn't be used with more than one train, but still ...
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Thu Jan 28, 2016 7:45 pm
				by delfiler
				i love this mode makes me really thing about everything i use and place but my only thing is that the train starts sower after you ad more wagons is ther anyway to increase it?
			 
			
					
				Re: [MOD 0.12.x] NESTT: Build your base inside a train
				Posted: Mon Feb 01, 2016 5:12 pm
				by xiaohong
				delfiler wrote:i love this mode makes me really thing about everything i use and place but my only thing is that the train starts sower after you ad more wagons is ther anyway to increase it?
I will probably add researches/upgrades later down the line to enhance the train.