-
Notifications
You must be signed in to change notification settings - Fork 7
Home
John Sebastian Peterson edited this page Jan 3, 2017
·
26 revisions
The repo files are in https://www.dropbox.com/sh/vkz69zldyqfytxp/AADFfcQWtKJkZ8gkOnVZ8-fOa?dl=0
Patches are available in these formats
ArtMoney
- native emulator format if the emulator has a patch function
Download idadif with
sudo bash -c "curl http://stalkr.net/files/ida/idadif.py > /usr/local/bin/idadif.py"
sudo chmod +x /usr/local/bin/idadif.py
Apply a .dif with
idadif.py xinput1_3.dll xinput1_3.dif
Some variables are written often by the program (and therefore also read soon after they are written), f.e. the position in a racing game
Patch the position update function. This is done in
daytona2
scud
srally2
This is easier in an emulator that allow memory breakpoints, f.e. model3emu, because that allow finding the function
In ArtMoney setting "Options > General > Freeze time" to the lowest value "1 ms" work, f.e. in srally2, when
- it read the position (on finish) more than 1 ms after writing it
doesn't work when
- it read the position (on finish) less than 1 ms after writing it
- it read the position from a function rather than a variable