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 find Green Addresses on Plant vs zombies pc!

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

Joined: 25 Jul 2017
Posts: 7
Location: ring0

PostPosted: Sun Aug 27, 2017 8:00 am    Post subject: Can't find Green Addresses on Plant vs zombies pc! Reply with quote

hey guys, i've got a f*****g problem... this is really weird.. i can't find a static address on this noob game "plant vs zombies for pc (Game of the year edition) steam version... i saw many videos using Cheat Engine and finding Base Address.. i've got no chance, i'm using Cheat Engine 6.5 now.

i also tried Pointer scan and it failed too... if you guys have an idea and could tell it to me i'll be glad!!thanks

-nb Evil or Very Mad
Back to top
View user's profile Send private message
OldCheatEngineUser
Whateven rank
Reputation: 20

Joined: 01 Feb 2016
Posts: 1587

PostPosted: Sun Aug 27, 2017 8:29 am    Post subject: Reply with quote

i made a cheat table in past, it had maybe 5 cheats tho.

anyway, here what i remember:

first dont attach to plants versus zombies goty editon.
because it have nothing except display values.

attach to popcapgame1.exe

sun -> 4 bytes

store cash -> 4 bytes (just add '0' to the number you got)
for example if you have 100 cash in store, search for 1000.
so in other words:
display value, multiplied by 10. equal first scan value.

no recharge -> float data type.

zombies health -> float or 4 byte i dont remember, i used it for one hit kill cheat.

plants shooting speed -> i dont remember how i found it.

for pointers, increase the offset value to 4096, and offset value max '7', even '6' can be good.
i hope it helps, enjoy.

_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
STN wrote:
i am a sweetheart.
Back to top
View user's profile Send private message Visit poster's website
nb37
How do I cheat?
Reputation: 0

Joined: 25 Jul 2017
Posts: 7
Location: ring0

PostPosted: Sun Aug 27, 2017 8:58 am    Post subject: Reply with quote

OldCheatEngineUser wrote:
i made a cheat table in past, it had maybe 5 cheats tho.

anyway, here what i remember:

first dont attach to plants versus zombies goty editon.
because it have nothing except display values.

attach to popcapgame1.exe

sun -> 4 bytes

store cash -> 4 bytes (just add '0' to the number you got)
for example if you have 100 cash in store, search for 1000.
so in other words:
display value, multiplied by 10. equal first scan value.

no recharge -> float data type.

zombies health -> float or 4 byte i dont remember, i used it for one hit kill cheat.

plants shooting speed -> i dont remember how i found it.

for pointers, increase the offset value to 4096, and offset value max '7', even '6' can be good.
i hope it helps, enjoy.


Thank you for those information, but seems that with CE 6.7 i can't select popcapgames1.exe i can only select the window that has display values, what you suggest to do with that?

About pointerscan i did what you said but after the first scan, when ireboot the game it shows 0 results... so cannot do scan pointer..

btw i found popcapgame1.exe within CE proessList..

Anyway i still can't get the F*****g green address!!....
Back to top
View user's profile Send private message
OldCheatEngineUser
Whateven rank
Reputation: 20

Joined: 01 Feb 2016
Posts: 1587

PostPosted: Sun Aug 27, 2017 9:40 am    Post subject: Reply with quote

yes, popcapcrap under process list.

about pointers, make sure you are doing everything in a proper way.

about green addresses, the game doesnt have static addresses for values.
but it do have them for pointers.

_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
STN wrote:
i am a sweetheart.
Back to top
View user's profile Send private message Visit poster's website
nb37
How do I cheat?
Reputation: 0

Joined: 25 Jul 2017
Posts: 7
Location: ring0

PostPosted: Sun Aug 27, 2017 10:12 am    Post subject: Reply with quote

OldCheatEngineUser wrote:
yes, popcapcrap under process list.

about pointers, make sure you are doing everything in a proper way.

about green addresses, the game doesnt have static addresses for values.
but it do have them for pointers.


yeah i think im doing it in a proper way since it's not the first time doing this should be good what im doing.. btw if you have them for pointer you can send me them for pm ?

you have also skype or something ?
Back to top
View user's profile Send private message
OldCheatEngineUser
Whateven rank
Reputation: 20

Joined: 01 Feb 2016
Posts: 1587

PostPosted: Sun Aug 27, 2017 12:17 pm    Post subject: Reply with quote

i dont keep pointer files, and i dont have any instant messaging software.
_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
STN wrote:
i am a sweetheart.
Back to top
View user's profile Send private message Visit poster's website
nb37
How do I cheat?
Reputation: 0

Joined: 25 Jul 2017
Posts: 7
Location: ring0

PostPosted: Sun Aug 27, 2017 12:19 pm    Post subject: Reply with quote

OldCheatEngineUser wrote:
i dont keep pointer files, and i dont have any instant messaging software.


Thank you anyway i'll find out them by myself, think i'm gonna use a pattern scan using a signature that will make my life easier..,
Back to top
View user's profile Send private message
OldCheatEngineUser
Whateven rank
Reputation: 20

Joined: 01 Feb 2016
Posts: 1587

PostPosted: Sun Aug 27, 2017 12:32 pm    Post subject: Reply with quote

yeah pleasure, but here is a technique to get the address without having a pointer:

assuming
Code:
mov [ebx+110],ecx

is writing to your address of whatever value

basically all what you have to do in a script is:

Code:
alloc(something,04)
registersymbol(something)

newmem:
push eax
lea eax,[ebx+110]
mov [something],eax
push eax

unregistersymbol(something)
dealloc(something)

then add "something" to your address-list as an address, and activate the script to get the address+value.

keep in mind:
if you chose the instruction that is writing to your address, then "something" wont be updated instantly when you activating the script for the first time.

you have to do some action first, otherwise use whats accessing the address constantly.

_________________
About Me;
I Use CE Since Version 1.X, And Still Learning How To Use It Well!
Jul 26, 2020
STN wrote:
i am a sweetheart.
Back to top
View user's profile Send private message Visit poster's website
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