Instance of Symbol 64 MovieClip in Frame 1
onClipEvent (enterFrame) {
xstep = _xmouse / 50;
ystep = _ymouse / 50;
_x = (_x + xstep);
_y = (_y + ystep);
}
Instance of Symbol 69 MovieClip in Frame 1
onClipEvent (enterFrame) {
frame = _root.PercentLoaded + 1;
gotoAndStop(frame);
}
Instance of Symbol 86 MovieClip in Frame 1
onClipEvent (load) {
this.swapDepths(9999);
}
Frame 5
_root.PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
Frame 9
_root.PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
Frame 13
_root.PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (_root.PercentLoaded >= 100) {
gotoAndPlay (15);
}
Frame 14
gotoAndPlay (12);
Frame 25
stop();
Frame 51
_root.druggie = false;
_root.bullettime = false;
_root.faster = false;
_root.invincible = false;
_root.bouncy = false;
_root.bubblesonly = false;
_root.bonustime = 0;
_root.shading._alpha = 100;
_root.name = "";
_root.bounce = -0.1;
submit = false;
send = false;
loaded = "";
read = "";
Instance of Symbol 107 MovieClip "shading" in Frame 51
onClipEvent (load) {
counter = 0;
}
onClipEvent (enterFrame) {
if (0 < _alpha) {
counter++;
if (counter >= 50) {
_alpha = (_alpha-1);
counter = 0;
}
}
}
Instance of Symbol 111 MovieClip "player" in Frame 51
onClipEvent (load) {
_root.dir_left = false;
_root.dir_right = false;
_root.dir_up = false;
_root.dir_down = false;
_root.ystep = 0;
_root.xstep = 0;
_root.score = 0;
_root.key_left = 37;
_root.key_up = 38;
_root.key_right = 39;
_root.key_down = 40;
_root.accspeed = 0.3;
_root.decspeed = 1.1;
_root.speed_mod = 1;
_root.speedlimit = 6;
}
onClipEvent (keyDown) {
if (Key.getCode() == _root.key_left) {
_root.dir_left = true;
}
if (Key.getCode() == _root.key_right) {
_root.dir_right = true;
}
if (Key.getCode() == _root.key_up) {
_root.dir_up = true;
}
if (Key.getCode() == _root.key_down) {
_root.dir_down = true;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == _root.key_left) {
_root.dir_left = false;
}
if (Key.getCode() == _root.key_right) {
_root.dir_right = false;
}
if (Key.getCode() == _root.key_up) {
_root.dir_up = false;
}
if (Key.getCode() == _root.key_down) {
_root.dir_down = false;
}
}
onClipEvent (enterFrame) {
if (_root.dir_right) {
if (_root.xstep < _root.speedlimit) {
_root.xstep = _root.xstep + _root.accspeed;
}
}
if (_root.dir_left) {
if ((-_root.speedlimit) < _root.xstep) {
_root.xstep = _root.xstep - _root.accspeed;
}
}
if ((!_root.dir_left) and (!_root.dir_right)) {
_root.xstep = _root.xstep / _root.decspeed;
if ((_root.xstep < 0.1) and (-0.1 < _root.xstep)) {
_root.xstep = 0;
}
}
if (0 < _root.xstep) {
futureX = (_x + (_root.xstep * _root.speed_mod)) + (_width / 2);
if (futureX < 350) {
_x = (_x + (_root.xstep * _root.speed_mod));
} else {
_root.xstep = _root.xstep * _root.bounce;
}
} else {
futureX = (_x + (_root.xstep * _root.speed_mod)) - (_width / 2);
if (0 < futureX) {
_x = (_x + (_root.xstep * _root.speed_mod));
} else {
_root.xstep = _root.xstep * _root.bounce;
}
}
if (_root.dir_down) {
if (_root.ystep < _root.speedlimit) {
_root.ystep = _root.ystep + _root.accspeed;
}
}
if (_root.dir_up) {
if ((-_root.speedlimit) < _root.ystep) {
_root.ystep = _root.ystep - _root.accspeed;
}
}
if ((!_root.dir_up) and (!_root.dir_down)) {
_root.ystep = _root.ystep / _root.decspeed;
if ((_root.ystep < 0.1) and (-0.1 < _root.ystep)) {
_root.ystep = 0;
}
}
if (0 < _root.ystep) {
futureY = (_y + (_root.ystep * _root.speed_mod)) + (_height / 2);
if (futureY < 400) {
_y = (_y + (_root.ystep * _root.speed_mod));
} else {
_root.ystep = _root.ystep * _root.bounce;
}
} else {
futureY = (_y + (_root.ystep * _root.speed_mod)) - (_height / 2);
if (0 < futureY) {
_y = (_y + (_root.ystep * _root.speed_mod));
} else {
_root.ystep = _root.ystep * _root.bounce;
}
}
}
Instance of Symbol 115 MovieClip in Frame 51
onClipEvent (load) {
_xscale = 0;
}
onClipEvent (enterFrame) {
_xscale = (_root.bonustime / 3);
}
Instance of Symbol 125 MovieClip in Frame 51
onClipEvent (load) {
_root.skill = 6;
_root.womb = 10;
i = 1;
counter = 0;
}
onClipEvent (enterFrame) {
if ((((((!_root.druggie) and (!_root.bullettime)) and (!_root.invincible)) and (!_root.faster)) and (!_root.bouncy)) and (!_root.bubblesonly)) {
gimmebonus = Number(random(2600));
if (gimmebonus == 20) {
_root.attachMovie("druggy", "thingie" + i, i);
i++;
}
if (((gimmebonus == 50) or (gimmebonnus == 150)) or (gimmebonus == 250)) {
_root.attachMovie("bullettime", "thingie" + i, i);
i++;
}
if ((gimmebonus == 70) or (gimmebonus == 170)) {
_root.attachMovie("invincible", "thingie" + i, i);
i++;
}
if (((gimmebonus == 80) or (gimmebonus == 180)) or (gimmebonus == 280)) {
_root.attachMovie("faster", "thingie" + i, i);
i++;
}
if ((gimmebonus == 90) or (gimmebonus == 190)) {
_root.attachMovie("bouncy", "thingie" + i, i);
i++;
}
if (gimmebonus == 100) {
_root.attachMovie("bubblesonly", "thingie" + i, i);
i++;
}
}
outspit = Number(random(_root.womb));
if (outspit == 2) {
if (i >= 50) {
i = 1;
}
choice = Number(random(_root.skill));
if ((choice == 1) and (!_root.bubblesonly)) {
_root.attachMovie("spiky", "thingie" + i, i);
} else {
_root.attachMovie("bubble", "thingie" + i, i);
}
i++;
}
counter++;
if (counter >= 300) {
if (2 < _root.skill) {
_root.skill--;
counter = 0;
}
}
if ((_root.druggie == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if ((_root.invincible == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if ((_root.bullettime == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if ((_root.faster == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if ((_root.bouncy == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if ((_root.bubblesonly == true) and (0 < _root.bonustime)) {
_root.bonustime--;
if (0 >= _root.bonustime) {
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.jukebox.gotoAndPlay(1);
_root.womb = 10;
_root.speed_mod = 1;
_root.bounce = -0.1;
}
}
if (0 >= _root.bonustime) {
_root.druggie = false;
_root.invincible = false;
_root.bullettime = false;
_root.faster = false;
_root.bouncy = false;
_root.bubblesonly = false;
}
}
Instance of Symbol 86 MovieClip in Frame 51
onClipEvent (load) {
this.swapDepths(9999);
}
Frame 52
stop();
Frame 53
stopAllSounds();
_root.shading.gotoAndStop(1);
_root.background.gotoAndStop(1);
_root.druggie = false;
_root.bullettime = false;
_root.faster = false;
_root.invincible = false;
_root.bonustime = 0;
Frame 61
stop();
Frame 64
if (_root._url == "http://www.freepgs.com/mindistortion/games/bubbles.swf") {
gotoAndPlay (71);
}
Frame 69
stop();
Frame 70
gotoAndStop (68);
Frame 73
stop();
Frame 74
gotoAndStop (73);
Frame 80
game_name = "bubbles";
loadVariablesNum ("http://www.freepgs.com/mindistortion/data_processing/read_highscore.php", 0, "POST");
Frame 85
if ((loaded == "") or (read == "")) {
gotoAndPlay (77);
} else {
play();
}
Frame 90
loaded = "";
read = "";
if (send) {
place1score = score1;
place1name = name1;
place2score = score2;
place2name = name2;
place3score = score3;
place3name = name3;
place4score = score4;
place4name = name4;
place5score = score5;
place5name = name5;
place6score = score6;
place6name = name6;
place7score = score7;
place7name = name7;
place8score = score8;
place8name = name8;
place9score = score9;
place9name = name9;
place10score = score10;
place10name = name10;
place11score = score11;
place11name = name11;
place12score = score12;
place12name = name12;
place13score = score13;
place13name = name13;
place14score = score14;
place14name = name14;
place15score = score15;
place15name = name15;
place16score = score16;
place16name = name16;
place17score = score17;
place17name = name17;
place18score = score18;
place18name = name18;
place19score = score19;
place19name = name19;
place20score = score20;
place20name = name20;
if (score20 < score) {
place20score = score;
place20name = name;
submit = true;
}
if (score19 < score) {
place20score = score19;
place19score = score;
place20name = name19;
place19name = name;
}
if (score18 < score) {
place19score = score18;
place18score = score;
place19name = name18;
place18name = name;
}
if (score17 < score) {
place18score = score17;
place17score = score;
place18name = name17;
place17name = name;
}
if (score16 < score) {
place17score = score16;
place16score = score;
place17name = name16;
place16name = name;
}
if (score15 < score) {
place16score = score15;
place15score = score;
place16name = name15;
place15name = name;
}
if (score14 < score) {
place15score = score14;
place14score = score;
place15name = name14;
place14name = name;
}
if (score13 < score) {
place14score = score13;
place13score = score;
place14name = name13;
place13name = name;
}
if (score12 < score) {
place13score = score12;
place12score = score;
place13name = name12;
place12name = name;
}
if (score11 < score) {
place12score = score11;
place11score = score;
place12name = name11;
place11name = name;
}
if (score10 < score) {
place11score = score10;
place10score = score;
place11name = name10;
place10name = name;
}
if (score9 < score) {
place10score = score9;
place9score = score;
place10name = name9;
place9name = name;
}
if (score8 < score) {
place9score = score8;
place8score = score;
place9name = name8;
place8name = name;
}
if (score7 < score) {
place8score = score7;
place7score = score;
place8name = name7;
place7name = name;
}
if (score6 < score) {
place7score = score6;
place6score = score;
place7name = name6;
place6name = name;
}
if (score5 < score) {
place6score = score5;
place5score = score;
place6name = name5;
place5name = name;
}
if (score4 < score) {
place5score = score4;
place4score = score;
place5name = name4;
place4name = name;
}
if (score3 < score) {
place4score = score3;
place3score = score;
place4name = name3;
place3name = name;
}
if (score2 < score) {
place3score = score2;
place2score = score;
place3name = name2;
place2name = name;
}
if (score1 < score) {
place2score = score1;
place1score = score;
place2name = name1;
place1name = name;
}
allscores = ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((("&name1=" + place1name) + "&score1=") + place1score) + "&name2=") + place2name) + "&score2=") + place2score) + "&name3=") + place3name) + "&score3=") + place3score) + "&name4=") + place4name) + "&score4=") + place4score) + "&name5=") + place5name) + "&score5=") + place5score) + "&name6=") + place6name) + "&score6=") + place6score) + "&name7=") + place7name) + "&score7=") + place7score) + "&name8=") + place8name) + "&score8=") + place8score) + "&name9=") + place9name) + "&score9=") + place9score) + "&name10=") + place10name) + "&score10=") + place10score) + "&name11=") + place11name) + "&score11=") + place11score) + "&name12=") + place12name) + "&score12=") + place12score) + "&name13=") + place13name) + "&score13=") + place13score) + "&name14=") + place14name) + "&score14=") + place14score) + "&name15=") + place15name) + "&score15=") + place15score) + "&name16=") + place16name) + "&score16=") + place16score) + "&name17=") + place17name) + "&score17=") + place17score) + "&name18=") + place18name) + "&score18=") + place18score) + "&name19=") + place19name) + "&score19=") + place19score) + "&name20=") + place20name) + "&score20=") + place20score) + "&read=1";
if (submit) {
loadVariablesNum ("http://www.freepgs.com/mindistortion/data_processing/write_highscore.php", 0, "POST");
}
}
Frame 95
if ((loaded == "") or (read == "")) {
gotoAndPlay (92);
} else {
play();
}
Frame 96
loaded = "";
read = "";
Frame 97
loadVariablesNum ("http://www.freepgs.com/mindistortion/data_processing/read_highscore.php", 0, "POST");
Frame 102
if ((loaded == "") or (read == "")) {
gotoAndPlay (99);
} else {
play();
}
Frame 104
stop();
Frame 105
gotoAndStop (104);
Symbol 17 MovieClip Frame 1
stop();
Symbol 17 MovieClip Frame 2
stop();
Instance of Symbol 17 MovieClip "bubble" in Symbol 18 MovieClip [bubble] Frame 1
onClipEvent (load) {
maxscale = _root.player._xscale / 4;
_parent._xscale = Number(random(maxscale)) + 20;
_parent._yscale = _parent._xscale;
_parent._x = Number(random(350)) + 1;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
reducer = _root.player._xscale / 40;
_root.player._xscale = _root.player._xscale + (_parent._xscale / reducer);
_root.player._yscale = _root.player._xscale;
_root.score = _root.score + int(_parent._width);
_parent.removeMovieClip(this);
}
if (_root.druggie == true) {
gotoAndStop (2);
} else {
gotoAndStop (1);
}
}
Symbol 27 MovieClip Frame 1
stop();
Instance of Symbol 27 MovieClip "spike" in Symbol 28 MovieClip [spiky] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.invincible == true) {
_parent.removeMovieClip(this);
_root.score = _root.score + 10;
} else {
_root.player.play();
_root.play();
}
}
if (_root.druggie == true) {
gotoAndStop (2);
} else {
gotoAndStop (1);
}
}
Instance of Symbol 29 MovieClip in Symbol 30 MovieClip [druggy] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
_root.shading.gotoAndStop(2);
_root.background.gotoAndStop(2);
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(10);
}
_root.announcer.gotoAndPlay(10);
_root.druggie = true;
_root.bonustime = 300;
_root.score = _root.score + 100;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 36 MovieClip in Symbol 37 MovieClip [morpher] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + ystep;
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
maximum = _root.player._xscale / 4;
_root.player._xscale = _root.player._xscale + Number(random(maximum));
_root.player._yscale = _root.player._xscale;
_root.score = _root.score + 100;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 45 MovieClip in Symbol 46 MovieClip [bullettime] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(2)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(5);
}
_root.announcer.gotoAndPlay(5);
_root.bullettime = true;
_root.bonustime = 300;
_root.speed_mod = 0.2;
_root.womb = 50;
_root.score = _root.score + 50;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 50 MovieClip in Symbol 51 MovieClip [faster] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(15);
}
_root.announcer.gotoAndPlay(15);
_root.faster = true;
_root.speed_mod = 2;
_root.womb = 5;
_root.score = _root.score + 50;
_root.bonustime = 300;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 52 MovieClip in Symbol 53 MovieClip [bouncy] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(25);
}
_root.announcer.gotoAndPlay(25);
_root.bonustime = 300;
_root.bouncy = true;
_root.bounce = -1.5;
_root.score = _root.score + 50;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 55 MovieClip in Symbol 56 MovieClip [bubblesonly] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(30);
}
_root.announcer.gotoAndPlay(30);
_root.bonustime = 300;
_root.bubblesonly = true;
_root.score = _root.score + 70;
_parent.removeMovieClip(this);
}
}
Instance of Symbol 61 MovieClip in Symbol 62 MovieClip [invincible] Frame 1
onClipEvent (load) {
_parent._x = Number(random(340)) + 5;
ystep = Number(random(4)) + 2;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + (ystep * _root.speed_mod);
if (400 < _parent._y) {
_parent.removeMovieClip(this);
}
if (this.hitTest(_root.player)) {
if (_root.playsounds) {
_root.jukebox.gotoAndPlay(20);
}
_root.announcer.gotoAndPlay(20);
_root.bonustime = 300;
_root.invincible = true;
_root.score = _root.score + 50;
_parent.removeMovieClip(this);
}
}
Symbol 64 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 2
stop();
Symbol 69 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 2
stop();
Symbol 72 MovieClip Frame 1
stop();
Symbol 75 MovieClip Frame 2
stop();
Symbol 75 MovieClip Frame 4
stop();
Symbol 75 MovieClip Frame 6
stop();
Symbol 84 Button
on (release) {
getURL ("http://www.mindistortion.tk", "_blank");
}
Symbol 94 Button
on (release) {
_root.infobox.gotoAndStop(3);
}
Symbol 95 Button
on (release) {
_root.infobox.gotoAndStop(5);
}
Symbol 98 Button
on (release) {
gotoAndPlay (26);
}
Symbol 105 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 1
stop();
Symbol 108 MovieClip Frame 1
stop();
Symbol 108 MovieClip Frame 2
stop();
Symbol 111 MovieClip Frame 1
stop();
Instance of Symbol 108 MovieClip "bubble" in Symbol 111 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.druggie == true) {
gotoAndStop (2);
} else if (_root.invincible == true) {
gotoAndStop (3);
} else if (_root.bouncy == true) {
gotoAndStop (4);
} else {
gotoAndStop (1);
}
}
Symbol 111 MovieClip Frame 2
_root.druggie = false;
Symbol 111 MovieClip Frame 7
stop();
Symbol 124 MovieClip Frame 2
if (!_root.playsounds) {
stop();
}
stopAllSounds();
Symbol 124 MovieClip Frame 4
stop();
Symbol 124 MovieClip Frame 6
stopAllSounds();
Symbol 124 MovieClip Frame 8
stop();
Symbol 124 MovieClip Frame 11
stopAllSounds();
Symbol 124 MovieClip Frame 13
stop();
Symbol 124 MovieClip Frame 16
stopAllSounds();
Symbol 124 MovieClip Frame 18
stop();
Symbol 124 MovieClip Frame 21
stopAllSounds();
Symbol 124 MovieClip Frame 23
stop();
Symbol 124 MovieClip Frame 26
stopAllSounds();
Symbol 124 MovieClip Frame 28
stop();
Symbol 124 MovieClip Frame 31
stopAllSounds();
Symbol 124 MovieClip Frame 33
stop();
Symbol 128 MovieClip Frame 20
stop();
_parent.play();
Symbol 131 MovieClip Frame 20
stop();
_parent.play();
Symbol 134 MovieClip Frame 20
stop();
_parent.play();
Symbol 137 MovieClip Frame 20
stop();
_parent.play();
Symbol 140 MovieClip Frame 20
stop();
_parent.play();
Symbol 143 MovieClip Frame 20
stop();
_parent.play();
Symbol 144 MovieClip Frame 2
stop();
Symbol 144 MovieClip Frame 6
stop();
Symbol 144 MovieClip Frame 8
gotoAndPlay (1);
Symbol 144 MovieClip Frame 11
stop();
Symbol 144 MovieClip Frame 13
gotoAndPlay (1);
Symbol 144 MovieClip Frame 16
stop();
Symbol 144 MovieClip Frame 18
gotoAndPlay (1);
Symbol 144 MovieClip Frame 21
stop();
Symbol 144 MovieClip Frame 23
gotoAndPlay (1);
Symbol 144 MovieClip Frame 26
stop();
Symbol 144 MovieClip Frame 28
gotoAndPlay (1);
Symbol 144 MovieClip Frame 31
stop();
Symbol 144 MovieClip Frame 33
gotoAndPlay (1);
Symbol 148 Button
on (release) {
gotoAndPlay (6);
}
Symbol 150 Button
on (release) {
gotoAndPlay (1);
}
Symbol 151 MovieClip Frame 2
_root.playsounds = true;
if (_root.bullettime) {
_root.jukebox.gotoAndPlay(5);
} else if (_root.druggie) {
_root.jukebox.gotoAndPlay(10);
} else if (_root.faster) {
_root.jukebox.gotoAndPlay(15);
} else if (_root.invincible) {
_root.jukebox.gotoAndPlay(20);
} else {
_root.jukebox.gotoAndPlay(1);
}
Symbol 151 MovieClip Frame 5
stop();
Symbol 151 MovieClip Frame 7
_root.playsounds = false;
stopAllSounds();
Symbol 151 MovieClip Frame 10
stop();
Symbol 162 Button
on (release) {
i = 1;
while (i < 50) {
removeMovieClip("thingie" + i);
i++;
}
_root.skill = 6;
_root.womb = 10;
i = 1;
counter = 0;
_root.speed_mod = 1;
_root.shading._alpha = 100;
gotoAndPlay (51);
}
Symbol 165 Button
on (release) {
gotoAndPlay (62);
}
Symbol 167 Button
on (release) {
getURL ("http://www.mindistortion.tk", "_blank");
}
Symbol 174 Button
on (release) {
gotoAndPlay (60);
}
Symbol 175 Button
on (keyPress "$") {
bla = 0;
}
on (keyPress "/") {
bla = 0;
}
on (keyPress "+") {
bla = 0;
}
on (keyPress "&") {
bla = 0;
}
on (keyPress "{") {
bla = 0;
}
on (keyPress "}") {
bla = 0;
}
on (keyPress "?") {
bla = 0;
}
Symbol 177 Button
on (release) {
if (_root.name != "") {
send = true;
gotoAndPlay (76);
}
}