Beschreibung:
Im Manhattan Project müsst ihr mit eurem Bomber in der von Papierfiguren regierten Stadt unheil anrichten. Wählt mit der Maus die passende Stelle und Zeit zum Abwurf der Bombe und kauft euch dann passende Upgrades um in den weiteren Leveln bestehen zu können.
/*
function processBar() {
var pixel = $("#spillpre_bar").css("width");
pixel = pixel.replace("px", "");
pixel = parseInt(pixel);
pixel = pixel + 3;
percent = Math.round((pixel / 300) * 100);
if (percent == 40) {
showCloseButton();
}
if (percent >= 100) {
percent = 100;
loading = window.clearInterval(loading);
showGame();
}
$("#spillpre_bar").css("width", pixel+"px");
$("#spillpre_percent").html(percent+"%");
}
var loading = setInterval("processBar()",90);
function showCloseButton(){
$("#closebutton").css("display","block");
$("#spillpre_whilead").html("
Werbung überspringen! Hier Klicken um zu spielen ");
}
function darkness(){
$("#darkbut").css("display","none");
$("#darkness").css("display","block");
$("#light").css("display","block");
}
function brightness(){
$("#darkness").css("display","none");
$("#darkbut").css("display","block");
$("#light").css("display","none");
}
function showGame(){
loading = window.clearInterval(loading);
$("#pregamediv").css("display","none");
$("#pregamediv").css("visibility","hidden");
$("#thegamediv").css("visibility","visible");
$("#thegamediv").css("height","450");
$("#thegamediv").css("display","block");
}
/* ]]> */
Bitte aktiviere Javascript damit das Spiel sichtbar wird!!