Page 1 of 1

Beta 3.12 M4 Normal Service - Wrong door opened

Posted: 18 Oct 2017, 22:55
by tyteen4a03
When you start the M4 Normal Service in Rijndam 2020, the door on the right hand side is opened (facing the emergency access) instead of the left hand side (platform).

Re: Beta 3.12 M4 Normal Service - Wrong door opened

Posted: 19 Oct 2017, 19:21
by Jim2016
Probably, something wrong happens there, and while in the activity file, it writes "doorsleft", the right-side doors are open.

1. Go to this folder C:\Program Files\Metro Simulator\Data\Rijndam2020\Activities
2. Open the "M4 Normal service.act" file with Notepad
3. Find this section:

Code: Select all

<consist start="TRD1">
   <train pack="RET" file="5700.xml" number="5704">
    <cab id="0" enabled="false" ai="403"/>
    <cab id="0" mycontrol="true" />
    <doorsleft open="true"/>
   </train>
   <train pack="RET" file="5700.xml" number="5705">
    <doorsleft open="true"/>
   </train>
   <train pack="RET" file="5700.xml" number="5706">
    <doorsright open="true"/>
   </train>
  </consist>
4. Replace it with this:

Code: Select all

<consist start="TRD1">
   <train pack="RET" file="5700.xml" number="5704">
    <cab id="0" enabled="false" ai="403"/>
    <cab id="0" mycontrol="true" />
    <doorsright open="true"/>
   </train>
   <train pack="RET" file="5700.xml" number="5705">
    <doorsright open="true"/>
   </train>
   <train pack="RET" file="5700.xml" number="5706">
    <doorsright open="true"/>
   </train>
  </consist>
5. Save it
6. Close the file and you're done