Game...

Jan 24, 2006 18:12

Hey guys, I found this to be an interesting game... the first attempted I did and got 14.359 seconds.... try it out and post here and be HONEST!

http://members.iinet.net.au/~pontipak/redsquare.html

ENJOY!

Leave a comment

cannonbull January 26 2006, 18:28:35 UTC
Here are my 3rd and 4th attempts...




Reply

rambonigga January 26 2006, 20:04:21 UTC
you know shawn... I was going to congratulate you, until you killed any credibility with the last 2 photos

Bite my brilliant ass you hacker!

Reply

cannonbull January 26 2006, 22:30:41 UTC
Well, the first two pictures are honest. The last two pictures are hacked. Yep, I simply changed the time value in the game before playing it again. The original formula was something like this...

function calctime() {var time = (endtime - starttime - 0)/1000; return time;}

I simply changed "1000" to "1".

function calctime() {var time = (endtime - starttime - 0)/1; return time;}

After getting the 3rd time, I decided to go further... instead of dividing the rate by 1, I multiplied the rate by 123456789.

function calctime() {var time = (endtime - starttime - 0)*123456789; return time;}

Ta da! ;)

Reply


Leave a comment

Up