Node:Impossible Changes, Next:Other Tools, Previous:Future Plans, Up:Other Stuff
This is a list of things I'm regularly asked to do, but which are either impossible to do, or at least an awful lot of work:
Both stations and depots have an ID value that is stored in a single byte in memory. Because of this, the IDs can only go up to 255, allowing at most 256 stations or depots. For stations, a couple of the ID values have special meanings, so that only 250 stations are possible.
However, because they are stored in a byte, it is not possible to have more stations or depots than 255. It is all but impossible to change the ID to use a word value, which would be required to do that.
Changing the number of vehicles on the other hand was less difficult because they were already stored in a word value, which can take values up to 65535.