Page 3 of 5

Re: Activity Help

Posted: 09 Jul 2015, 18:01
by Sjoerd
TTGMB wrote:I cant do this.
Sjoerd, can you do this for me?
As requested a new activity. You can dowload it here: viewtopic.php?f=7&t=515

Re: Activity Help

Posted: 22 Mar 2021, 10:03
by MikeCA175
What program is best to make these activities?

Re: Activity Help

Posted: 22 Mar 2021, 11:26
by Sjoerd
I use Kladblok / Notepad

Re: Activity Help

Posted: 11 Dec 2021, 16:02
by perfecttrains1000
Okay, I'm going to steal this topic but I have an issue with an activity I am making...

I have trains that need to leave Molenwijk

Code: Select all

  <yard pack="Rijndam2022" file="DM.cty" departures="auto" arrivals="auto">
   <shedule name="Morning" time="05:10:00" autodepartures="05:10:01" autoarrivals="05:10:01">
    <depart code="101" train="1013MP" target="MLW" time="05:10:05" ai="true" track="A01" direction="1" units="3"/>
    <depart code="121" train="1213MB" target="MLW" time="05:12:05" ai="true" track="A01" direction="1" units="3"/>
    <depart code="103" train="1033MP" target="MLW" time="05:25:05" ai="true" track="A01" direction="1" units="3"/>
    <depart code="122" train="1223MB" target="MLW" time="05:27:05" ai="true" track="A02" direction="1" units="3"/>
    <depart code="105" train="1053MP" target="MLW" time="05:40:05" ai="true" track="A02" direction="1" units="3"/>
    <depart code="123" train="1233MB" target="MLW" time="05:42:05" ai="true" track="A02" direction="1" units="3"/>
    <depart code="124" train="1243MB" target="MLW" time="05:57:05" ai="true" track="A03" direction="1" units="3"/>
   </shedule>
   <shedule name="Morning 2" time="06:10:00" autodepartures="06:10:01" autoarrivals="06:10:01">
    <depart code="125" train="1253MB" target="MLW" time="06:12:05" ai="true" track="A03" direction="1" units="3"/>
    <depart code="102" train="1023MP" target="MLW" time="06:20:05" ai="true" track="A03" direction="1" units="3"/>
    <depart code="104" train="1043MP" target="MLW" time="06:35:05" ai="true" track="A04" direction="1" units="3"/>
    <depart code="106" train="1063MP" target="MLW" time="06:50:05" ai="true" track="A04" direction="1" units="3"/>
   </shedule>
  </yard>
 </controldata>
When train 104 leaves, it makes the train behind it and the train behind that also leave and I'm not entirely sure why it does that

Re: Activity Help

Posted: 11 Dec 2021, 22:11
by Sjoerd
What type of trains are you using?

Re: Activity Help

Posted: 12 Dec 2021, 00:53
by perfecttrains1000
5700 in 3 unit formations

Re: Activity Help

Posted: 12 Dec 2021, 11:47
by Sjoerd
Perhaps you need to provide the *.act file (put it in a zip-file and upload as attachment) so we can try it and perhaps find the problem.

Re: Activity Help

Posted: 12 Dec 2021, 14:19
by perfecttrains1000
Here you go:

The activity is a bit off an odd one with a single track running between Noordvliet and Nobelplein so the service is running limited between NDP and Panbos but other than that, its a reasonably WIP activity with the timetable only getting up to 8am until i extend the timetables to the end.
SingleLineRunningM1Activity.zip
The ZIP including Timetable, Ctd and Act files
(38.85 KiB) Downloaded 138 times

Re: Activity Help

Posted: 12 Dec 2021, 20:20
by Sjoerd
You placed 54 units type RET 5700 in the simulator. That series only consists of the 5701-5722. So when loading, I see a lot of trains all numbered 5712 in the depot. The system can't handle that; each unit needs to have a unique number. So the depot has determined it wants to send the train out with car number 5712 as the front unit... But the train behind it also has that number.... so it sends out that one too. And the one behind that... also the same number.....

These are the SG3 trains; make sure you don't place too many trains of each type to avoid more then one train getting the same car number.
5501-5522
5601-5642
5701-5722

Re: Activity Help

Posted: 12 Dec 2021, 21:15
by perfecttrains1000
Ohhh, i see, thanks, I'll make that change now