This should, in principle, be comparatively simple.
There is an old DOS game by DC True called Shadow President.
It simulates, amongst other things, the economies of the nations of the world.
It stores GDP Growth as a Floating Point or Double number. A Percentage.
At the end of each game year it calculates how much each nations' GDP increases.
It always resets all percentages greater than 5% to 5%.
That last part is what I want to hack.
Logically there must be:
a) A binary expression approximating: "if a > 0.05 then a = 0.05".
b) A constant in one of the text data files that has hitherto eluded my
attempts at discovering it.
I want to sweep for a) through the binary EXE. How would I approach this?
There is an old DOS game by DC True called Shadow President.
It simulates, amongst other things, the economies of the nations of the world.
It stores GDP Growth as a Floating Point or Double number. A Percentage.
At the end of each game year it calculates how much each nations' GDP increases.
It always resets all percentages greater than 5% to 5%.
That last part is what I want to hack.
Logically there must be:
a) A binary expression approximating: "if a > 0.05 then a = 0.05".
b) A constant in one of the text data files that has hitherto eluded my
attempts at discovering it.
I want to sweep for a) through the binary EXE. How would I approach this?