Action0/Vehicles/Ships
Introduction
Defining properties of ships.
Properties
Number | Size | Version | Description |
---|---|---|---|
08 | B | 0.6 2.0 | Sprite (FF for new graphics) |
09 | B | 0.6 2.0 | Refittable (0 no, 1 yes) |
0A | B | 0.6 2.0 | Cost factor |
0B | B | 0.6 2.0 | Speed in mph*3.2 |
0C | B | 0.6 2.0 | Cargo type, see CargoTypes GRFv≤7 For GRF version 7 and below: Type B 'cargo slot' |
0D | W | 0.6 2.0 | Capacity |
0F | B | 0.6 2.0 | Running cost factor |
10 | B | 0.6 2.0 | Sound effect type (4=cargo ship, 5=passenger ship) 1.6 Since OpenTTD r27507 also custom sound effects from Action11 are allowed here. |
11 | D | 0.6 2.0 GRFv≥1 | Bit mask of cargo types available for refitting, see column 2 (bit values) in CargoTypes |
12 | B | 0.6 2.5 GRFv≥6 | Callback flags bit mask, see below |
13 | B | 0.6 2.5 | Refit cost, using 1/32 of the default refit cost base |
14 | B | 1.2 2.5 | Ocean speed fraction, sets fraction of top speed available in the ocean; e.g. 00=100%, 80=50%, FF=0.4% |
15 | B | 1.2 2.5 | Canal speed fraction, same as above but for canals and rivers |
16 | B | 0.6 2.5 | Retire vehicle early, this many years before the end of phase 2 (see Action0General) |
17 | B | 0.6 2.5 | Miscellaneous vehicle flags |
18 | W | 0.6 2.5 | Refittable cargo classes, see train prop. 28 |
19 | W | 0.6 2.5 | Non-refittable cargo classes, see train prop. 29 |
1A | D | 0.6 2.6 | Long format introduction date |
1B | B* | 0.7 | Sort the purchase list |
1C | B | 1.1 | Visual effect |
1D | W | 1.2 | Custom cargo ageing period |
1E | B n*B | 1.2 | List of always refittable cargo types, see train property 2C |
1F | B n*B | 1.2 | List of never refittable cargo types, see train property 2D |
20 | W | 13 | Vehicle variant group, see train property 2F |
21 | D | 13 | Extra flags, see train property 30 |
22 | B | 14 | Additional callback flags bit mask, see below |
Descriptions
Callbacks (12, 22)
For ships, the following callbacks have to be enabled by setting the corresponding bit in properties 12 and 22 (certain other, not as frequently used callbacks are available without setting a bit here):
Bit is the bit you have to set, you do this by adding all the values for all the bits. Variable 0C value is what variable 0C will be set to, for checking it in the VarAction2 for callbacks.
Refit cost (13)
Refit cost, using 1/32 of the default refit cost base. This property can be overridden by callback 15E.
1.2 If the refit cost factor is set to zero and bit 4 of the miscellaneous flags (17) is set, auto-refitting is allowed.
Miscellaneous flags (17)
This is a bit mask, with the following bits:
Bit | Value | Meaning |
---|---|---|
0 | 1 | reserved, do not use |
1 | 2 | Uses two company colors |
2 | 4 | reserved, do not use |
3 | 8 | reserved, do not use |
4 | 10 | 1.2 Auto-refitting is enabled for refits where callback 15E allows it or prop 13 specifies zero cost. |
5 | 20 | 1.2 Use cargo multiplier for default cargo. See page about vehicle refitting. |
6 | 40 | 1.3 Disable breakdown smoke effect. |
7 | 80 | 1.7 Compose vehicle from multiple sprites. |
Long format introduction date (1A)
Set the vehicle introduction date, in days since the year 0. This takes account of leap years; dividable by 4, but not 100 unless 400. A start date of 1920-01-01 is obtained with a value of 701265 (51 B3 0A 00). This property must be set after property 00 to take effect.
In TTDPatch, dates after 2044 will be limited to 2044.
Sort vehicle list (1B)
See sort vehicle list for trains for details.
Visual effect (1C)
See the equivalent train property for information about the meaning of all bits. There is no default effect for ships, therefore values of 00..0F will show no visual effect. Bit 7 (disable wagon power) currently has no meaning and should be left at 0.
Custom cargo ageing period (1D)
See custom cargo ageing period for trains for details.
Example
To be written