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;}
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