-
Notifications
You must be signed in to change notification settings - Fork 10
MISC information
Build ID is a hash of the game code. CheatVM uses this to identify the game code being the intended target. The way cheat code works requires the game being hacked to be exact binary image of what the hack was made for, no deviation even for a single bit can be allowed. Only on very rare occasion would a game with a different BID have cheat code compatibility.
Cheat code makes hack to game and the ill it made may not be immediately apparent. All cheat code have the possibility to damage your game in a unrecoverable(other than to delete the save and restart the game from the beginning) way. Cheat code makers may not do that much of testing but thanks to channel of feedback(if they exist) there may be reasonable amount of quality assurance. Pick your cheats with that in mind.
This will fool the CheatVM into executing code that wasn't intended for your game. This is like changing the label of medicine, it is just as senseless or full of malice. If you are changing the label and eating the medicine check in to a hospital first before doing so (make a backup of your game save and restore it immediately if nothing happens, bear in mind that if you didn't die it does not mean you are out of the woods). If you hate the game this much just delete it already!
A lot of fundamentals of a game don't change with updates. In fact most of the time only a very small percentage of the game code is changed. The way cheat code works is by using offsets and these offsets do change which of course will make cheat code invalid. To make the code work again the change in offset needs to found and corrected. Most of the time pointer code only have the first offset changed. This can be easily corrected by trying every starting point in main.(This is performed by Breeze when you try to add a invalid pointer code to bookmark and the results are added to bookmark, you can then look at them to see if some of them are good. Even if search needs to be performed again looking into the code will give ideas how they were made is the first place and if the original is still available learning from the existing code will be make creating them again very easy.