Arglaar
Nitpicking Bastard
According to the Save game schema thread in the Ask Volition forum, money is stored as: int32 money on hand in penniesIt turns out that ##,###,### gives a positive value, just not the value I typed in. The end result was plenty for me, but it might be good to know why it isn't giving a correct 1:1 match.
If we break that down:
Largest value for a 32 bit (signed) integer: 2,147,483,647
Convert that from pennies into dollars: 21,474,836.47
That means, the largest amount of money you can hold at one time is 21.474 million dollars.
If you went larger than that, it will roll over to negative, and then back around to positive..
0 -> 21
-21 -> 0
0 -> 21
Just give yourself 10 million and you'll have more than enough money to buy everything in the game.