View Full Version : Count Down Clock on PS2 Mini-game?
VaderShake
2012-07-18, 08:52 AM
Sorry if this has been posted could not find it in search.
Many of us have seen the hex-clicking mini-PS2 game here: http://ps2hq.com/map/
Any idea about the countdown clock here?: http://ps2hq.com/
Just curious if it has been discussed or commented on or is affiliated with PS2 officially in anyway?
Thanks
tythefox
2012-07-18, 09:01 AM
This is in the source code of the "countdown page" :
//Planetside 2 beta date, calculated using precision quantum mechanic prediction (aka a pseudo random number generator)
//Add +1 to account for the Higby Boson effect
var days = Math.floor(Math.random() * 30) + 1;
var hours = Math.floor(Math.random() * 23) + 1;
var mins = Math.floor(Math.random() * 59) + 1;
time = moment();
time.add('days', days);
time.add('hours', hours);
time.add('minutes', mins);
createCookie('ps2-date', time.unix(), 999);
In other words, it's just a randomly generated time.
Its the coundown to full cgi trailer soe will release on 26th.
CountMeIn
2012-07-18, 09:59 AM
Sorry if this has been posted could not find it in search.
Many of us have seen the hex-clicking mini-PS2 game here: http://ps2hq.com/map/
Any idea about the countdown clock here?: http://ps2hq.com/
Just curious if it has been discussed or commented on or is affiliated with PS2 officially in anyway?
Thanks
Dude, it is fake, the one who made the mini-game said it personally on twitter that he was trolling..
It is simply an amateur trolling u guys.
VaderShake
2012-07-18, 10:06 AM
Dude, it is fake, the one who made the mini-game said it personally on twitter that he was trolling..
It is simply an amateur trolling u guys.
I did not see it on Twitter, that's why I asked, you never know with the internet. Just look at the BF4 leak last week on Origin, it was legit someone just failed to do their job. Things like this have been proven to be legit and fake in the past, so no harm in asking.
Thanks..
vBulletin® v3.8.7, Copyright ©2000-2024, vBulletin Solutions, Inc.