Search found 2 matches

by mjb
Wed Mar 09, 2011 12:38 pm
Forum: Challenges Solved
Topic: lotsa dots
Replies: 26
Views: 2175

I just solved it with a little PHP script: <?php $im = imagecreatefrompng('http://www.hacker.org/challenge/misc/stars.php'); $sol = ""; for($i = 0; $i < 10; $i++) { $string = ""; for($j = 0; $j < 8; $j++) { $string =$string.((imagecolorat($im, $j*16 + 8 , $i*16 + 8) == 14651692)?...
by mjb
Thu Feb 17, 2011 1:25 pm
Forum: Challenges Solved
Topic: Maeda Path
Replies: 20
Views: 1848

i wrote an bot for solving that problem.

The Software made screenshot and analysed the pixel colors around the current Mousepointerposition. Depending on the color i made the MousePointers position jump.
So my bot played the game for me.