View previous topic :: View next topic |
Author |
Message |
rog9001 Expert Cheater
Reputation: 2
Joined: 22 Dec 2015 Posts: 214 Location: Jupiter
|
Posted: Mon Apr 03, 2017 12:21 pm Post subject: What to do about this? |
|
|
so I was looking for the fire rate of a gun and what I found was this instruction:
Code: |
mov eax,[edx*4+WindowGameGunz.exe+15D2878]
|
what can I do with this? I would like it so in[edx*4+WindowGameGunz.exe+15D2878] there would be 9999 but doing:
Code: |
mov [edx*4+WindowGameGunz.exe+15D2878],#9999
or
push ecx
mov ecx,#9999
mov [edx*4+WindowGameGunz.exe+15D2878],ecx
pop ecx
or
push ecx
mov ecx,#9999
cvtsi2ss xmm7,ecx
movss [edx*4+WindowGameGunz.exe+15D2878],xmm7
pop ecx
|
doesn't work. What do I do?
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Mon Apr 03, 2017 12:53 pm Post subject: |
|
|
Disable show module addresses/symbols in Mem viewer then copy the instruction.
I think it's bugging out cause of the symbol. If that doesn't work, you can individually do the arithmetic like
mov eax, WindowGameGunz.exe+15D2878
edx*4+eax etc.
_________________
|
|
Back to top |
|
 |
rog9001 Expert Cheater
Reputation: 2
Joined: 22 Dec 2015 Posts: 214 Location: Jupiter
|
Posted: Mon Apr 03, 2017 12:56 pm Post subject: |
|
|
STN wrote: | Disable show module addresses/symbols in Mem viewer then copy the instruction.
I think it's bugging out cause of the symbol. If that doesn't work, you can individually do the arithmetic like
mov eax, WindowGameGunz.exe+15D2878
edx*4+eax etc. |
oh ok. Thanks for the help.
|
|
Back to top |
|
 |
|