Mission.tasks(0).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'freemax/', null, cb );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			loadConversation ( '/scripts/suss/conversations/task-0.js', function ( s ) {
				if ( !s || !(window.scripts||{}).TASK_0 || window.chatClient ) return;
				window.main_chat = new Chat ( "White Smoke Admins" );
				window.chatClient = window.main_chat.getClient();
				window.main_chat.play ( window.scripts.TASK_0, cb );
			} );
		}, 500 );
	}

} );

