Page 1 of 1

flash games question

PostPosted: Wed Sep 01, 2010 7:48 am
by Spleshmen
if i want to change some values in a flash game (i am playng them in my browser) and i cant find the addresses to the values using the data type search what other methodes are there?thanks

Re: flash games question

PostPosted: Thu Sep 02, 2010 1:53 am
by L. Spiro
Either use doubles or shift the search value left by 3.

For example, if the value you see on your screen is 67:
#1: Search for type double; the value you type into the box being “67”.
#2: Or search for type unsigned long; the value you type into the box being “67 << 3.


L. Spiro

Re: flash games question

PostPosted: Thu Sep 02, 2010 4:52 am
by Spleshmen
nothing workt here is the game i am tryng to "hack" http://armorgames.com/play/6804/pixel-purge , i tryd for the skill points and the pixel amount but nothing.
the << 3 is like multyplyng by 8 the value no? i am shifting 3 bits to the left correct? just like in C no?

Re: flash games question

PostPosted: Thu Sep 02, 2010 6:50 am
by L. Spiro
Correct. Although the result is the same, shifting is more “correct” than multiplying, since the original source code for Flash shifts, not multiplies.
If it failed then you loaded a wrong executable. It works in Internet Explorer by searching for the exact value you see on the screen. I could have submitted a result with over 2,000,000,000 points.


L. Spiro

Re: flash games question

PostPosted: Thu Sep 02, 2010 7:24 am
by Spleshmen
so there is no sure way to find a address in a flash game.if a game displays a health bar but no number or something to tell you the amount of health you got ,is there any way to find the address to the health ? thanks

Re: flash games question

PostPosted: Thu Sep 02, 2010 3:09 pm
by L. Spiro
I don’t see what the problem is; I already found the value in that game.


L. Spiro

Re: flash games question

PostPosted: Thu Sep 02, 2010 5:14 pm
by Spleshmen
value for the skills ? for the pixles in the right? did you use your first method or second one?