My first attempt was .71 seconds. However, that doesn't count since the game automatically starts when you click ANYWHERE on the page. I was attempting to click on the scroll bar so I could scroll down. However, I clicked just a pixel or two to the left of the scroll bar and the game started. Suddenly, this message popped up saying ".71 seconds" and I'm like, WTF!?
So, I tried again... without clicking anywhere else except on the red box. Finally!
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;}
Comments 12
Reply
Reply
Reply
I am sure you can all figure out "why"?
Reply
I am doing brilliantly
and I have witnesses
Reply
Reply
and i have recently gotten as high as 24.something.. this game is addicting
Reply
So, I tried again... without clicking anywhere else except on the red box. Finally!
( ... )
Reply
( ... )
Reply
( ... )
Reply
Bite my brilliant ass you hacker!
Reply
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