Page 1 of 1

[Help needed] trying to remove float limit for stats in Wrestling Empire

Posted: Wed May 01, 2024 3:07 pm
by Ambersando
As the title says, i want to remove the float limit in Wrestling Empire (which is 100). When i attempt to go past it, it instantly sets it to 99. I tried checking what access the code/writes it, but its just all movss

Image

Re: [Help needed] trying to remove float limit for stats in Wrestling Empire

Posted: Wed May 08, 2024 1:25 am
by Send
Ambersando wrote:
Wed May 01, 2024 3:07 pm
As the title says, i want to remove the float limit in Wrestling Empire (which is 100). When i attempt to go past it, it instantly sets it to 99. I tried checking what access the code/writes it, but its just all movss

Image
The instrucitons writing `movss xmm#,[registar+offset]` is the code that writes to the value.
xmm registrars typically hold floats (and sometimes doubles)

You create a script, write a value in to xmm#.

ie:

newmem:
movs xmm0,[newvalue]

code:

newvalue:
dd (float)100000.0

Adding points beyond max may not even improve your character.