Paris RATP MF67 / MP73 metro

General discussions

Moderator: senjer

User avatar
Citadis
Posts: 302
Joined: 11 Jul 2017, 12:14
Location: Grenoble, France
Contact:

Re: Paris RATP MF67 / MP73 metro

Post by Citadis »

Just tested this trains, and it works perfectly !
Just I see in the MF67 Auteuil this litle visual bug :
Imagehttps://postimg.cc/DWxXkrw1
Door is open but in fact no...
Happends in middle coach, in middle of train, between B and N coaches
Citadis : French Type of trams (yes, i'm french :) )
Sorry for my english but enjoy Metro Sim Beta !
Image
Sani1753
Posts: 14
Joined: 22 Jul 2017, 15:29

Re: Paris RATP MF67 / MP73 metro

Post by Sani1753 »

Is the mf77 is planned to be in the simulator soon ?
HexxOP
Posts: 89
Joined: 09 Jan 2019, 13:04

Re: Paris RATP MF67 / MP73 metro

Post by HexxOP »

Is the mf77 is planned to be in the simulator
Yes, probably.
soon ?
No, probably not.
HOY3
Posts: 129
Joined: 04 Mar 2014, 07:21
Location: Créteil, val de marne, 94000 france

Re: Paris RATP MF67 / MP73 metro

Post by HOY3 »

brozma wrote: 11 Apr 2021, 20:55 2nd: Power outage/Blackout - this causes train to go dark and train forcefully stops. Train doesn't respond to acceleration and few seconds later, the power goes back on and trains starts accelerating. This event can't cause a game over. This event can be simulated in metrosim in two ways, either by switching off the cabin by pressing the Shift + F4 and then re-enabling it by by pressing Ctrl + F4, or by deactivating 3rd rail shoes/lowering the pantos, flipping reverser to "reverse" position and ignoring the buzzer. To end simulating a blackout using by a 2nd method. just flip reverser back to "forward" and activate 3rd rail shoes/raise pantos
That's not realistic. In reality a "blackout" causes just the lost of almost all of the interior lights (there's still emergency lighting on battery) and in the cab, this simply causes the "current cut" warning light to come on, which requires the driver to apply emergency braking.

Also, I've got a problem with the activity "M3M2 Day.act", I cannot put on the MF67 (when I try to, only the empty map is loaded without any train or CTD.

Here's what I add to begin:

Code: Select all

 <consist start="A11">
   <train pack="AlstomMetro" file="MF67_4car_Auteuil.xml"/>
   </train>
  </consist>

  <consist start="A05">
   <train pack="AlstomMetro" file="MF67_5car_2008.xml"/>
   </train>
  </consist>

  <consist start="A06">
   <train pack="AlstomMetro" file="MF67_5car_2012.xml"/>
   </train>
  </consist>
HexxOP
Posts: 89
Joined: 09 Jan 2019, 13:04

Re: Paris RATP MF67 / MP73 metro

Post by HexxOP »

Hey, just a little syntax error, in xml, when you open a block, you have two possibilities :

- Either, you close the block on the same line with />, just like what you have here :

Code: Select all

<train pack="AlstomMetro" file="MF67_4car_Auteuil.xml"/>
(Basically, you open a <train> block and finish it right after.)


- Either, you can make it last on several lines and end up with </blockName>, like :

Code: Select all

<consist start="A11">
[stuff]
</consist>
(Here we open a <consist> block, put things into it and then, close it with </consist>.)


The mistake you're making here is to have both for the 'train' block, you're ending it up at the end of the line with /> and closing it again with </train>, so if I retake your code by removing the second close, I now have :

Code: Select all

 <consist start="A11">
   <train pack="AlstomMetro" file="MF67_4car_Auteuil.xml"/>
  </consist>

  <consist start="A05">
   <train pack="AlstomMetro" file="MF67_5car_2008.xml"/>
  </consist>

  <consist start="A06">
   <train pack="AlstomMetro" file="MF67_5car_2012.xml"/>
  </consist>
Post Reply