lol. I think I found a new way to get the answer. No playing and decompiling involved at all.
Just right click the flash game and then click on 'Play' in the context menu and you will get to the next level.
It was way too easy this way
I solved about 8 - 10 levels properly, but I have a touch screen which makes this game much easier - you can warp around, and don't need a steady hand (just accurate clicks).
i got to level 4 or 5 without cheating
ran the swf through a decompiler, and only there figured out that the standard context menu 'play' entry would just kick me to the next level
There exist another method for playing it easier:
Just follow the direct link http://www.hacker.org/challenge/misc/maeda.swf, then press the "F11"-key for maximizing the screen. Now you get much more "room" for your mouse
But only half as funny as the "play"-context menu possibility
i did it awhile ago, but didn't see anyone post they did it this way. my flash decompiler is unregistered so it only lets me view it but not edit it. so i just checked the script for where it gives you the answer then just make a javascript to give me the answer.
<script language="javascript" type="text/javascript">
{
xx = 18;
aa = 17;
xx = xx * 29 * aa;
xx = xx + (5423 + aa);
xx = xx * 11;
xx = xx - 77 * aa;
document.write(xx);
}
</script>
gfoot wrote:I solved about 8 - 10 levels properly, but I have a touch screen which makes this game much easier - you can warp around, and don't need a steady hand (just accurate clicks).
You dont need a touch screen to wrap around . Just hold left click...
@bottomy: yep, i first tried it with the unregistered version of Sothink, but (at least the latest version) only the first 5 action scripts are shown. So you usually need the registered one to solve it. Good that we bought an official version in 2006, and even better, that i found this one on my disc *puuh*
I didn't have any fancy decompilers at hand, but FLASM did the trick: I just located the conditional branch in the bytecode which jumps over the piece of code displaying the answer, removed it, and recompiled – problem solved.[/url]