Frame 1
function liga(f) {
if (f == undefined) {
gotoAndStop (23);
} else {
gotoAndStop(f +22);
}
}
function starting(f) {
if (f == undefined) {
gotoAndStop (3);
} else {
gotoAndStop(f +2);
}
}
function single(f) {
if (f == undefined) {
gotoAndStop (4);
} else {
gotoAndStop(f +3);
}
}
function gameover(f) {
if (f == undefined) {
gotoAndStop (21);
} else {
gotoAndStop(f +20);
}
}
function win(f) {
if (f == undefined) {
gotoAndStop (22);
} else {
gotoAndStop(f +21);
}
}
Frame 3
_root.startframe = _currentframe;
s = 0;
while (s <= 6) {
_root["snd" + s] = new Sound(this);
_root["snd" + s].attachSound("snd" + s);
s++;
}
_global.ps = function (s, l) {
_root["snd" + s].start(0, l);
};
stopAllSounds();
ps(0, 999);
stop();
Frame 4
function turnx(angle, r) {
return(Math.sin((((-angle) + 180) / 180) * Math.PI) * r);
}
function turny(angle, r) {
return(Math.cos((((-angle) + 180) / 180) * Math.PI) * r);
}
function kat(kx, ky) {
return((((-Math.atan2(kx, ky)) * 180) / Math.PI) + 180);
}
function goodkat(k) {
kk = k;
while (kk >= 360) {
kk = kk - 360;
}
while (kk < 0) {
kk = kk + 360;
}
return(kk);
}
function sqr(sx) {
return(sx * sx);
}
function odlg(ox, oy) {
return(Math.sqrt(sqr(ox) + sqr(oy)));
}
function go_ryba() {
with (ryba) {
if (side == 1) {
anim.gotoAndStop(anim._currentframe - 1);
if (anim._currentframe == 1) {
side = 2;
}
} else {
anim.gotoAndStop(anim._currentframe + 1);
if (anim._currentframe == 11) {
side = 1;
}
}
t++;
_y = _y + ((Math.sin((t * Math.PI) / 11) * 2) - (Math.sin(((t - 1) * Math.PI) / 11) * 2));
kk = goodkat(kat(_parent._xmouse - _x, _parent._ymouse - _y) - 90);
if ((_rotation - kk) < -180) {
kk = kk - 360;
}
if ((_rotation - kk) > 180) {
kk = kk + 360;
}
_rotation = goodkat(_rotation + ((kk - _rotation) / 10));
if (goodkat(_rotation + 90) > 180) {
_yscale = -100;
} else {
_yscale = 100;
}
if (Key.isDown(1)) {
if (clicked == false) {
ps(2);
_rotation = goodkat(kat(_parent._xmouse - _x, _parent._ymouse - _y) - 90);
ran = random(100) * 10;
i = 1;
while (i <= 10) {
_parent.attachMovie("F3Fade", "fade" + (ran + i), ran + i);
var fad = _parent["fade" + (ran + i)];
fad._x = _x + (((_parent._xmouse - _x) * i) / 11);
fad._y = _y + (((_parent._ymouse - _y) * i) / 11);
fad._rotation = _rotation;
fad.gotoAndPlay(11 - i);
i++;
}
_x = _parent._xmouse;
_y = _parent._ymouse;
clicked = true;
dlg = 20;
score--;
}
} else {
clicked = false;
}
cxx = cxx + ((_x - cx) / 60);
cyy = cyy + ((_y - cy) / 60);
cxx = cxx * 0.95;
cyy = cyy * 0.95;
cx = cx + cxx;
cy = cy + cyy;
if (dlg < 40) {
dlg++;
}
katr = goodkat(katr + 2);
i = 1;
while (i <= _parent.rybek) {
px[i] = cx + turnx(((360 / rybek) * i) + katr, dlg);
py[i] = cy + turny(((360 / rybek) * i) + katr, dlg);
i++;
}
}
}
lives.gotoAndStop(6);
score = 10;
MovieClip.prototype.init_rybki = function () {
this.happy = false;
this.death = 0;
this.xx = 0;
this.yy = 0;
this._parent.rybek++;
_root.rybki.addListener(this);
ASBroadcaster.initialize(this);
};
MovieClip.prototype.init_pirana = function () {
this.runda = 0;
this.which = this.ile - 1;
this._parent.piranii++;
this._name = "pir" + piranii;
_root.pirana.addListener(this);
ASBroadcaster.initialize(this);
};
MovieClip.prototype.go_pirana = function () {
if (this.side == 1) {
this.anim.gotoAndStop(this.anim._currentframe - 1);
if (this.anim._currentframe == 1) {
this.side = 2;
}
} else {
this.anim.gotoAndStop(this.anim._currentframe + 1);
if (this.anim._currentframe == 11) {
this.side = 1;
}
}
if (this.runda <= 0) {
this.which++;
if (this.which >= this.ile) {
this.which = 0;
}
this.runda = Math.abs(this.xx[this.which]);
if (Math.abs(this.yy[this.which]) > this.runda) {
this.runda = Math.abs(this.yy[this.which]);
}
this.xxx = (this.xx[this.which] / this.runda) * 6;
this.yyy = (this.yy[this.which] / this.runda) * 6;
this.ww = this.wait;
}
if (this.ww > 0) {
this.ww--;
} else {
this._x = this._x + this.xxx;
this._y = this._y + this.yyy;
this.runda--;
}
this._rotation = goodkat(kat(this.xxx, this.yyy) - 90);
this._xscale = 130;
if (goodkat(this._rotation + 90) > 180) {
this._yscale = -130;
} else {
this._yscale = 130;
}
ran = random(10000) + 100;
if (random(10) == 0) {
this._parent.attachMovie("Bubble", "bub" + ran, ran);
var bub = this._parent["bub" + ran];
bub.xx = (random(100) / 50) - 1;
bub.yy = random(100) / 100;
bub._x = this._x;
bub._y = this._y;
bub._xscale = 10;
bub._yscale = 10;
bub._alpha = 80;
bub.aa = 3;
bub.ss = 2;
}
};
MovieClip.prototype.go_rybki = function () {
if (this.side == 1) {
this.anim.gotoAndStop(this.anim._currentframe - 1);
if (this.anim._currentframe == 1) {
this.side = 2;
}
} else {
this.anim.gotoAndStop(this.anim._currentframe + 1);
if (this.anim._currentframe == 11) {
this.side = 1;
}
}
w = 1;
while (w <= this._parent.robaczkow) {
var worm = this._parent["worm" + w];
if ((odlg(this._x - worm._x, (this._y - worm._y) / 1.5) < 14) and (worm.eaten == false)) {
ps(3);
this._parent.score = this._parent.score + 6;
worm.eaten = true;
this.happy = true;
this._parent.rybek--;
}
w++;
}
if (this.happy) {
this.xx = this.xx + 1;
if (this._x > 700) {
_root.rybki.removeListener(this);
if (this._parent.rybek == 0) {
_root.onEnterFrame = function () {
};
score = score + 15;
if ((this._currentframe - _root.startframe) == 17) {
win();
} else {
this._parent.play();
}
return(undefined);
}
}
} else {
if (this._parent.first == true) {
this._x = this._parent.px[ktora];
this._y = this._parent.py[ktora];
}
this.dis = odlg(this._x - this._parent.px[ktora], this._y - this._parent.py[ktora]);
this.xx = this.xx + ((this._parent.px[ktora] - this._x) / ((this.dis / 2) + 100));
this.yy = this.yy + ((this._parent.py[ktora] - this._y) / ((this.dis / 2) + 100));
}
this.oldx = ((this.oldx * 9) + this.xx) / 10;
this.oldy = ((this.oldy * 9) + this.yy) / 10;
this.xx = this.xx * 0.94;
this.yy = this.yy * 0.94;
if ((this.death == 0) or this.happy) {
this._x = this._x + this.xx;
this._y = this._y + this.yy;
this._rotation = goodkat(kat(this.oldx, this.oldy) - 90);
} else {
if (this.death < 15) {
ran = random(10000) + 100;
if (random(2) == 0) {
this._parent.attachMovie("Bubble", "bub" + ran, ran);
var bub = this._parent["bub" + ran];
bub.xx = (random(100) / 50) - 1;
bub.yy = (random(100) / 100) + 1;
bub._x = this._x;
bub._y = this._y;
bub._xscale = 10;
bub._yscale = 10;
bub._alpha = 80;
bub.aa = 3;
bub.ss = 3;
}
}
this.death++;
this.anim._alpha = this.anim._alpha - 4;
if (this.death >= 50) {
_root.onEnterFrame = function () {
};
this._parent.lives.gotoAndStop(this._parent.lives._currentframe - 1);
if (this._parent.lives._currentframe == 1) {
gameover();
return(undefined);
}
this._parent.gotoAndPlay(this._parent._currentframe - 1);
return(undefined);
}
}
if (goodkat(this._rotation + 90) > 180) {
this._yscale = -100;
} else {
this._yscale = 100;
}
if (!this.happy) {
ktora++;
this._parent.rys.moveTo(this._parent.ryba._x, this._parent.ryba._y);
this._parent.rys.lineTo(this._x, this._y);
if (((((this._parent.mm.hitTest(this._x, this._y, true) or (this._x > 635)) or (this._x < 5)) or (this._y > 636)) or (this._y < 10)) and (this.death == 0)) {
ps(4);
this.death = 1;
}
p = 1;
while (p <= piranii) {
var pir = this._parent["pir" + p];
if ((this.death == 0) and (odlg(this._x - pir._x, this._y - pir._y) < 20)) {
ps(5);
this.death = 1;
}
p++;
}
}
ran = random(10000) + 100;
if (random(10) == 0) {
this._parent.attachMovie("Bubble", "bub" + ran, ran);
var bub = this._parent["bub" + ran];
bub.xx = (random(100) / 50) - 1;
bub.yy = random(100) / 100;
bub._x = this._x;
bub._y = this._y;
bub._xscale = 10;
bub._yscale = 10;
bub._alpha = 80;
bub.aa = 3;
bub.ss = 2;
}
};
Frame 5
if (lives._currentframe < 6) {
stopAllSounds();
ps(0, 999);
}
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 6
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 6
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 50;
xx[1] = -50;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 10;
}
Frame 7
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 8
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 8
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 60;
xx[1] = 0;
xx[2] = -60;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 50;
yy[2] = 0;
yy[3] = -50;
ile = 4;
wait = 10;
}
Frame 9
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 10
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 10
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 35;
xx[1] = 35;
xx[2] = -35;
xx[3] = -35;
yy = [];
yy[0] = -35;
yy[1] = 35;
yy[2] = 35;
yy[3] = -35;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 10
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -35;
xx[1] = -35;
xx[2] = 35;
xx[3] = 35;
yy = [];
yy[0] = 35;
yy[1] = -35;
yy[2] = -35;
yy[3] = 35;
ile = 4;
wait = 10;
}
Frame 11
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 12
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 12
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 25;
xx[1] = 0;
xx[2] = -25;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 25;
yy[2] = 0;
yy[3] = -25;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 12
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 15;
xx[1] = 0;
xx[2] = -15;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 15;
yy[2] = 0;
yy[3] = -15;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 12
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 0;
xx[1] = 0;
yy = [];
yy[0] = 30;
yy[1] = -30;
ile = 2;
wait = 10;
}
Frame 13
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 14
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 14
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = 0;
xx[2] = -20;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 20;
yy[2] = 0;
yy[3] = -20;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 14
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = 0;
xx[2] = -20;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 20;
yy[2] = 0;
yy[3] = -20;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 14
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = 0;
xx[2] = -20;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 20;
yy[2] = 0;
yy[3] = -20;
ile = 4;
wait = 10;
}
Instance of Symbol 178 MovieClip in Frame 14
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = 0;
xx[2] = -20;
xx[3] = 0;
yy = [];
yy[0] = 0;
yy[1] = 20;
yy[2] = 0;
yy[3] = -20;
ile = 4;
wait = 10;
}
Frame 15
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 16
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 30;
xx[1] = -30;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 5;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 15;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 3;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 8;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 13;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 2;
}
Instance of Symbol 178 MovieClip in Frame 16
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 20;
xx[1] = -20;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 7;
}
Frame 17
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 18
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 35;
xx[1] = 35;
xx[2] = -35;
xx[3] = -35;
yy = [];
yy[0] = -35;
yy[1] = 35;
yy[2] = 35;
yy[3] = -35;
ile = 4;
wait = 19;
}
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -35;
xx[1] = -35;
xx[2] = 35;
xx[3] = 35;
yy = [];
yy[0] = 35;
yy[1] = -35;
yy[2] = -35;
yy[3] = 35;
ile = 4;
wait = 20;
}
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -35;
xx[1] = 35;
xx[2] = 35;
xx[3] = -35;
yy = [];
yy[0] = -35;
yy[1] = -35;
yy[2] = 35;
yy[3] = 35;
ile = 4;
wait = 19;
}
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 35;
xx[1] = -35;
xx[2] = -35;
xx[3] = 35;
yy = [];
yy[0] = 35;
yy[1] = 35;
yy[2] = -35;
yy[3] = -35;
ile = 4;
wait = 20;
}
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 0;
xx[1] = 0;
yy = [];
yy[0] = 25;
yy[1] = -25;
yy[2] = 0;
yy[3] = 0;
ile = 2;
wait = 20;
}
Instance of Symbol 178 MovieClip in Frame 18
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 0;
xx[1] = 0;
yy = [];
yy[0] = 25;
yy[1] = -25;
yy[2] = 0;
yy[3] = 0;
ile = 2;
wait = 10;
}
Frame 19
stopAllSounds();
ps(0, 999);
level = (this._currentframe - _root.startframe) / 2;
stop();
Frame 20
stopAllSounds();
ps(1, 999);
level = ((this._currentframe - 1) - _root.startframe) / 2;
robaczkow = 0;
piranii = 0;
rybek = 0;
first = true;
ryba.dlg = 40;
ryba.cx = ryba._x;
ryba.cy = ryba._y;
ryba.cxx = 0;
ryba.cyy = 0;
px = new Array();
py = new Array();
_root.rybki = {};
ASBroadcaster.initialize(_root.rybki);
_root.pirana = {};
ASBroadcaster.initialize(_root.pirana);
bx = 0;
while (bx <= 32) {
by = 0;
while (by <= 32) {
if (mm.hitTest(bx * 20, by * 20, true)) {
rys.attachMovie("Block", (("block" + bx) + "x") + by, (bx + (by * 32)) + 100);
var bl = rys[(("block" + bx) + "x") + by];
bl._x = bx * 20;
bl._y = by * 20;
}
by++;
}
bx++;
}
_root.onEnterFrame = function () {
go_ryba();
ktora = 1;
rys.clear();
rys.lineStyle(4, 4513160, 50);
_root.rybki.broadcastMessage("go_rybki");
_root.pirana.broadcastMessage("go_pirana");
rys.lineStyle(4, 0, 50);
first = false;
};
stop();
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 80;
xx[1] = -80;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 30;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 80;
xx[1] = -80;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 40;
xx[1] = -80;
xx[2] = 40;
yy = [];
yy[0] = 0;
yy[1] = 0;
yy[2] = 0;
ile = 3;
wait = 15;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -80;
xx[1] = 80;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 30;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -80;
xx[1] = 80;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 40;
xx[1] = -80;
xx[2] = 40;
yy = [];
yy[0] = 0;
yy[1] = 0;
yy[2] = 0;
ile = 3;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 30;
xx[1] = -30;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -30;
xx[1] = 30;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 2;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 30;
xx[1] = -30;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -30;
xx[1] = 30;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 2;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 100;
xx[1] = -100;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = 25;
xx[1] = -25;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Instance of Symbol 178 MovieClip in Frame 20
//component parameters
onClipEvent (initialize) {
xx = [];
xx[0] = -25;
xx[1] = 25;
yy = [];
yy[0] = 0;
yy[1] = 0;
ile = 2;
wait = 0;
}
Frame 21
if (score < 0) {
score = 0;
}
_root.scr = score;
score = 0;
stopAllSounds();
ps(0, 999);
Frame 22
stopAllSounds();
ps(0, 999);
if (score < 0) {
score = 0;
}
_root.scr = score;
score = 0;
stop();
stopAllSounds();
Frame 23
function play_again() {
starting();
}
stop();
Instance of Symbol 452 MovieClip in Frame 23
//component parameters
onClipEvent (initialize) {
submit_allowed = false;
score = "_root.scr";
}
Frame 24
function play_again() {
starting();
}
stop();
Instance of Symbol 452 MovieClip in Frame 24
//component parameters
onClipEvent (initialize) {
submit_allowed = true;
score = "_root.scr";
}
Symbol 8 MovieClip [F3Fade] Frame 11
this.removeMovieClip(this);
Symbol 14 MovieClip [Bubble] Frame 1
_x = (_x + xx);
_y = (_y + yy);
yy = yy - 0.5;
yy = yy * 0.95;
xx = xx * 0.95;
_xscale = (_xscale + ss);
_yscale = (_yscale + ss);
_alpha = (_alpha - aa);
if (_alpha <= 0) {
this.removeMovieClip(this);
}
Symbol 21 MovieClip Frame 1
fscommand ("trapallkeys", true);
Stage.showMenu = false;
this.uu = _root._url;
var a = _root._url.split("/");
var i = 0;
while (i < a.length) {
if (a[i] == "files") {
_root.gid = a[i + 1];
}
i++;
}
if ((a[2] == "www.netstupidity.com") || (a[2] == "netstupidity.com")) {
_root.ligin = 1;
}
_root.__url = "http://www.netstupidity.com/";
_root.loadVariables((_root.__url + "hof_bsc.php?id=") + _root.gid);
_root.prc = 0;
this.onEnterFrame = function () {
var ld = _root.getBytesLoaded();
var tt = _root.getBytesTotal();
var pr = ((100 * ld) / tt);
this.pasek._xscale = pr;
var b = Math.round(pr / 20);
if (pr >= 100) {
this.onEnterFrame = null;
this._parent.play();
}
};
Symbol 35 MovieClip Frame 140
stop();
Symbol 74 MovieClip Frame 1
this.t = getTimer();
this.tm = 0;
this.onEnterFrame = function () {
if (_root._framesloaded < 2) {
this.t = getTimer();
return(undefined);
}
this.tm = this.tm + (getTimer() - this.t);
var tt = Math.round(this.tm / 33);
if (tt < 1) {
this.stop();
} else {
this.t = getTimer();
if (tt >= 145) {
this.onEnterFrame = null;
this.gotoAndStop(145);
_root.play();
} else {
this.gotoAndStop(tt);
}
}
};
stop();
Symbol 77 MovieClip Frame 1
_root.stop();
stop();
Symbol 77 MovieClip Frame 2
stop();
Symbol 85 Button
on (release) {
single();
}
Symbol 87 MovieClip Frame 1
this._visible = _root.ligin == undefined;
this.onPress = function () {
getURL ("http://www.netstupidity.com");
};
Symbol 92 Button
on (press) {
liga(2);
}
Symbol 102 Button
on (release) {
nextFrame();
}
Symbol 111 MovieClip Frame 1
stop();
Symbol 126 Button
on (release) {
nextFrame();
}
Symbol 131 MovieClip Frame 1
_visible = false;
Symbol 144 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 1
init_rybki();
Symbol 165 MovieClip Frame 1
eaten = false;
_parent.robaczkow++;
_name = ("worm" + _parent.robaczkow);
Symbol 165 MovieClip Frame 2
t++;
_xscale = (80 + (Math.sin(t / 10) * 10));
_yscale = (80 + (Math.cos(t / 10) * 10));
if (eaten and (_alpha > 0)) {
_alpha = (_alpha - 10);
}
Symbol 165 MovieClip Frame 3
t++;
_xscale = (80 + (Math.sin(t / 10) * 10));
_yscale = (80 + (Math.cos(t / 10) * 10));
if (eaten and (_alpha > 0)) {
_alpha = (_alpha - 10);
}
Symbol 165 MovieClip Frame 4
t++;
_xscale = (80 + (Math.sin(t / 10) * 10));
_yscale = (80 + (Math.cos(t / 10) * 10));
if (eaten and (_alpha > 0)) {
_alpha = (_alpha - 10);
}
this.gotoAndPlay(2);
Symbol 177 MovieClip Frame 1
stop();
Symbol 178 MovieClip Frame 1
init_pirana();
Symbol 182 MovieClip Frame 1
_visible = false;
Symbol 186 MovieClip Frame 1
_visible = false;
Symbol 190 MovieClip Frame 1
_visible = false;
Symbol 194 MovieClip Frame 1
_visible = false;
Symbol 198 MovieClip Frame 1
_visible = false;
Symbol 202 MovieClip Frame 1
_visible = false;
Symbol 206 MovieClip Frame 1
_visible = false;
Symbol 217 Button
on (release) {
liga();
}
Symbol 227 Button
on (release) {
starting();
}
Symbol 232 Button
on (release) {
liga();
}
Symbol 250 Button
on (press) {
this._parent.d.gotoAndStop(2);
this._parent.w.gotoAndStop(1);
this._parent.m.gotoAndStop(1);
this._parent.a.gotoAndStop(1);
this._parent.typ = 1;
this._parent.nr = 0;
this._parent._parent.teksty._get();
}
Symbol 252 MovieClip Frame 1
stop();
Symbol 252 MovieClip Frame 2
this._parent._parent.okres(1);
Symbol 261 Button
on (press) {
this._parent.d.gotoAndStop(1);
this._parent.w.gotoAndStop(2);
this._parent.m.gotoAndStop(1);
this._parent.a.gotoAndStop(1);
this._parent.typ = 2;
this._parent.nr = 0;
this._parent._parent.teksty._get();
}
Symbol 263 MovieClip Frame 1
stop();
Symbol 263 MovieClip Frame 2
this._parent._parent.okres(2);
Symbol 276 Button
on (press) {
this._parent.d.gotoAndStop(1);
this._parent.w.gotoAndStop(1);
this._parent.m.gotoAndStop(2);
this._parent.a.gotoAndStop(1);
this._parent.typ = 3;
this._parent.nr = 0;
this._parent._parent.teksty._get();
}
Symbol 278 MovieClip Frame 1
stop();
Symbol 278 MovieClip Frame 2
this._parent._parent.okres(3);
Symbol 283 Button
on (press) {
this._parent.d.gotoAndStop(1);
this._parent.w.gotoAndStop(1);
this._parent.m.gotoAndStop(1);
this._parent.a.gotoAndStop(2);
this._parent.typ = 0;
this._parent.nr = 0;
this._parent._parent.teksty._get();
}
Symbol 285 MovieClip Frame 2
this._parent._parent.okres(0);
stop();
Symbol 286 MovieClip Frame 1
this.typ = 0;
this.nr = 0;
Symbol 290 Button
on (press) {
this.nn = this.nn + 2;
this.new_n();
}
Symbol 291 Button
on (press) {
this.nn++;
this.new_n();
}
Symbol 292 Button
on (press) {
this.nn--;
this.new_n();
}
Symbol 293 Button
on (press) {
this.nn = this.nn - 2;
this.new_n();
}
Symbol 294 Button
on (press) {
this.nn = this.nn + 3;
this.new_n();
}
Symbol 312 MovieClip Frame 1
function init(zz) {
this.reload = false;
this.z = zz;
this.gotoAndPlay(19);
}
function przepisz() {
var zk = this.z;
var _k = [5, 6, 7, 8, 0, 1, 2, 3, 4];
var _p = [-4, -3, -2, -1, 0, 1, 2, 3, 4];
var i = 0;
while (i < 9) {
var kk = this.k["d" + _k[i]];
var ps = (this.n - _p[i]);
var pps = (ps % zk);
var st = ((pps < 0) ? (zk + pps) : (pps));
if (((st < 0) || (st > zk)) || (zk == 0)) {
kk.text = "";
} else {
kk.text = st + 1;
}
i++;
}
if ((this.n == this.nn) && (this.reload)) {
this._parent.teksty._get();
}
}
function new_n() {
this.reload = true;
if (this.nn < this.n) {
this.gotoAndPlay(11);
}
if (this.nn > this.n) {
this.gotoAndPlay(2);
}
}
if (this.n == undefined) {
this.z = (this.n = (this.nn = 0));
this.gotoAndStop(46);
} else {
if (this.nn == this.n) {
this.stop();
}
if (this.nn < this.n) {
this.gotoAndPlay(11);
}
if (this.nn > this.n) {
this.gotoAndPlay(2);
}
}
Symbol 312 MovieClip Frame 9
this.n++;
przepisz();
this.gotoAndPlay(1);
Symbol 312 MovieClip Frame 10
if (this.n == undefined) {
stop();
} else {
if (this.nn == this.n) {
this.stop();
}
if (this.nn < this.n) {
this.gotoAndPlay(11);
}
if (this.nn > this.n) {
this.gotoAndPlay(2);
}
}
Symbol 312 MovieClip Frame 18
this.n--;
przepisz();
this.gotoAndPlay(10);
Symbol 312 MovieClip Frame 25
przepisz();
Symbol 312 MovieClip Frame 45
this.gotoAndStop(1);
Symbol 315 Button
on (press) {
this._parent.okres.nr++;
this._parent.teksty._get();
}
Symbol 316 Button
on (press) {
if (this._parent.okres.nr > 0) {
this._parent.okres.nr--;
this._parent.teksty._get();
}
}
Symbol 317 Button
on (press) {
this._parent.k.nn--;
this._parent.k.new_n();
}
Symbol 318 Button
on (press) {
this._parent.k.nn++;
this._parent.k.new_n();
}
Symbol 322 MovieClip Frame 1
this._visible = false;
Symbol 326 MovieClip Frame 1
this._parent.teksty._visible = false;
this._parent.okres._visible = false;
this._parent.submit._visible = false;
this._parent.szczalki._visible = false;
this._parent.loading._visible = true;
stop();
Symbol 326 MovieClip Frame 10
this._parent.teksty._visible = true;
this._parent.okres._visible = true;
this._parent.submit._visible = true;
this._parent.szczalki._visible = true;
this._parent.loading._visible = false;
this._parent.k.init(int(this._parent.teksty.r));
stop();
Symbol 332 Button
on (press) {
this._parent.submit_score();
}
Symbol 337 Button
on (press) {
this._parent._parent.play_again();
}
Symbol 346 MovieClip Frame 1
function eror(a) {
clearInterval(a.it);
a.onData = null;
a._parent.eror.gotoAndPlay("time");
a._parent.eror._visible = true;
}
function _get() {
this._parent.eror._visible = false;
this.onData = function () {
clearInterval(this.it);
a.onData = null;
if (s == 1) {
myTextFormat = new TextFormat();
myTextFormat.align = "right";
this.f1.setTextFormat(myTextFormat);
this._parent.oczy.play();
} else {
this._parent.eror.gotoAndPlay("dbase");
this._parent.eror._visible = true;
}
};
this.it = setInterval(eror, 10000, this);
if (this._parent.oczy._currentframe > 1) {
this._parent.oczy.play();
}
var p = int(this._parent.k.k.d0.text);
if (p > 0) {
p--;
}
this.loadVariables((((((((_root.__url + "hof_fla.php?g=") + _root.gid) + "&o=") + this._parent.okres.nr) + "&p=") + this._parent.okres.typ) + "&s=") + p);
}
_get();
Symbol 356 Button
on (press) {
this._parent.teksty._get();
}
Symbol 359 Button
on (press) {
this._parent._parent.play_again();
}
Symbol 371 Button
on (press) {
this._parent.gotoAndStop(5);
}
Symbol 374 Button
on (press) {
this._parent.gotoAndStop(6);
}
Symbol 379 Button
on (press) {
this._parent.gotoAndStop(7);
}
Symbol 380 Button
on (press) {
this._visible = false;
this._parent.submit._visible = true;
}
Symbol 401 MovieClip Frame 6
stop();
Symbol 401 MovieClip Frame 12
stop();
Symbol 401 MovieClip Frame 18
stop();
Symbol 401 MovieClip Frame 19
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 24
stop();
Symbol 401 MovieClip Frame 25
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 30
stop();
Symbol 401 MovieClip Frame 31
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 36
stop();
Symbol 401 MovieClip Frame 37
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 42
stop();
Symbol 401 MovieClip Frame 43
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 48
stop();
Symbol 401 MovieClip Frame 49
this._parent.submit._visible = false;
Symbol 401 MovieClip Frame 54
stop();
Symbol 409 Button
on (press) {
this._parent._parent.play_again();
}
Symbol 417 Button
on (press) {
this._visible = false;
this._parent.teksty._get();
}
Symbol 420 Button
on (press) {
if (!this.submit_allowed) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
}
Symbol 424 Button
on (press) {
this._parent.play_again();
}
Symbol 429 MovieClip Frame 1
function eror(a) {
clearInterval(a.it);
a.onData = null;
a._parent.eror.gotoAndPlay("time");
a._parent.eror._visible = true;
}
function _get() {
this._parent.eror._visible = false;
this.onData = function () {
clearInterval(this.it);
a.onData = null;
if (s == 1) {
this._parent.gotoAndStop(7);
} else {
switch (int(s)) {
case 2 :
this._parent.eror.gotoAndPlay("login");
this._parent.eror._visible = true;
return;
case 3 :
this._parent.eror.gotoAndPlay("password");
this._parent.eror._visible = true;
return;
case 4 :
this._parent.eror.gotoAndPlay("confirm");
this._parent.eror._visible = true;
return;
case 5 :
this._parent.eror.gotoAndPlay("taken");
this._parent.eror._visible = true;
return;
case 6 :
this._parent.eror.gotoAndPlay("email");
this._parent.eror._visible = true;
return;
case 7 :
this._parent.eror.gotoAndPlay("data");
this._parent.eror._visible = true;
return;
case 8 :
this._parent.eror.gotoAndPlay("match");
this._parent.eror._visible = true;
return;
default :
this._parent.eror.gotoAndPlay("dbase");
this._parent.eror._visible = true;
}
}
};
this.it = setInterval(eror, 30000, this);
this.loadVariables(_root.__url + "login_fla.php", "POST");
}
Symbol 435 Button
on (press) {
this._visible = false;
this._parent.teksty._get();
}
Symbol 442 MovieClip Frame 1
function eror(a) {
clearInterval(a.it);
a.onData = null;
a._parent.eror.gotoAndPlay("time");
a._parent.eror._visible = true;
}
function _get() {
this._parent.eror._visible = false;
this.onData = function () {
clearInterval(this.it);
a.onData = null;
if (s == 1) {
this._parent.gotoAndStop(7);
} else {
switch (int(s)) {
case 2 :
this._parent.eror.gotoAndPlay("login");
this._parent.eror._visible = true;
return;
case 3 :
this._parent.eror.gotoAndPlay("password");
this._parent.eror._visible = true;
return;
case 4 :
this._parent.eror.gotoAndPlay("confirm");
this._parent.eror._visible = true;
return;
case 5 :
this._parent.eror.gotoAndPlay("taken");
this._parent.eror._visible = true;
return;
case 6 :
this._parent.eror.gotoAndPlay("email");
this._parent.eror._visible = true;
return;
case 7 :
this._parent.eror.gotoAndPlay("data");
this._parent.eror._visible = true;
return;
case 8 :
this._parent.eror.gotoAndPlay("match");
this._parent.eror._visible = true;
return;
default :
this._parent.eror.gotoAndPlay("dbase");
this._parent.eror._visible = true;
}
}
};
this.it = setInterval(eror, 30000, this);
this.loadVariables(_root.__url + "register_fla.php", "POST");
}
Symbol 446 MovieClip Frame 1
function eror(a) {
clearInterval(a.it);
a.onData = null;
a._parent.eror.gotoAndPlay("time");
a._parent.eror._visible = true;
}
function _get() {
this._parent.eror._visible = false;
this.onData = function () {
trace(s);
clearInterval(this.it);
a.onData = null;
if (s == 1) {
this._parent.gotoAndStop(3);
} else if (s == 2) {
this._parent.eror.gotoAndPlay("login");
this._parent.eror._visible = true;
} else {
this._parent.eror.gotoAndPlay("dbase");
this._parent.eror._visible = true;
}
};
this.it = setInterval(eror, 30000, this);
if (this._parent.oczy._currentframe > 1) {
this._parent.oczy.play();
}
var p = int(this._parent.k.k.d0.text);
if (p > 0) {
p--;
}
this.loadVariables((((_root.__url + "hof_save.php?g=") + _root.gid) + "&s=") + this._parent.score);
}
_get();
Symbol 451 Button
on (press) {
getURL ("http://www.netstupidity.com");
}
Symbol 452 MovieClip Frame 1
this.score = eval (this.score);
if (this._parent.play_again == undefined) {
trace(("HighScore ERROR: Niezdefiniowa\u0142e\u015B funkcji play_again! [ " + this) + " ]");
stop();
} else if (_root.ligin == undefined) {
this.gotoAndStop(8);
} else if (!this.submit_allowed) {
if (this.score == undefined) {
trace(("HighScore ERROR: Nie poda\u0142e\u015B prawid\u0142owej zmiennej z wynikiem! [ " + this) + " ]");
stop();
if (this._parent.play_again == undefined) {
trace(("HighScore ERROR: Niezdefiniowa\u0142e\u015B funkcji play_again! [ " + this) + " ]");
stop();
}
}
} else {
this.gotoAndStop(4);
}
Symbol 452 MovieClip Frame 2
function submit_score() {
this.gotoAndStop(7);
}
this.eror._visible = false;
stop();
Symbol 452 MovieClip Frame 3
this.eror._visible = false;
stop();
Symbol 452 MovieClip Frame 4
this.eror._visible = false;
stop();
Symbol 452 MovieClip Frame 5
this.eror._visible = false;
stop();
this._parent.teksty._visible = true;
this._parent.okres._visible = true;
this._parent.submit._visible = true;
this._parent.szczalki._visible = true;
this._parent.loading._visible = false;
this._parent.k.init(int(this._parent.teksty.r));
stop();
Symbol 452 MovieClip Frame 6
this.eror._visible = false;
stop();
this._parent.teksty._visible = true;
this._parent.okres._visible = true;
this._parent.submit._visible = true;
this._parent.szczalki._visible = true;
this._parent.loading._visible = false;
this._parent.k.init(int(this._parent.teksty.r));
stop();
Symbol 452 MovieClip Frame 7
this.eror._visible = false;
stop();