Beta 3.12 M4 Normal Service - Wrong door opened

Post bug reports here. Please only post bug reports here, no questions or general discussions.

Moderator: senjer

Post Reply
tyteen4a03
Posts: 27
Joined: 05 Feb 2017, 00:21

Beta 3.12 M4 Normal Service - Wrong door opened

Post 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).
User avatar
Jim2016
Posts: 890
Joined: 04 Jan 2016, 14:42

Re: Beta 3.12 M4 Normal Service - Wrong door opened

Post 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
Post Reply