#yeah if you have a picture of your
1 messages · Page 1 of 1 (latest)
no because since all loco must be able to go to any station with a single click, they all "pass by" all other stations.
the rail already branches
@cerulean slate
ah ok then i misunderstood what you were saying
so when you call a train to your station, what is it being blocked by? That's what I'm confused about
I don't "call" a train to my station, all station has a dedicated train ready
But my system is badly designed, I guess there are other metro system
I want the train to be ready
What do you mean by "all loco just be able to go to any station with a single click"? it sounds to me like you want to call any of these trains to a specific station
like this. for example this train always stops at metro_recycler
but I have another train like this, except he "stops" with this condition at metro_flasks
so obviously they "bother" each other
This UI is nice since I can go to a station with a single click, and once I exit the train returns to its station
I think one solution would be to duplicate all stations, that way they can't block each other
why is the blue train in the green train's branch in that situation? like what made it go there
or is it because the schedule is hardcoded? so it has to go through green before it can come to blue?
like on the screenshot, it needs to go there so it's a choice in the UI
since trains cycles stations
ok so
i think one solution
a possible solution is to have only the blue station in blue train's schedule, green station on green station's schedule, etc
if the trains have to go to another station, you use interrupts to achieve this
that way the trains are not "set in their ways" via the schedule, a train will never get blocked by another one parked at another station
yeah you might have to just play around and figure it out, or read / watch a video about it online
I mean "metro" as in "subway", just to transport the player
interrupts essentially let your train's schedule be dynamic, so they won't go to a station unless certain conditions are met
yeah i get you, but the issue here is just that every train has to cycle through every station in the same order, and if there are other trains parked that the other stations, it makes sense that a train can get blocked
Duplicating stations seems simpler... I don't understand interrputs, I guess I will write a question on the discord forum or elsewhere to see if somebody has done that already.