Page 1 of 1

How to swap out Couple Types

Unread postPosted: Thu May 26, 2011 12:35 pm
by SithMurcielago
Say you want to which out couple types with one that was provided with a train. How do you go about step by step in doing that?

Thanks in advance!

Re: How to swap out Couple Types

Unread postPosted: Thu May 26, 2011 2:11 pm
by ATSF3814
Looked around in one of the bin files and found this:

<FrontCouplingBlueprintID>
<iBlueprintLibrary-cAbsoluteBlueprintID>
<BlueprintSetID>
<iBlueprintLibrary-cBlueprintSetID>
<Provider d:type="cDeltaString">Kuju</Provider>
<Product d:type="cDeltaString">RailSimulatorUS</Product>
</iBlueprintLibrary-cBlueprintSetID>
</BlueprintSetID>
<BlueprintID d:type="cDeltaString">RailVehicles\Couplings\Buckeye\Type-E\buckeye_type_e_coupling.xml</BlueprintID>
</iBlueprintLibrary-cAbsoluteBlueprintID>
</FrontCouplingBlueprintID>
<RearCouplingBlueprintID>
<iBlueprintLibrary-cAbsoluteBlueprintID>
<BlueprintSetID>
<iBlueprintLibrary-cBlueprintSetID>
<Provider d:type="cDeltaString">Kuju</Provider>
<Product d:type="cDeltaString">RailSimulatorUS</Product>
</iBlueprintLibrary-cBlueprintSetID>
</BlueprintSetID>
<BlueprintID d:type="cDeltaString">RailVehicles\Couplings\Buckeye\Type-E\buckeye_type_e_coupling.xml</BlueprintID>
</iBlueprintLibrary-cAbsoluteBlueprintID>
</RearCouplingBlueprintID>

So my guess is you just need to edit those two sections so they point at the coupler you want the car to use.

Re: How to swap out Couple Types

Unread postPosted: Thu May 26, 2011 5:41 pm
by SithMurcielago
Thanks I guess I have to play around with this.

Re: How to swap out Couple Types

Unread postPosted: Thu May 26, 2011 6:54 pm
by MadMike1024
stmbuzz wrote:Thanks I guess I have to play around with this.


Just noticed your post. What are you wanting to do? Swap types or makers?

Re: How to swap out Couple Types

Unread postPosted: Thu May 26, 2011 9:41 pm
by MaineLines
You need to make sure the Provider, Product, and BlueprintID reference the coupler you wish to use.

Re: How to swap out Couple Types

Unread postPosted: Fri May 27, 2011 1:38 am
by SithMurcielago

Just noticed your post. What are you wanting to do? Swap types or makers?


What I want to learn how to do is which out Couplers for different ones like a Bar (The one used in German Stock) for Type E.

@Mainelines:

Don't you have to position the couplers and their pivot points to make sure they work right? I hope it is as easy as doing it in MSTS.

Re: How to swap out Couple Types

Unread postPosted: Fri May 27, 2011 4:14 am
by MadMike1024
What I want to learn how to do is which out Couplers for different ones like a Bar (The one used in German Stock) for Type E.

@Mainelines:

Don't you have to position the couplers and their pivot points to make sure they work right? I hope it is as easy as doing it in MSTS.


You'll need RW-Tools to edit the .bin file for your subject.

If the builders followed the standard, most coupler pivot points are the same. If you were trying to change the rear coupler to a bar type, you need to find out the maker, (i.e. Britkits) and the location folder(i.e. EMD).

Here's how it would look with those examples:

Original -
Code: Select all
<RearCouplingBlueprintID>
     <iBlueprintLibrary-cAbsoluteBlueprintID>
         <BlueprintSetID>
                <iBlueprintLibrary-cBlueprintSetID>
                      <Provider d:type="cDeltaString">Kuju</Provider>
                      <Product d:type="cDeltaString">RailSimulatorUS</Product>
               </iBlueprintLibrary-cBlueprintSetID>
       </BlueprintSetID>
       <BlueprintID d:type="cDeltaString">RailVehicles\Couplings\Buckeye\Type-E\buckeye_type_e_coupling.xml</BlueprintID>
    </iBlueprintLibrary-cAbsoluteBlueprintID>
</RearCouplingBlueprintID>


Modified-
Code: Select all
<RearCouplingBlueprintID>
     <iBlueprintLibrary-cAbsoluteBlueprintID>
         <BlueprintSetID>
                <iBlueprintLibrary-cBlueprintSetID>
                      <Provider d:type="cDeltaString">Britkits</Provider>
                      <Product d:type="cDeltaString">EMD</Product>
               </iBlueprintLibrary-cBlueprintSetID>
       </BlueprintSetID>
       <BlueprintID d:type="cDeltaString">\Buckeye\Bar_Coupling.xml</BlueprintID>
    </iBlueprintLibrary-cAbsoluteBlueprintID>
</RearCouplingBlueprintID>


This will put an invisible bar coupling on your wagon or locomotive. It will have to have a matching bar coupler on another locomotive or wagon to connect properly, and once in game, it will not uncouple. I used the bar couplers for the connection between the FTa and FTb EMD locos because they were originally built that way.

Re: How to swap out Couple Types

Unread postPosted: Fri May 27, 2011 1:06 pm
by SithMurcielago
Thanks for your help Something made easy.