Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Can't freez or change the value

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
mr.dj25
How do I cheat?
Reputation: 0

Joined: 06 Jun 2015
Posts: 3

PostPosted: Sat Jun 06, 2015 7:52 pm    Post subject: Can't freez or change the value Reply with quote

Hello guys,

Before I start I would like to say that I have search on the forums but I still cant fix the problem.

I am trying to hack some activation points(money) in Wargame:Red dragon, I found the values(4 addresses) but each time I change them they keep changing back. The game does not require internet connection. I also tried to freeze the values but it doesn't help. In game the value keep changing between the frozen value and the actual value.
I saw in the other post that the value maybe encrypted, if so how can I decrypt and change the value?

Ps, there is a trainer for this game in this forum but it is outdated and doesn't work.

Thank you.
Back to top
View user's profile Send private message
Alamer99
Expert Cheater
Reputation: 1

Joined: 04 Jan 2015
Posts: 136

PostPosted: Sat Jun 06, 2015 9:24 pm    Post subject: Re: Can't freez or change the value Reply with quote

do another search (unknown initial/increased/decreased/changed/unchanged) maybe you just found the display value not the actual value if it gave you the same results find what access/writes on the value
Back to top
View user's profile Send private message
mr.dj25
How do I cheat?
Reputation: 0

Joined: 06 Jun 2015
Posts: 3

PostPosted: Sun Jun 07, 2015 6:52 am    Post subject: Re: Can't freez or change the value Reply with quote

[quote="Alamer99"]do another search (unknown initial/increased/decreased/changed/unchanged) maybe you just found the display value not the actual value if it gave you the same results find what access/writes on the value[/quote]

Hey, thanks for the reply. I tried the decreasing method and I got 3 values, looks like their all display values.

okay I did the access/write thing, from the 3 values only two have access and none of the come up with write.

So from here are the access codes from the first address:

[b]#1-01189153 - 89 48 04 - mov [eax+04],ecx [/b]

0118914E - C3 - ret
0118914F - 8B 4C 24 10 - mov ecx,[esp+10]
01189153 - 89 48 04 - mov [eax+04],ecx <<
01189156 - EB D8 - jmp "wargame3.Eugen::TPoolAllocation<Eugen::TCompressedRepere3DComplement,Eugen::Domain::TMemoryDomainTag>::_sPoolStorage"+FCB0
01189158 - 5F - pop edi

EAX=593E8200
EBX=00000000
ECX=000004BA
EDX=00000001
ESI=2FF5A410
EDI=2FF5A418
ESP=0018F4BC
EBP=344226D0
EIP=01189156





[b]#2 -01188BE9 - 8B 70 04 - mov esi,[eax+04][/b]


01188BE5 - 8B 51 2C - mov edx,[ecx+2C]
01188BE8 - 56 - push esi
01188BE9 - 8B 70 04 - mov esi,[eax+04] <<
01188BEC - 8B 41 28 - mov eax,[ecx+28]
01188BEF - C1 E2 04 - shl edx,04

EAX=593E8200
EBX=4CCA6FC0
ECX=344226D0
EDX=00000000
ESI=000004BA
EDI=00000000
ESP=0018F444
EBP=4ABDD49C
EIP=01188BEC




second address:

[b]1#-011890E0 - 8B 46 04 - mov eax,[esi+04][/b]


011890DB - EB 03 - jmp "wargame3.Eugen::TPoolAllocation<Eugen::TCompressedRepere3DComplement,Eugen::Domain::TMemoryDomainTag>::_sPoolStorage"+FC60
011890DD - 8D 49 00 - lea ecx,[ecx+00]
011890E0 - 8B 46 04 - mov eax,[esi+04] <<
011890E3 - 8B 55 20 - mov edx,[ebp+20]
011890E6 - 8B 1E - mov ebx,[esi]

EAX=000004BA
EBX=3FEE3C90
ECX=3FEE3C90
EDX=00000001
ESI=2FF5A410
EDI=2FF5A418
ESP=0018F4BC
EBP=344226D0
EIP=011890E3


these are the codes with the detail which I can't understand xX

So, now what do I do exactly? :P


thanks
Back to top
View user's profile Send private message
Alamer99
Expert Cheater
Reputation: 1

Joined: 04 Jan 2015
Posts: 136

PostPosted: Sun Jun 07, 2015 11:34 am    Post subject: Re: Can't freez or change the value Reply with quote

mr.dj25 wrote:
I tried the decreasing method and I got 3 values, looks like their all display values


Then Do Unknown Initial/Changed/Unchanged Maybe The Game is Using Some Sort Of Value Encryption

Quote:
these are the codes with the detail which I can't understand xX
So, now what do I do exactly? Razz


Do Code Injecting

1st Address
Code:
mov ecx,#9999999
mov [eax+04],ecx


2nd Address
Code:
mov [eax+04],#9999999
mov esi,[eax+04]


3rd Address
Code:
mov [esi+04],#9999999
mov eax,[esi+04]


Most Probably It Will Work Since Its Display Value But, There Is No Problem In Trying

If You Want To Learn About Code Injecting Do CE Tutorial Step 5 & Step 7
Back to top
View user's profile Send private message
mr.dj25
How do I cheat?
Reputation: 0

Joined: 06 Jun 2015
Posts: 3

PostPosted: Sun Jun 07, 2015 12:45 pm    Post subject: Re: Can't freez or change the value Reply with quote

[quote="Alamer99"][quote="mr.dj25"] I tried the decreasing method and I got 3 values, looks like their all display values[/quote]

Then Do Unknown Initial/Changed/Unchanged Maybe The Game is Using Some Sort Of Value Encryption

[quote]these are the codes with the detail which I can't understand xX
So, now what do I do exactly? :P[/quote]

Do Code Injecting

1st Address
[code]mov ecx,#9999999
mov [eax+04],ecx[/code]

2nd Address
[code]mov [eax+04],#9999999
mov esi,[eax+04] [/code]

3rd Address
[code]mov [esi+04],#9999999
mov eax,[esi+04][/code]

[b]Most Probably It Will Work Since Its[/b] [u][b]Display Value[/b][/u] But, There Is No Problem In Trying

If You Want To Learn About Code Injecting Do CE Tutorial Step 5 & Step 7[/quote]


Hey man, THANKS A BUNCH I really appreciate it.

Sometimes when I search I got more codes I dont know why lol.

Anyway, I don't know what I really did but it worked:D

Unfortunately the game freezes sometimes.

I will try to work on it and learn about the code injection after I finish my exams, for now I better study -.-

thanks again.
Back to top
View user's profile Send private message
Alamer99
Expert Cheater
Reputation: 1

Joined: 04 Jan 2015
Posts: 136

PostPosted: Sun Jun 07, 2015 1:02 pm    Post subject: Reply with quote

You're Welcome, Glad I Helped You Smile
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites