**Official Portal 2 thread**

From the HTML source of the page:

Code:
<script type="text/javascript">
	var g_originalEstimate = 71443 + ( Math.round( new Date().getTime() / 1000 ) );
	var g_updatedEstimate = 51627 + ( Math.round( new Date().getTime() / 1000 ) );
	var g_bEnded = false;


	var g_currentPotatoCount = 451408;
	var g_currentPotatoCountTimestamp = -15 + ( Math.round( new Date().getTime() / 1000 ) );
	var g_currentPotatoConsumptionRate = 11.6771584699; 

function refreshPotatoes( element )
	{
		if ( g_bEnded )
			return;

		var element = document.getElementById( 'potatoes' );
		var elapsedSeconds = Math.round( new Date().getTime() ) - g_currentPotatoCountTimestamp * 1000;
		var consumedPotatoes = ( elapsedSeconds / 1000 ) * g_currentPotatoConsumptionRate;
		var remaining = Math.round( g_currentPotatoCount - consumedPotatoes );
		var strPotatoes = '';
		if ( remaining > 1000 )
			strPotatoes += Math.floor( remaining / 1000 ) + ',' ;
		remaining = remaining % 1000;
		strPotatoes += '' + Math.floor(remaining / 100)  + Math.floor( (remaining % 100 )/ 10 ) + ( remaining % 10 );
		if ( element.textContent )
		{
			element.textContent = strPotatoes;
		}
		else
		{
			element.innerText = strPotatoes;
		}
	}
</script>


So, we're wanting to look at:

var g_currentPotatoConsumptionRate = 11.6771584699;
 
Posted on the official Portal 2 facebook page, with the caption

The first of Nine begins to play.

207266_10150228527438689_93235358688_8574699_2123954_n.jpg
 
The times on Glados@Home page are in PST:

So it was all initiated at 11am there, 7pm here :D

11:00 - Involuntary hazard mitigation associates have assumed testing positions...
11:00 - Pre-release lethality assessment initiated...
 
Valve didn't have much choice to do something as the predicted release date from the event was AFTER the official release date lol... people got so tired of doing it for nothing that the bar was moving too slowly :p

Kinda compounds my point that Valve should't have bothered thinking about an early release.

See http://www.gamingmasters.co.uk/portal/ as you can see the predicted release from the event was after the official scheduled release :p

No, for each game that was completed about an hour has taken off the time. The original release was supposed to be 15:00. It's now going to be 09:30 at the latest, but will probably be earlier.
 
Back
Top Bottom