Only the topmost cheat works
|
04-06-2016, 07:16 PM
Post: #2
|
|||
|
|||
RE: Only the topmost cheat works
As for formatting, you're skipping/allowing 0x1D lines by first two checks in each cheat, this is incorrect since your cheats are much shorter, through both PPSSPP and PSP plugins would recognize that mistake and it wouldn't really break anything.
Problem is not with any of the cheats, but with your thinking. You're writing to the same addresses in every single of those "cheats" which naturally means only one of them will work when you have them all turned on. Normally that would mean only last could work, however in each of those cheats you also check same addresses for different values before writing anything which means only the cheat that matches the check could ever work doesn't matter if it's last, first or any of the middle ones, that's normal and means it's working as it should when first of the cheats matches the condition. So yeah the only problem in all of that is that you somehow made those cheats without understanding what you're doing and expect something impossible to happen. For cheats like that to ever work all at the same time it could only be possible if you're patching addresses that constantly change and that's really just a very poor cheat design. In such case you would have to check and write faster than the game can, you can do that by setting refresh rate to a very small value in ppsspp cheat menu(psp plugins should have similar option as well). Note however that if that works for your case or any of cheats you find on the net, that such solution is not a "fix" - refreshing cheats very fast might cause performance problems, freezes and other issues, both on real hardware and emulator. Cheats requiring that should never really be created in the first place, patching temporary variables is really worst mistake people do when starting to create cheats and never really required for anything. http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders! http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats, https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds. |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Only the topmost cheat works - nehonat - 04-06-2016, 04:43 PM
RE: Only the topmost cheat works - LunaMoo - 04-06-2016 07:16 PM
RE: Only the topmost cheat works - nehonat - 04-07-2016, 09:14 AM
RE: Only the topmost cheat works - LunaMoo - 04-07-2016, 10:37 PM
|