Monster Hunter Freedom Unite [USA]
|
05-07-2021, 02:10 AM
![]() |
|||
|
|||
RE: Monster Hunter Freedom Unite [USA]
(05-04-2021 01:47 AM)maunisphiehouse Wrote: Does anyone know how to edit TL;DR: Here you go! Code: _C0 Cat Attack 200 Oh gods, I spent so much time trying to detangle this with trial and error and it suddenly dawned on me what kind of data I as looking at x__x The original code is essentially modifying the exponent and top byte of the significand of a binary32 float (obviously! jk, I've been working on a large library of software floats for the Z80 and I just finished up the binary32 routines so it is fresh in my mind). So with that knowledge: step 1, let's edit the full 4 bytes _C0 Max Cat Attack _L 0x212039A4 0x47250000 _C0 Max Cat Defense _L 0x212039A8 0x47250000 Now go to your favorite online binary32 ==> hex float converter (there are many online) and type in "200". You ought to see a hex string like: '0x43480000' So now modify your cheats: Code: _C0 Max Cat Attack And ta-da, you are now setting your cat's Attack and Defense to 200! I also appreciate this code as that 42240 number is obscene. Thanks for motivating me to delve into this cheat! For the adventurous, here is a short Python script to generate your very own Cat Attack and Cat Defense cheats: Code: import struct Code: cat(attack=200, defense=1337) Code: _C0 Cat Attack 200 I hope this all helps! Here are a few extra variants: Code: _C0 Cat Attack 100 |
|||
« Next Oldest | Next Newest »
|