Frame 2
Stage.scaleMode = "noScale";
fscommand ("trapallkeys", true);
Stage.showMenu = false;
Frame 92
function game() {
gotoAndStop (94);
}
function _game(f) {
gotoAndStop(f +93);
}
function instr() {
gotoAndStop (93);
}
function starting() {
gotoAndStop (92);
}
function win() {
gotoAndStop (92);
}
function hof(f) {
gotoAndStop(f +96);
}
stop();
Instance of Symbol 192 MovieClip in Frame 92
//component parameters
onClipEvent (initialize) {
label = "Play Game";
wide = 99;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = false;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.game();
}
Instance of Symbol 192 MovieClip in Frame 92
//component parameters
onClipEvent (initialize) {
label = "Instructions";
wide = 101;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = false;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.instr();
}
Instance of Symbol 192 MovieClip in Frame 92
//component parameters
onClipEvent (initialize) {
label = "GO";
wide = 75;
c1 = 0;
c2 = 153;
c3 = 0;
hc1 = 0;
hc2 = 200;
hc3 = 0;
baseMode = true;
widthMode = true;
rgb = 39168;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 51200;
}
on (press) {
getURL ("http://www.FlashGames247.com", "_blank");
}
Instance of Symbol 192 MovieClip in Frame 93
//component parameters
onClipEvent (initialize) {
label = "Play Game";
wide = 99;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = false;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.game();
}
Instance of Symbol 192 MovieClip in Frame 93
//component parameters
onClipEvent (initialize) {
label = "Instructions";
wide = 101;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = false;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.instr();
}
Frame 94
function playMusic(name) {
game.music.attachSound(name);
game.music.start(0, 999);
game.music.setVolume(50);
}
function playSound(name) {
game.sound.attachSound(name);
game.sound.start(0, 1);
}
function DeleteGrid() {
var s = 1;
while (s <= game.sprite) {
game.path["sprite" + s].removeMovieClip();
s++;
}
var j = 1;
while (j <= game.rows) {
var i = 1;
while (i <= game.columns) {
game.path[(("cell" + i) + "_") + j].removeMovieClip();
i++;
}
j++;
}
game.path.death.removeMovieClip();
}
function buildGrid() {
DeleteGrid();
resetlevel();
game.keys = 0;
board = board.firstChild;
TIME = Number(String(board.nextSibling.childNodes));
var tempArray = [];
tempArray = board.childNodes;
var j = 1;
while (j <= game.rows) {
var tempArray2 = [];
tempArray2 = tempArray[j - 1].childNodes;
var i = 1;
while (i <= game.columns) {
var name = ((("cell" + i) + "_") + j);
var x = ((i - 1) * game.spacing);
var y = ((j - 1) * game.spacing);
var type = tempArray2[i - 1].attributes.type;
game.path.attachMovie("cell", name, ++game.depth);
game.path[name]._x = x;
game.path[name]._y = y;
game[name] = {x:i, y:j, name:name, type:type, clip:game.path[name], dot:game.path[name].tile.dot};
game[name].clip.tile.gotoAndStop(type);
if (type == 3) {
KEYS++;
}
if (type == 17) {
game.sprite++;
var sname = ("sprite" + game.sprite);
game.path.attachMovie("sprite", sname, game.depth + 10000);
game.path[sname]._x = x;
game.path[sname]._y = y;
game.path[sname].spriteCelX = i - 1;
game.path[sname].spriteCelY = j - 1;
game.path[sname].ai = 0;
game.path[sname].bi = 0;
game.path[sname].onEnterFrame = function () {
if ((this.spriteCelX == (_root.cellx - 1)) and (this.spriteCelY == (_root.celly - 1))) {
gameover();
}
this.ai++;
if (this.ai > 25) {
this.ai = 0;
this.bi++;
if (this.bi > 2) {
this.bi = 1;
}
if (this.bi != 1) {
if (random(2)) {
if (random(2)) {
this.spriteCelX = this.spriteCelX + random(2);
} else {
this.spriteCelX = this.spriteCelX - random(2);
}
} else if (random(2)) {
this.spriteCelY = this.spriteCelY + random(2);
} else {
this.spriteCelY = this.spriteCelY - random(2);
}
} else if (random(2)) {
var difx = ((_root.cellx - 1) - this.spriteCelX);
if (difx > 0) {
this.spriteCelX++;
} else if (difx < 0) {
this.spriteCelX--;
}
} else {
var dify = ((_root.celly - 1) - this.spriteCelY);
if (dify > 0) {
this.spriteCelY++;
} else if (dify < 0) {
this.spriteCelY--;
}
}
if (this.spriteCelX < 1) {
this.spriteCelX = 0;
}
if (this.spriteCelY < 1) {
this.spriteCelY = 0;
}
if (this.spriteCelX > (_root.game.columns - 1)) {
this.spriteCelX = _root.game.columns - 1;
}
if (this.spriteCelY > (_root.game.rows - 1)) {
this.spriteCelY = _root.game.rows - 1;
}
this._x = this.spriteCelX * _root.game.speed;
this._y = this.spriteCelY * _root.game.speed;
}
};
game[(("cell" + i) + "_") + j].clip.tile.gotoAndStop(1);
game[(("cell" + i) + "_") + j].type = 1;
}
if (type == 18) {
game.JJstartx = i;
game.JJstarty = j;
game[(("cell" + i) + "_") + j].clip.tile.gotoAndStop(1);
game[(("cell" + i) + "_") + j].type = 1;
}
i++;
}
j++;
}
_root.grid.attachMovie("character", "ball", 10000);
game.ball = {startx:game.JJstartx, starty:game.JJstarty, clip:game.path.ball};
var x = (((game.ball.startx - 1) * game.spacing) + (game.spacing / 2));
var y = (((game.ball.starty - 1) * game.spacing) + (game.spacing / 2));
game.ball.clip._x = x;
game.ball.clip._y = y;
game.ball.x = x;
game.ball.y = y;
cellx = Math.ceil((game.ball.x + (game.speed * tempx)) / game.spacing);
celly = Math.ceil((game.ball.y + (game.speed * tempy)) / game.spacing);
game.ball.clip.gotoAndStop("down");
game.ball.clip.char.gotoAndStop(1);
stoper = setInterval(Timer, 1000);
playSound("start");
}
function Timer() {
TIME--;
if (TIME < 1) {
gameover();
clearInterval(stoper);
}
}
function resetlevel() {
clearInterval(stoper);
DeleteGrid();
PADLOCK01 = 0;
PADLOCK02 = 0;
KEYS = 0;
game.sprite = 0;
game.right = true;
game.left = true;
game.up = true;
game.down = true;
game.music.stop();
playMusic("m4");
trace("resetLEVEL");
}
function nextlevel() {
if (LEVEL == 0) {
LEVEL++;
LIFE = 3;
_root.scr = 0;
}
board = new XML(tabLevel[LEVEL]);
buildGrid();
KEYON = true;
}
function gameover(g) {
switch (g) {
case 1 :
_game(2);
return;
default :
LIFE--;
if (LIFE < 1) {
LEVEL = 0;
}
game.music.stop();
game.path.ball.removeMovieClip();
game.path.attachMovie("death", "death", 10000);
game.path.death._x = (cellx * game.spacing) - (game.spacing / 2);
game.path.death._y = (celly * game.spacing) - (game.spacing / 2);
cellx = undefined;
celly = undefined;
}
}
function moveBall(tempx, tempy) {
game.wall--;
if (game.wall < 0) {
game.wall = 0;
}
if (game.wall > 1) {
gameover();
}
KEYON = false;
cellx = Math.ceil((game.ball.x + (game.speed * tempx)) / game.spacing);
celly = Math.ceil((game.ball.y + (game.speed * tempy)) / game.spacing);
if (cellx < 1) {
cellx = 1;
tempx = 0;
}
if (cellx > game.columns) {
cellx = game.columns;
tempx = 0;
}
if (celly < 1) {
celly = 1;
tempy = 0;
}
if (celly > game.rows) {
celly = game.rows;
tempy = 0;
}
tempCell = game[(("cell" + cellx) + "_") + celly];
if ((tempCell.type > 0) and (tempCell.type != undefined)) {
grid.ball.n = 0;
grid.ball.mbx = tempx;
grid.ball.mby = tempy;
grid.ball.tx = game.ball.x;
grid.ball.ty = game.ball.y;
grid.ball.onEnterFrame = function () {
this.n++;
if (this.n > 16) {
delete this.onEnterFrame;
KEYON = true;
game.ball.clip.char.gotoAndStop(1);
eventJJ(this.mbx, this.mby);
} else {
game.ball.clip.char.play();
if (this.n < 11) {
if (this.mbx == -1) {
game.ball.clip.gotoAndStop("left");
game.ball.clip._x = this.tx - (this.n * 3);
game.ball.x = game.ball.clip._x;
} else if (this.mbx == 1) {
game.ball.clip.gotoAndStop("right");
game.ball.clip._x = this.tx + (this.n * 3);
game.ball.x = game.ball.clip._x;
} else if (this.mby == -1) {
game.ball.clip.gotoAndStop("up");
game.ball.clip._y = this.ty - (this.n * 3);
game.ball.y = game.ball.clip._y;
} else if (this.mby == 1) {
game.ball.clip.gotoAndStop("down");
game.ball.clip._y = this.ty + (this.n * 3);
game.ball.y = game.ball.clip._y;
}
}
}
};
}
}
function eventJJ(tempx, tempy) {
switch (Number(tempCell.type)) {
case 1 :
game.right = true;
game.left = true;
game.up = true;
game.down = true;
return;
case 2 :
game.wall = game.wall + 2;
playSound("back04");
moveBall(tempx * (-1), tempy * (-1));
return;
case 3 :
playSound("key01");
tempCell.type = 1;
tempCell.clip.tile.gotoAndStop(1);
KEYS--;
_root.scr = _root.scr + LEVEL;
return;
case 4 :
game.right = 0;
game.left = 0;
game.up = 1;
game.down = 0;
return;
case 5 :
game.right = 1;
game.left = 0;
game.up = 0;
game.down = 0;
return;
case 6 :
game.right = 0;
game.left = 0;
game.up = 0;
game.down = 1;
return;
case 7 :
game.right = 0;
game.left = 1;
game.up = 0;
game.down = 0;
return;
case 8 :
playSound("spring");
tempCell.clip.tile.gotoAndStop(9);
tempCell.type = 9;
moveBall(0, -1);
return;
case 9 :
playSound("spring");
tempCell.clip.tile.gotoAndStop(10);
tempCell.type = 10;
moveBall(1, 0);
return;
case 10 :
playSound("spring");
tempCell.clip.tile.gotoAndStop(11);
tempCell.type = 11;
moveBall(0, 1);
return;
case 11 :
playSound("spring");
tempCell.clip.tile.gotoAndStop(8);
tempCell.type = 8;
moveBall(-1, 0);
return;
case 12 :
playSound("stone_close");
tempCell.type = 2;
tempCell.clip.tile.gotoAndStop(2);
return;
case 13 :
if (PADLOCK01 < 1) {
playSound("door_close");
moveBall(tempx * (-1), tempy * (-1));
} else {
playSound("door_open");
PADLOCK01--;
tempCell.type = 1;
tempCell.clip.tile.gotoAndStop(1);
}
return;
case 14 :
playSound("door_key");
PADLOCK01++;
tempCell.type = 1;
tempCell.clip.tile.gotoAndStop(1);
return;
case 15 :
if (PADLOCK02 < 1) {
playSound("door_close");
moveBall(tempx * (-1), tempy * (-1));
} else {
playSound("door_open");
PADLOCK02--;
tempCell.type = 1;
tempCell.clip.tile.gotoAndStop(1);
}
return;
case 16 :
playSound("door_key");
PADLOCK02++;
tempCell.type = 1;
tempCell.clip.tile.gotoAndStop(1);
return;
case 19 :
if (_root.KEYS == 0) {
_root.scr = _root.scr + (TIME * LEVEL);
_root.scr = _root.scr + ((LIFE * 10) * LEVEL);
LEVEL++;
nextlevel();
}
return;
default :
trace("nie mam case");
}
}
game = {};
game.columns = 12;
game.rows = 9;
game.spacing = 30;
game.speed = 30;
game.depth = 1000;
game.path = _root.grid;
game.numberOfTypes = 20;
game.right = true;
game.left = true;
game.up = true;
game.down = true;
KEYON = true;
TIME = 100;
PADLOCK01 = 0;
PADLOCK02 = 0;
game.JJstartx;
game.JJstarty;
game.sprite = 0;
game.spritex;
game.spritey;
tabLevel = [];
game.sound = new Sound(game.path);
game.music = new Sound(this);
playMusic("m4");
_root.onEnterFrame = function () {
if (KEYON) {
if (Key.isDown(39)) {
if (game.right) {
moveBall(1, 0);
playSound("move06");
} else {
playSound("noway");
}
} else if (Key.isDown(37)) {
if (game.left) {
moveBall(-1, 0);
playSound("move06");
} else {
playSound("noway");
}
}
if (Key.isDown(38)) {
if (game.up) {
moveBall(0, -1);
playSound("move06");
} else {
playSound("noway");
}
} else if (Key.isDown(40)) {
if (game.down) {
moveBall(0, 1);
playSound("move06");
} else {
playSound("noway");
}
}
}
};
tabLevel[1] = "<map><row><cell type=\"19\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"17\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /></row><row><cell type=\"18\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row></map><time>60</time>";
tabLevel[2] = "<map><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"16\" /><cell type=\"2\" /><cell type=\"16\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"20\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"14\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"19\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"13\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"12\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"17\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"17\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"18\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row></map><time>155</time>";
tabLevel[3] = "<map><row><cell type=\"1\" /><cell type=\"14\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"16\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"8\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"13\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"19\" /><cell type=\"7\" /></row><row><cell type=\"1\" /><cell type=\"18\" /><cell type=\"9\" /><cell type=\"10\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"9\" /><cell type=\"10\" /><cell type=\"2\" /><cell type=\"4\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"8\" /><cell type=\"11\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"10\" /><cell type=\"2\" /><cell type=\"4\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"9\" /><cell type=\"9\" /><cell type=\"4\" /></row><row><cell type=\"12\" /><cell type=\"2\" /><cell type=\"11\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"17\" /><cell type=\"1\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /></row></map><time>200</time>";
tabLevel[4] = "<map><row><cell type=\"16\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"18\" /><cell type=\"13\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"19\" /></row><row><cell type=\"3\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"3\" /><cell type=\"2\" /><cell type=\"16\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"9\" /><cell type=\"10\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"15\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"10\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"11\" /><cell type=\"10\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"14\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"15\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"16\" /><cell type=\"15\" /><cell type=\"3\" /></row></map><time>160</time>";
tabLevel[5] = "<map><row><cell type=\"16\" /><cell type=\"11\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"18\" /><cell type=\"1\" /></row><row><cell type=\"8\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"17\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /></row><row><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /></row><row><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"10\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"12\" /></row><row><cell type=\"12\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"12\" /></row><row><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"13\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /></row><row><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"15\" /></row><row><cell type=\"12\" /><cell type=\"14\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"19\" /></row></map><time>50</time>";
tabLevel[6] = "<map><row><cell type=\"3\" /><cell type=\"17\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"5\" /><cell type=\"5\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"12\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"4\" /><cell type=\"18\" /><cell type=\"1\" /><cell type=\"6\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"19\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"4\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"6\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"4\" /><cell type=\"7\" /><cell type=\"7\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"6\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"17\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"6\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"17\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"16\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row></map><time>60</time>";
tabLevel[7] = "<map><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"19\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"1\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"14\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"6\" /><cell type=\"2\" /><cell type=\"16\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"17\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"13\" /><cell type=\"2\" /><cell type=\"15\" /><cell type=\"12\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"13\" /><cell type=\"7\" /><cell type=\"7\" /><cell type=\"13\" /><cell type=\"14\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"1\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"3\" /><cell type=\"5\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"14\" /></row><row><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"16\" /><cell type=\"2\" /><cell type=\"18\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /></row></map><time>120</time>";
tabLevel[8] = "<map><row><cell type=\"1\" /><cell type=\"18\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"5\" /><cell type=\"15\" /><cell type=\"3\" /><cell type=\"14\" /><cell type=\"16\" /><cell type=\"7\" /><cell type=\"14\" /><cell type=\"1\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"15\" /><cell type=\"13\" /><cell type=\"15\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"5\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"10\" /><cell type=\"11\" /><cell type=\"1\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"15\" /><cell type=\"3\" /><cell type=\"15\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"13\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"16\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"4\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"4\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"17\" /><cell type=\"19\" /></row><row><cell type=\"3\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"16\" /><cell type=\"1\" /><cell type=\"4\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"5\" /><cell type=\"1\" /><cell type=\"16\" /></row></map><time>220</time>";
tabLevel[9] = "<map><row><cell type=\"12\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"14\" /><cell type=\"2\" /></row><row><cell type=\"12\" /><cell type=\"13\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"18\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /></row><row><cell type=\"14\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"19\" /></row><row><cell type=\"15\" /><cell type=\"16\" /><cell type=\"13\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"3\" /></row><row><cell type=\"6\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"10\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /></row><row><cell type=\"6\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"17\" /><cell type=\"1\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"16\" /></row></map><time>100</time>";
tabLevel[10] = "<map><row><cell type=\"19\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"17\" /><cell type=\"12\" /></row><row><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /></row><row><cell type=\"3\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"12\" /><cell type=\"13\" /><cell type=\"16\" /></row><row><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"2\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"12\" /><cell type=\"12\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"9\" /><cell type=\"5\" /><cell type=\"5\" /><cell type=\"14\" /></row><row><cell type=\"1\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"15\" /><cell type=\"1\" /><cell type=\"8\" /><cell type=\"2\" /><cell type=\"2\" /><cell type=\"6\" /></row><row><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"8\" /><cell type=\"2\" /><cell type=\"17\" /><cell type=\"6\" /></row><row><cell type=\"18\" /><cell type=\"1\" /><cell type=\"5\" /><cell type=\"1\" /><cell type=\"1\" /><cell type=\"3\" /><cell type=\"2\" /><cell type=\"1\" /><cell type=\"8\" /><cell type=\"7\" /><cell type=\"7\" /><cell type=\"3\" /></row></map><time>90</time>";
nextlevel();
Instance of Symbol 228 MovieClip in Frame 94
on (release) {
_root.LEVEL++;
_root.nextlevel();
}
Instance of Symbol 228 MovieClip in Frame 94
on (release) {
_root.gameover();
}
Frame 95
if (LIFE < 1) {
_root._game(3);
}
stop();
Instance of Symbol 192 MovieClip in Frame 95
//component parameters
onClipEvent (initialize) {
label = "Continue";
wide = 85;
c1 = 0;
c2 = 190;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = false;
rgb = 48895;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root._game(1);
}
Instance of Symbol 192 MovieClip in Frame 95
//component parameters
onClipEvent (initialize) {
label = "GO";
wide = 75;
c1 = 0;
c2 = 153;
c3 = 0;
hc1 = 0;
hc2 = 200;
hc3 = 0;
baseMode = true;
widthMode = true;
rgb = 39168;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 51200;
}
on (press) {
getURL ("http://www.FlashGames247.com", "_blank");
}
Frame 96
_root.hoff._visible = false;
_root.r = 0;
_root.onData = function () {
if (s == 1) {
_root.hoff._visible = true;
}
};
_root.loadVariables("hof.php?s=" + _root.scr);
stop();
Instance of Symbol 192 MovieClip in Frame 96
//component parameters
onClipEvent (initialize) {
label = "Play Again";
wide = 112;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.starting();
}
Frame 97
if (_root.r == 1) {
if (_root.s == 1) {
_root.hof(2);
} else {
_root.hof(3);
}
} else {
_root.onData = function () {
if (_root.s == 1) {
_root.hof(2);
} else {
_root.hof(3);
}
};
}
stop();
Instance of Symbol 192 MovieClip in Frame 97
//component parameters
onClipEvent (initialize) {
label = "Cancel";
wide = 81;
c1 = 1;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 98559 /* 0x0180FF */;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.starting();
}
Instance of Symbol 192 MovieClip in Frame 98
//component parameters
onClipEvent (initialize) {
label = "Yes";
wide = 80;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = false;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.hof(5);
}
Instance of Symbol 192 MovieClip in Frame 98
//component parameters
onClipEvent (initialize) {
label = "No";
wide = 80;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.hof(4);
}
Instance of Symbol 192 MovieClip in Frame 99
//component parameters
onClipEvent (initialize) {
label = "Play Again";
wide = 96;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.starting();
}
Instance of Symbol 192 MovieClip in Frame 100
//component parameters
onClipEvent (initialize) {
label = "Play Again";
wide = 90;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.starting();
}
Instance of Symbol 192 MovieClip in Frame 100
//component parameters
onClipEvent (initialize) {
label = "Sign In";
wide = 90;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.hof(5);
}
Instance of Symbol 192 MovieClip in Frame 101
//component parameters
onClipEvent (initialize) {
label = "Send";
wide = 80;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = false;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.r = 0;
_root.loadVariables((("addme.php?s=" + _root.scr) + "&n=") + escape(_root.nam));
_root.hof(1);
}
Instance of Symbol 192 MovieClip in Frame 101
//component parameters
onClipEvent (initialize) {
label = "Cancel";
wide = 80;
c1 = 0;
c2 = 128;
c3 = 255;
hc1 = 0;
hc2 = 0;
hc3 = 190;
baseMode = true;
widthMode = true;
rgb = 33023;
rb = 255;
gb = 255;
bb = 255;
hilitergb = 190;
}
on (press) {
_root.hof(4);
}
Symbol 33 MovieClip Frame 1
this._i = setInterval(function (ar) {
clearInterval(ar._i);
ar.gotoAndPlay(2);
}, random(200), this);
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 108 MovieClip [character] Frame 1
stop();
Symbol 116 MovieClip Frame 11
stop();
Symbol 117 MovieClip Frame 1
if (_root.KEYS == 0) {
this.gotoAndPlay(3);
}
Symbol 117 MovieClip Frame 2
gotoAndPlay (1);
Symbol 117 MovieClip Frame 3
if (_root.KEYS > 0) {
this.gotoAndPlay(1);
}
Symbol 117 MovieClip Frame 4
gotoAndPlay (3);
Symbol 119 MovieClip Frame 1
stop();
Symbol 130 MovieClip [death] Frame 92
_root.gameover(1);
Symbol 140 MovieClip Frame 1
_root.stop();
this.sg = [];
for (var i in this) {
if (this[i]._totalframes == 1) {
this.sg.push(this[i]);
this[i]._alpha = 20;
}
}
this._tm = getTimer();
this.onEnterFrame = function () {
var ld = _root.getBytesLoaded();
var tt = _root.getBytesTotal();
this.bytes = ld;
this.procent = ((tt > 0) ? ((100 * ld) / tt) : 0);
this.time = (getTimer() - this._tm) / 1000;
this.transfer = this.bytes / this.time;
var pr = Math.floor(this.procent);
var i = 100;
while (i > (100 - pr)) {
this.sg[i]._alpha = 40;
i--;
}
if (pr >= 100) {
this.onEnterFrame = null;
_root.play();
}
};
Symbol 166 MovieClip Frame 1
function sss(a) {
var v = a.ss.getVolume();
if (v >= 100) {
clearInterval(a.it);
} else {
a.ss.setVolume(v + 3);
}
}
this.ss = new Sound(this);
this.ss.attachSound("muza");
this.ss.setVolume(0);
this.ss.start(0, 100000);
this.it = setInterval(sss, 33, this);
Symbol 166 MovieClip Frame 56
stop();
Symbol 192 MovieClip Frame 1
this.onPress = function () {
pressing = true;
i = 1;
while (i <= 3) {
buttonColor = new Color(eval ("piece" + i).colorchip);
buttonColor.setRGB(3355443);
lowColor = new Color(eval ("piece" + i).bottomhilite);
lowColorTransform = new Object();
lowColorTransform = {ra:"0", rb:"200", ga:"0", gb:"200", ba:"0", bb:"200", aa:"100", ab:"0"};
lowColor.setTransform(lowColorTransform);
i++;
}
};
this.onRelease = function () {
pressing = false;
};
this.onReleaseOutside = function () {
pressing = false;
};
this.onEnterFrame = function () {
if (pressing != true) {
i = 1;
while (i <= 3) {
buttonColor = new Color(eval ("piece" + i).colorchip);
buttonColor.setRGB(rgb);
lowColor = new Color(eval ("piece" + i).bottomhilite);
lowColorTransform = new Object();
lowColorTransform = {ra:"0", rb:hc1, ga:"0", gb:hc2, ba:"0", bb:hc3, aa:"100", ab:"0"};
lowColor.setTransform(lowColorTransform);
i++;
}
}
};
with (piece2) {
_width = _parent.wide;
piece1._x = _x - (_width / 2);
piece3._x = _x + (_width / 2);
_parent.midshadow._width = _width;
_parent.leftshadow._x = _x - (_width / 2);
_parent.rightshadow._x = _x + (_width / 2);
}
label1.autoSize = "center";
label2.autoSize = "center";
Symbol 203 Button
on (press) {
getURL ("http://www.FlashGames247.com", "_blank");
}
Symbol 204 Button
on (press) {
getURL ("http://www.FlashGames247.com/gamesbyemail", "_blank");
}
Symbol 205 Button
on (press) {
getURL ("http://www.FlashGames247.com/addflashgames", "_blank");
}
Symbol 206 Button
on (press) {
getURL ("http://www.FlashGames247.com/download/hakier.exe", "_blank");
}
Instance of Symbol 211 MovieClip in Symbol 212 MovieClip Frame 1
on (press) {
getURL ("http://www.FlashGames247.com", "_blank");
}
Symbol 224 MovieClip Frame 1
if (_root.PADLOCK01 < 1) {
gotoAndPlay (3);
}
Symbol 224 MovieClip Frame 2
gotoAndPlay (1);
Symbol 224 MovieClip Frame 3
if (_root.PADLOCK01 > 0) {
gotoAndPlay (1);
}
Symbol 224 MovieClip Frame 4
gotoAndPlay (3);
Symbol 228 MovieClip Frame 1
trace("pilka:" + targetPath(this));
stop();
Symbol 230 MovieClip Frame 1
if (_root.PADLOCK02 < 1) {
gotoAndPlay (3);
}
Symbol 230 MovieClip Frame 2
gotoAndPlay (1);
Symbol 230 MovieClip Frame 3
if (_root.PADLOCK02 > 0) {
gotoAndPlay (1);
}
Symbol 230 MovieClip Frame 4
gotoAndPlay (3);
Symbol 236 MovieClip Frame 7
stop();
Symbol 238 MovieClip Frame 1
if (_root.LIFE < 2) {
gotoAndPlay (3);
}
Symbol 238 MovieClip Frame 2
gotoAndPlay (1);
Symbol 238 MovieClip Frame 3
if (_root.LIFE > 1) {
gotoAndPlay (1);
}
Symbol 238 MovieClip Frame 4
gotoAndPlay (3);