Logo Lakies Website
Nfo Tutorials - Train Refitting: The Basics
Train Refitting - The Basics


This Tutorial will lead you through the basic concepts of making a wagon refittable.

The only things you need to change are in the action0 of the vehicle you want changing.

Add the property 1C, next put a byte value (a number upto 255 in hex). This is a factor to how much the refit will cost, it uses half the price of the vehicle as a base.

Next Part is to add the Property 1D which should be followed by a D-word (4 bytes). The following link is to the values for cargo types (Look at Coloum 2).
TTDpatch Wiki (Note these values are already in hex form)

You add the values you want, and put them in little endian form. (smallest to largest. eg. "1000" becomes "00 10 00 00")

// This would be an example of what you might have.
// white - Normal Action0
// Blue - Refit Factor Property and value
// Purple - Refit Cargo Types
// Yellow - Refit value for "Mail", "Goods" and "Valuables"
// Mail = 4, Goods = 20, Valuables = 400
// Thefore All of them is 424
2 * 18    00 00 05 01 1A 00 00 00 06 01 09 B4 00 0B FD 01 12 FD 1C 10 1D 24 04 00 00

// Red - is for errors (commonly made btw)
// For example, there are now 25 bytes not 18
// and 7 Properties not 5
// So it should be...
// Green - Fixed bytes
2 * 25    00 00 07 01 1A 00 00 00 06 01 09 B4 00 0B FD 01 12 FD 1C 10 1D 24 04 00 00

Well Done, You have just added refitting to a train.

Hosted By Owen Rudge