1. Always save before modifying files.
2. If the ship has 0 slots for one of the types of weapons. DO NOT CHANGE it – otherwise the game will crash.
3. It is advisable to change the parameters of the ship before buying it from the store.
Today we will analyze the file Ships.bin for components.
For example, I will use several tables taken from the original.
Based on them, you yourself can check them, find and change any ship for yourself.
Ship: Dace (ID 4)
Hex address in file | Order | Hex value | Dec (Typical) value | Description |
0090 | 1 | 00 00 00 04 | 4 | Ship ID |
0094 | 2 | 00 00 00 AA | 170 | Protection |
0098 | 3 | 00 00 00 26 | 38 | Cargo compartment |
009a | 4 | 00 03 98 50 | 235’600 | Price |
00a0 | five | 00 00 00 04 | 4 | Main guns |
00a4 | 6 | 00 00 00 01 | 1 | Heavy shells (rockets) |
00a8 | 7 | 00 00 00 00 | 0 | Turrets |
00aa | 8 | 00 00 00 05 | five | Equipment |
00b0 | nine | 00 00 00 A2 | 162 | Controllability |
Ship: Salvehn (ID 31)
Hex address in file | Order | Hex value | Dec (Typical) value | Description |
045a | 1 | 00 00 00 1F | 31 | Ship ID |
0460 | 2 | 00 00 00 9C | 156 | Protection |
0464 | 3 | 00 00 00 6E | 110 | Cargo compartment |
0468 | 4 | 00 01 71 24 | 95’268 | Price |
046a | five | 00 00 00 02 | 2 | Main guns |
0470 | 6 | 00 00 00 01 | 1 | Heavy shells (rockets) |
0474 | 7 | 00 00 00 01 | 1 | Turrets |
0478 | 8 | 00 00 00 06 | 6 | Equipment |
047a | nine | 00 00 00 66 | 102 | Controllability |
The easiest way to search for a ship is in a file Ships.bin by the values of Protection and Cargo compartment.
For example in a ship Salvehn – to find it without knowing the specific address (1st column). You need to translate the values that you see in the game in the form hex (Defense) 156 => 9C and (Cargo bay) 110 => 6E. Now it is easy to find sequentially in hex “00 00 00 9C 00 00 00 6E”. Most likely it will be the only one in the entire file. Now we change the values. For example, the Defense is 55 and the Cargo compartment is 250 and we get the following sequence “00 00 00 37 00 00 00 fa”.
P.S. Converting numbers from HEX to regular ones and vice versa – you can use the windows calculator by switching to the “programmer” mode or by pressing alt + 3.