Page 1 of 1

New Activity

Posted: 09 Apr 2017, 02:25
by SimvlietLineC
I have made a new activity and I want to share it with you guys.

Re: New Activity

Posted: 09 Apr 2017, 13:29
by emil84
Thanks!

Re: New Activity

Posted: 09 Apr 2017, 13:56
by MP 85
I spotted a small error
Error.JPG
Error.JPG (131.44 KiB) Viewed 2574 times

Code: Select all

<consist start="SAP2">
   <train pack="RET" file="5500.xml"/>
   <train pack="RET" file="5500.xml">
    <cab id="0" enabled="true" ai="103"/>
   </train>
  </consist>
The cab is activated in the wrong place, It was necessary to move a code

Code: Select all

 <consist start="SAP2">
   <train pack="RET" file="5500.xml">
    <cab id="0" enabled="true" ai="103"/>
   <train pack="RET" file="5500.xml"/>
   </train>
  </consist>