Page 1 of 1

Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 12:28 am
by Cowtow
Hi there,

Im trying to get unlimited lives on a I wanna be the cat, but doing a direct search for the value hasnt given me much in the way of results. Using the "unknown value" and then searching for changed value has yielded a view results, that count upwards when i lose a live, but not in a consistent pattern, and most of them crash the game if i attempt to freeze them.

I narrowed down a few of them that might be it, and checked what wrote them, only to find that noping that out led to a crash. An example of what most of them look like would be:

Image

But ive honestly go no clue what to do from here. Does anyone have a suggestion?

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 3:14 am
by Acido
You're debugging the internal byte read/write function of the engine (Goggle V8 JavaScript engine) That is not a place you want to modify, or it will as you found out, crash. You should backtrace further to find out where the bytes came from.

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 3:53 am
by Blayde
Acido wrote:
Sun Dec 24, 2017 3:14 am
Goggle V8 JavaScript engine
You can't use the debugger for java games. (Ask DB :) )
Download Notepad++, download JSTool plug-in and edit game files.

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 3:55 am
by Cowtow
Acido wrote:
Sun Dec 24, 2017 3:14 am
You should backtrace further to find out where the bytes came from.
Im not sure how to go further than this, is there a tutorial i can use to learn how to do this?

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 3:58 am
by Blayde
Cowtow wrote:
Sun Dec 24, 2017 3:55 am
Im not sure how to go further than this, is there a tutorial i can use to learn how to do this?
Read my post.

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 4:02 am
by Cowtow
Blayde wrote:
Sun Dec 24, 2017 3:53 am
Acido wrote:
Sun Dec 24, 2017 3:14 am
Goggle V8 JavaScript engine
You can't use the debugger for java games. (Ask DB :) )
Download Notepad++, download JSTool plug-in and edit game files.
ill look into it :) thanks

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 4:04 am
by Blayde
Cowtow wrote:
Sun Dec 24, 2017 4:02 am
ill look into it :) thanks
No problem ;)

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 4:40 am
by Cowtow
Blayde wrote:
Sun Dec 24, 2017 4:04 am
Cowtow wrote:
Sun Dec 24, 2017 4:02 am
ill look into it :) thanks
No problem ;)
I hate to ask for more help.. but exactly what should i be doing next?
I followed your instructions and went to the game files, but upon closer inspection of the ones actually located in my program files (and appdata), i couldnt find anything that looked like it was a JavaScript or JSon related file. Im not sure if im just looking in the wrong place or if im not understanding the filetypes to be looking for.

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 4:59 am
by Blayde
Cowtow wrote:
Sun Dec 24, 2017 4:40 am
Im not sure if im just looking in the wrong place or if im not understanding the filetypes to be looking for.
You must search in game folder/dir for something like (folders) data, www, js etc.
Java is not "my lang" so i cannot tell you how to edit files.
It (maybe or not) looks like:
Image

Re: Hacking lives on "I wanna be the cat"

Posted: Sun Dec 24, 2017 5:08 am
by Cowtow
Thanks again for the quick reply! I think i found the issue and perhaps discovered that it its above my head (i guessed that java wasnt quite your thing when you started talking about java and JavaScript as the same thing ;).)

It appears that the game is made using a platform called node.js, a platform that allows for javascrpit (web) based applications to be run on your desktop as an exe. Problem is, with nw.js games, i dont think anyone has yet figured out how to just extract them, edit the information, and then recompile them that easily based on other semi-recent related topics:

viewtopic.php?t=4108
[Link]

Atleast, there isnt any info on it in cheat engines forums.
Thanks for the help again Blayde, i probably wouldve spent days on this without you :D