Frame 1
loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
percentbytes = int(loadedbytes / (totalbytes / 100));
loader.gotoAndStop(percentbytes);
Instance of Symbol 131 MovieClip in Frame 1
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Frame 2
if (loadedbytes == totalbytes) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stopAllSounds();
stop();
Instance of Symbol 147 MovieClip in Frame 3
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Frame 4
stop();
orb_id = 0;
soundbut = new Sound();
soundbut.attachSound("takenball");
Frame 5
function appear_ball(tubo_id, ball_color) {
_root.shoot.start(0, 1);
if (tubo_id == 1) {
ball_side = "left";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x - (_root["tubo" + tubo_id]._width / 2), _y:_root["tubo" + tubo_id]._y, side:ball_side});
}
if (tubo_id == 2) {
ball_side = "left";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x - (_root["tubo" + tubo_id]._width / 2), _y:_root["tubo" + tubo_id]._y, side:ball_side});
}
if (tubo_id == 3) {
ball_side = "up";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x, _y:_root["tubo" + tubo_id]._y - (_root["tubo" + tubo_id]._height / 2), side:ball_side});
}
if (tubo_id == 4) {
ball_side = "up";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x, _y:_root["tubo" + tubo_id]._y - (_root["tubo" + tubo_id]._height / 2), side:ball_side});
}
if (tubo_id == 5) {
ball_side = "right";
ball_id++;
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x + (_root["tubo" + tubo_id]._width / 2), _y:_root["tubo" + tubo_id]._y, side:ball_side});
}
if (tubo_id == 6) {
ball_side = "right";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x + (_root["tubo" + tubo_id]._width / 2), _y:_root["tubo" + tubo_id]._y, side:ball_side});
}
if (tubo_id == 7) {
ball_side = "down";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x, _y:_root["tubo" + tubo_id]._y + (_root["tubo" + tubo_id]._height / 2), side:ball_side});
}
if (tubo_id == 8) {
ball_side = "down";
ball_id++;
_root.attachMovie(ball_color + "ball", (ball_color + "ball") + ball_id, _root.getNextHighestDepth(), {_x:_root["tubo" + tubo_id]._x, _y:_root["tubo" + tubo_id]._y + (_root["tubo" + tubo_id]._height / 2), side:ball_side});
}
}
function score_digit(posx, posy, score_number) {
digits = String(score_number);
digit0 = digits.charAt(0);
digits = String(score_number);
digit0 = digits.charAt(0);
digit1 = digits.charAt(1);
digit2 = digits.charAt(2);
digit3 = digits.charAt(3);
((digit0 == "0") ? ((digit0 = "cero")) : null);
((digit1 == "0") ? ((digit1 = "cero")) : null);
((digit2 == "0") ? ((digit2 = "cero")) : null);
((digit3 == "0") ? ((digit3 = "cero")) : null);
((digit4 == "0") ? ((digit4 = "cero")) : null);
((digit5 == "0") ? ((digit5 = "cero")) : null);
if (score_number <= 9) {
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit0);
}
if ((score_number > 9) && (score_number <= 99)) {
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx - 12.5, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit0);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx + 12.5, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit1);
}
if ((score_number > 99) && (score_number <= 999)) {
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx - 20, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit0);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx + 0, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit1);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx + 20, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit2);
}
if ((score_number > 999) && (score_number <= 9999)) {
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx - 45, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit0);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx - 20, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit1);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx + 5, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit2);
scoredigit_id++;
_root.attachMovie("scoredigit", "scoredigit" + scoredigit_id, _root.getNextHighestDepth(), {_x:posx + 30, _y:posy});
_root["scoredigit" + scoredigit_id].scoredig.gotoAndStop(digit3);
}
}
function level_config() {
((level == 1) ? ((appear_fps_level = 100)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)stopAllSounds()undefined(music_playing = 2)music2.start(0, 99999)) : null);
((level == 2) ? ((appear_fps_level = 80)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 3) ? ((appear_fps_level = 70)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 4.5)(sp_y = 4.5)(minutos = 0)(segundos = 30)) : null);
((level == 4) ? ((appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 5) ? ((appear_fps_level = 40)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 6) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 7) ? ((appear_fps_level = 20)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 8) ? ((appear_fps_level = 15)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 9) ? ((appear_fps_level = 45)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 10) ? (evil_id++_root.attachMovie("-evil", "evil" + evil_id, _root.getNextHighestDepth(), {_x:287.3, _y:284.3})(appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 0)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 2)(segundos = 0)stopAllSounds()undefined(music_playing = 1)music1.start(0, 99999)) : null);
((level == 11) ? ((appear_fps_level = 100)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 12) ? ((appear_fps_level = 80)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 13) ? ((appear_fps_level = 70)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 4.5)(sp_y = 4.5)(minutos = 0)(segundos = 30)) : null);
((level == 14) ? ((appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 15) ? ((appear_fps_level = 40)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 16) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 17) ? ((appear_fps_level = 20)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 18) ? ((appear_fps_level = 15)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 19) ? ((appear_fps_level = 45)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 20) ? (evil_id++_root.attachMovie("-evil", "evil" + evil_id, _root.getNextHighestDepth(), {_x:287.3, _y:284.3})(appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 1)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 2)(segundos = 0)stopAllSounds()undefined(music_playing = 1)music1.start(0, 99999)) : null);
((level == 21) ? ((appear_fps_level = 100)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 22) ? ((appear_fps_level = 80)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 23) ? ((appear_fps_level = 70)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 4.5)(sp_y = 4.5)(minutos = 0)(segundos = 30)) : null);
((level == 24) ? ((appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 25) ? ((appear_fps_level = 40)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 26) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 27) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 2)(sp_y = 3)(minutos = 0)(segundos = 30)) : null);
((level == 28) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 3.5)(sp_y = 3.5)(minutos = 0)(segundos = 30)) : null);
((level == 29) ? ((appear_fps_level = 45)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 30) ? (evil_id++_root.attachMovie("-evil", "evil" + evil_id, _root.getNextHighestDepth(), {_x:287.3, _y:284.3})(appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 2)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 2)(segundos = 0)) : null);
((level == 31) ? ((appear_fps_level = 100)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 32) ? ((appear_fps_level = 80)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 33) ? ((appear_fps_level = 70)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 4.5)(sp_y = 4.5)(minutos = 0)(segundos = 30)) : null);
((level == 34) ? ((appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 35) ? ((appear_fps_level = 40)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 36) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 37) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 2)(sp_y = 3)(minutos = 0)(segundos = 30)) : null);
((level == 38) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 3.5)(sp_y = 3.5)(minutos = 0)(segundos = 20)) : null);
((level == 39) ? ((appear_fps_level = 45)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 40) ? (evil_id++_root.attachMovie("-evil", "evil" + evil_id, _root.getNextHighestDepth(), {_x:287.3, _y:284.3})(appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 3)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 2)(segundos = 0)stopAllSounds()undefined(music_playing = 3)music3.start(0, 99999)) : null);
((level == 41) ? ((appear_fps_level = 100)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 42) ? ((appear_fps_level = 80)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
((level == 43) ? ((appear_fps_level = 70)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 4.5)(sp_y = 4.5)(minutos = 0)(segundos = 30)) : null);
((level == 44) ? ((appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 45) ? ((appear_fps_level = 40)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 46) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 2)(sp_y = 2)(minutos = 0)(segundos = 30)) : null);
((level == 47) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 2)(sp_y = 3)(minutos = 0)(segundos = 30)) : null);
((level == 48) ? ((appear_fps_level = 30)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 3.5)(sp_y = 3.5)(minutos = 0)(segundos = 30)) : null);
((level == 49) ? ((appear_fps_level = 45)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 5)(sp_y = 5)(minutos = 0)(segundos = 30)) : null);
((level == 50) ? (evil_id++_root.attachMovie("-evil", "evil" + evil_id, _root.getNextHighestDepth(), {_x:287.3, _y:284.3})(appear_fps_level = 50)(bonus_fps = 300)(max_color_level = 4)(bonus_level = 5)(sp_x = 4)(sp_y = 4)(minutos = 0)(segundos = 30)) : null);
}
fps_appear = 10;
ball_id = 0;
sp_x = 3;
sp_y = 3;
orb_id = 1;
ball_color_number = 0;
ball_color_name = "0";
ball_side = "0";
tubo_number = 0;
appear_fps = 0;
appear_fps_level = 1;
var ball_name = Array(4);
ball_name[0] = "red";
ball_name[1] = "blue";
ball_name[2] = "green";
ball_name[3] = "yellow";
ball_name[4] = "purple";
var bonus_name = Array(4);
bonus_name[0] = "speed";
bonus_name[1] = "score++";
bonus_name[2] = "big";
bonus_name[3] = "small";
bonus_name[4] = "low";
bonus_name[5] = "health++";
score = 0;
scoredigit_id = 0;
red = new Object();
red.ra = 100;
red.rb = 0;
red.ga = 0;
red.gb = 0;
red.ba = 0;
red.bb = 0;
red.aa = 100;
red.ab = 0;
normal = new Object();
normal.ra = 100;
normal.rb = 0;
normal.ga = 100;
normal.gb = 0;
normal.ba = 100;
normal.bb = 0;
normal.aa = 100;
normal.ab = 0;
level = 1;
bonus_fps = 300;
appear_fps_level = 100;
max_color_level = 0;
ball_number = 1;
bonus_number = 0;
bonus_level = 5;
minutos = 0;
segundos = 20;
fps_time = 30;
bonus_type_name = "0";
bonus = false;
changing_level = false;
evil_id = 1;
health_total = 253.9;
music_playing = 2;
level_config();
stop();
music1 = new Sound();
music1.attachSound("music1");
music2 = new Sound();
music2.attachSound("music2");
music3 = new Sound();
music3.attachSound("music3");
starting_game = true;
changing_level = true;
_root.startinggame.play();
sound1 = new Sound();
sound1.attachSound("soundsizedown");
sound2 = new Sound();
sound2.attachSound("takespeedup");
takeball = new Sound();
takeball.attachSound("takeball");
shoot = new Sound();
shoot.attachSound("shoot");
button = new Sound();
button.attachSound("button");
hit = new Sound();
hit.attachSound("hit");
gameover = false;
win = false;
pause_game = false;
stopAllSounds();
_root.music2.start(0, 9999);
onEnterFrame = function () {
if (pause_game == false) {
if (gameover == false) {
if (changing_level == false) {
bonus_fps--;
if (bonus_fps > 0) {
if (appear_fps > 0) {
appear_fps--;
} else {
i = 1;
while (i <= ball_number) {
tubo_number = Math.round(Math.random() * 7) + 1;
ball_color_number = Math.round(Math.random() * max_color_level);
ball_color_name = ball_name[ball_color_number];
_root["tubo" + tubo_number].play();
appear_fps = appear_fps_level;
i++;
}
}
}
if (bonus_fps < 0) {
tubo_number = Math.round(Math.random() * 7) + 1;
bonus_number = Math.round(Math.random() * bonus_level);
bonus_type_name = bonus_name[bonus_number];
_root["tubo" + tubo_number].play();
bonus = true;
appear_fps = appear_fps_level;
bonus_fps = 300;
}
if (fps_time >= 0) {
fps_time--;
} else if (fps_time < 0) {
segundos--;
fps_time = 30;
}
if (segundos < 0) {
minutos--;
segundos = 60;
}
if (((segundos <= 0) && (minutos <= 0)) && (win == false)) {
_root.HPScoreService.postScore(score, "");
_root.level = _root.level + 1;
_root.changinglevel.play();
changing_level = true;
}
}
}
}
if ((level > 50) && (win == false)) {
win = true;
changing_level = true;
_root.changinglevel.gotoAndPlay("win");
}
if (((Key.isDown(32) && (pause_game == false)) && (changing_level == false)) && (_root.pausegame._currentframe == 1)) {
_root.pausegame.play();
pause_game = true;
}
if ((Key.isDown(32) && (pause_game == true)) && (_root.pausegame._currentframe == 15)) {
_root.pausegame.play();
}
};
Instance of Symbol 300 MovieClip "nominite" in Frame 5
onClipEvent (load) {
spx = 0;
spy = 0;
sp_limit = 5;
grav = 1;
sp_bound = 3;
bubble_id = 1;
bubble_size = Math.random() * 30;
bubble_fps = 1;
current_color = "red";
nominite_hit = false;
nominite_hit_fps = 1;
sp_col = 5;
health = 253.9;
small = false;
small_fps = 0;
big = false;
big_fps = 0;
speed = false;
speed_fps = 0;
low = false;
low_fps = 0;
originalwidth = _width;
originalheight = _height;
posx = this._x;
posy = this._y;
}
onClipEvent (enterFrame) {
if (_root.pause_game == false) {
if (_root.changing_level == false) {
_x = (_x + spx);
_y = (_y + spy);
((Key.isDown(39) && (!_root.bg.hitTest(_x + (_width / 2), _y, true))) ? ((spx = spx + grav)) : (((Key.isDown(37) && (!_root.bg.hitTest(_x - (_width / 2), _y, true))) ? ((spx = spx - grav)) : null)));
(_root.bg.hitTest(_x + (_width / 2), _y, true) ? ((spx = -sp_bound)) : null);
(_root.bg.hitTest(_x - (_width / 2), _y, true) ? ((spx = sp_bound)) : null);
((Key.isDown(40) && (!_root.bg.hitTest(_x, _y + (_height / 2), true))) ? ((spy = spy + grav)) : (((Key.isDown(38) && (!_root.bg.hitTest(_x, _y - (_height / 2), true))) ? ((spy = spy - grav)) : null)));
(_root.bg.hitTest(_x, _y + (_height / 2), true) ? ((spy = -sp_bound)) : null);
(_root.bg.hitTest(_x, _y - (_height / 2), true) ? ((spy = sp_bound)) : null);
if (spx > sp_limit) {
spx = sp_limit;
}
if (spx < (-sp_limit)) {
spx = -sp_limit;
}
if (spy > sp_limit) {
spy = sp_limit;
}
if (spy < (-sp_limit)) {
spy = -sp_limit;
}
if (Key.isDown(65)) {
current_color = "red";
this.gotoAndStop("red");
}
if (Key.isDown(83)) {
current_color = "blue";
this.gotoAndStop("blue");
}
if (Key.isDown(68)) {
current_color = "green";
this.gotoAndStop("green");
}
if (Key.isDown(70)) {
current_color = "yellow";
this.gotoAndStop("yellow");
}
if (Key.isDown(71)) {
current_color = "purple";
this.gotoAndStop("purple");
}
((bubble_fps > 0) ? (bubble_fps--) : (((bubble_fps <= 0) ? ((bubble_size = Math.random() * 30)_root.attachMovie("bubble", "bubble" + bubble_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 30)) - 15, _y:this._y - (_height / 2), _width:bubble_size, _height:bubble_size})(bubble_fps = 1)) : null)));
if ((nominite_hit == true) && (nominite_hit_fps >= 0)) {
red = new Color(this);
red.setTransform(_root.red);
nominite_hit_fps--;
} else if ((nominite_hit == true) && (nominite_hit_fps < 0)) {
normal = new Color(this);
normal.setTransform(_root.normal);
nominite_hit = false;
nominite_hit_fps = 2;
}
if ((big == true) && (big_fps > 0)) {
big_fps--;
}
if ((big == true) && (big_fps <= 0)) {
big = false;
_width = originalwidth;
_height = originalheight;
big_fps = 200;
}
if ((small == true) && (small_fps > 0)) {
small_fps--;
}
if ((small == true) && (small_fps <= 0)) {
small = false;
_width = originalwidth;
_height = originalheight;
small_fps = 200;
}
if ((speed == true) && (speed_fps > 0)) {
speed_fps--;
}
if ((speed == true) && (speed_fps <= 0)) {
speed = false;
sp_limit = 5;
speed_fps = 200;
}
if ((low == true) && (low_fps > 0)) {
low_fps--;
}
if ((low == true) && (low_fps <= 0)) {
low = false;
sp_limit = 5;
low_fps = 200;
}
}
if ((health <= 0) && (_root.gameover == false)) {
_root.gameover = true;
_root.changing_level = true;
_root.changinglevel.gotoAndPlay("gameover");
}
}
}
Instance of Symbol 307 MovieClip in Frame 5
onClipEvent (load) {
soundyes = true;
soundnot = false;
}
on (release) {
if ((soundyes == true) && (soundnot == false)) {
stopAllSounds();
soundyes = false;
soundnot = true;
this.gotoAndStop(2);
} else if ((soundyes == false) && (soundnot == true)) {
_root["music" + _root.music_playing].start(0, 9999);
soundyes = true;
soundnot = false;
this.gotoAndStop(1);
}
}
Instance of Symbol 332 MovieClip "score_counter" in Frame 5
onClipEvent (enterFrame) {
digits = String(_root.score);
process_score = "" + digits;
while (process_score.length <= 7) {
process_score = "0" + process_score;
}
i = 1;
while (i < 10) {
showscore = process_score.charAt(i - 1);
showscore++;
this["dig" + i].gotoAndStop(showscore);
i++;
}
}
Instance of Symbol 336 MovieClip "level_counter" in Frame 5
onClipEvent (enterFrame) {
digits = String(_root.level);
level_process = "" + digits;
while (level_process.length < 2) {
level_process = "0" + level_process;
}
j = 1;
while (j < 3) {
level_digit = level_process.charAt(j - 1);
level_digit++;
this["dig" + j].gotoAndStop(level_digit);
j++;
}
}
Instance of Symbol 340 MovieClip in Frame 5
onClipEvent (load) {
}
onClipEvent (enterFrame) {
_width = _root.nominite.health;
}
Instance of Symbol 352 MovieClip "time" in Frame 5
onClipEvent (load) {
segundos = _root.segundos;
minutos = _root.minutos;
}
onClipEvent (enterFrame) {
segundos = _root.segundos;
minutos = _root.minutos;
digits = String(segundos);
process_segundos = "" + digits;
while (process_segundos.length < 2) {
process_segundos = "0" + process_segundos;
}
i = 1;
while (i < 3) {
segundos_digit = process_segundos.charAt(i - 1);
segundos_digit++;
this["dig" + i].gotoAndStop(segundos_digit);
i++;
}
digits2 = String(minutos);
digit_minutos = digits2.charAt(0);
trace(digit_minutos++);
this.dig0.gotoAndStop(digit_minutos);
}
Instance of Symbol 394 MovieClip "startinggame" in Frame 5
onClipEvent (enterFrame) {
digits = String(_root.level);
level_process = "" + digits;
while (level_process.length < 2) {
level_process = "0" + level_process;
}
j = 1;
while (j < 3) {
level_digit = level_process.charAt(j - 1);
level_digit++;
this.level_appear["dig" + j].gotoAndStop(level_digit);
j++;
}
}
Instance of Symbol 437 MovieClip "changinglevel" in Frame 5
onClipEvent (enterFrame) {
digits = String(_root.level);
level_process = "" + digits;
while (level_process.length < 2) {
level_process = "0" + level_process;
}
j = 1;
while (j < 3) {
level_digit = level_process.charAt(j - 1);
level_digit++;
this.level_appear["dig" + j].gotoAndStop(level_digit);
j++;
}
}
Symbol 6 MovieClip [coin] Frame 1
spx = (Math.random() * 8) - 4;
if (spx > 0) {
spx = (Math.random() * 2) + 2;
}
if (spx < 0) {
spx = -((Math.random() * 2) + 2);
}
spy = -5;
grav = 0.05;
spx_frenado = 4;
spy_frenado = 4;
sp_limit = 4;
fps = 50;
end = false;
end_gone = false;
taken = false;
end_taken = false;
area_take = 100;
k = 1;
orb_size = 0;
score_string = "0";
score_number_height = 20;
score_number_width = 10;
this.onEnterFrame = function () {
_x = (_x + spx);
_y = (_y + spy);
if (taken == false) {
spy = spy + 0.2;
if ((!_root.bg.hitTest(this._x + (_width / 2), this._y, true)) && (spx > 0)) {
spx = spx - grav;
}
if ((!_root.bg.hitTest(this._x - (_width / 2), this._y, true)) && (spx < 0)) {
spx = spx + grav;
}
(_root.bg.hitTest(this._x + (_width / 2), this._y, true) ? ((spx = spx - spx_frenado)) : null);
(_root.bg.hitTest(this._x - (_width / 2), this._y, true) ? ((spx = spx + spx_frenado)) : null);
(_root.bg.hitTest(this._x, this._y + (_height / 2), true) ? ((spy = spy - spy_frenado)) : null);
(_root.bg.hitTest(this._x, this._y - (_height / 2), true) ? ((spy = spy + spy_frenado)) : null);
if (spx > sp_limit) {
spx = sp_limit;
}
if (spx < (-sp_limit)) {
spx = -sp_limit;
}
if (spy > sp_limit) {
spy = sp_limit;
}
if (spy < (-sp_limit)) {
spy = -sp_limit;
}
}
if ((fps <= 0) && (end_gone == false)) {
this.gotoAndPlay("end1");
end_gone = true;
} else if (fps >= 0) {
fps = fps - 0.2;
}
if (taken == false) {
(((((_root.plankton._x >= ((_x - (_width / 2)) - area_take)) && (_root.plankton._x <= ((_x + (_width / 2)) + area_take))) && (_root.plankton._y >= ((_y - (_height / 2)) - area_take))) && (_root.plankton._y <= ((_y + (_height / 2)) + area_take))) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x + (_width / 2)) + area_take, _y, true) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x - (_width / 2)) - area_take, _y, true) ? ((taken = true)) : null);
(_root.plankton.hitTest(_x, (_y + (_height / 2)) + area_take, true) ? ((taken = true)) : null);
(_root.plankton.hitTest(_x, (_y - (_height / 2)) - area_take, true) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x + (_width / 2)) + area_take, (_y + (_height / 2)) + area_take, true) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x + (_width / 2)) + area_take, (_y - (_height / 2)) - area_take, true) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x - (_width / 2)) - area_take, (_y + (_height / 2)) + area_take, true) ? ((taken = true)) : null);
(_root.plankton.hitTest((_x - (_width / 2)) - area_take, (_y - (_height / 2)) - area_take, true) ? ((taken = true)) : null);
}
if ((taken == true) && (end_taken == false)) {
grav = 3;
sp_limit = 10;
((_root.plankton._x < _x) ? ((spx = spx - grav)) : null);
((_root.plankton._x > _x) ? ((spx = spx + grav)) : null);
((_root.plankton._y < _y) ? ((spy = spy - grav)) : null);
((_root.plankton._y > _y) ? ((spy = spy + grav)) : null);
if (spx > sp_limit) {
spx = sp_limit;
}
if (spx < (-sp_limit)) {
spx = -sp_limit;
}
if (spy > sp_limit) {
spy = sp_limit;
}
if (spy < (-sp_limit)) {
spy = -sp_limit;
}
(_root.plankton.hitTest(_x + (_width / 2), _y, true) ? ((end_taken = true)(spx = 0)(spy = 0)) : null);
(_root.plankton.hitTest(_x - (_width / 2), _y, true) ? ((end_taken = true)(spx = 0)(spy = 0)) : null);
(_root.plankton.hitTest(_x, _y + (_height / 2), true) ? ((end_taken = true)(spx = 0)(spy = 0)) : null);
(_root.plankton.hitTest(_x, _y - (_height / 2), true) ? ((end_taken = true)(spx = 0)(spy = 0)) : null);
}
if ((end_taken == true) && (end == false)) {
this.gotoAndPlay("end2");
if (score_total <= 9) {
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x - 22, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(score_total);
}
if ((score_total > 9) && (score_total <= 99)) {
ns++;
digits = String(score_total);
digit1 = digits.charAt(0);
digit2 = digits.charAt(1);
if (digit2 == "0") {
digit2 = "cero";
}
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x - 6, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(digit1);
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x + 6, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(digit2);
}
if ((score_total > 99) && (score_total <= 999)) {
digits = String(score_total);
digit1 = digits.charAt(0);
digit2 = digits.charAt(1);
if (digit2 == "0") {
digit2 = "cero";
}
digit3 = digits.charAt(2);
if (digit3 == "0") {
digit3 = "cero";
}
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x - 12, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(digit1);
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(digit2);
_root.ns++;
_root.attachMovie("number_score", "number_score" + _root.ns, _root.getNextHighestDepth(), {_x:this._x + 12, _y:this._y, _width:score_number_width, _height:score_number_height});
_root["number_score" + _root.ns].hitcost.gotoAndStop(digit3);
}
w = 1;
while (w <= 5) {
k++;
orb_size = Math.random() * 60;
_root.attachMovie("orb2", "orb2coin" + k, _root.getNextHighestDepth(), {_x:this._x + ((Math.random() * 50) - 25), _y:this._y, _width:orb_size, _height:orb_size});
w++;
}
end = true;
}
};
Symbol 6 MovieClip [coin] Frame 10
stop();
Symbol 6 MovieClip [coin] Frame 28
this.removeMovieClip();
Symbol 6 MovieClip [coin] Frame 29
play();
Symbol 6 MovieClip [coin] Frame 39
this.removeMovieClip();
Symbol 9 MovieClip [orb_blood] Frame 10
this.removeMovieClip();
Symbol 12 MovieClip [bubble] Frame 30
this.removeMovieClip();
Symbol 16 MovieClip [excelent] Frame 35
this.removeMovieClip();
Symbol 20 MovieClip [great] Frame 38
this.removeMovieClip();
Symbol 24 MovieClip [good] Frame 33
stop();
Symbol 27 MovieClip [orb6] Frame 75
this.removeMovieClip();
Symbol 28 MovieClip [orb] Frame 19
this.removeMovieClip();
Symbol 30 MovieClip [orb2] Frame 11
this.removeMovieClip();
Symbol 34 MovieClip [redball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 130;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
_root.nominite.health = _root.nominite.health - 5;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if ((_root.nominite.current_color == "red") && (taken == false)) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.takeball.start(0, 1);
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
if (score_taken >= 90) {
letras_id++;
_root.attachMovie("excelent", "excelent" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if ((score_taken < 90) && (score_taken >= 60)) {
letras_id++;
_root.attachMovie("great", "great" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if (score_taken < 60) {
letras_id++;
_root.attachMovie("good", "good" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 34 MovieClip [redball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 34 MovieClip [redball] Frame 10
this.removeMovieClip();
Symbol 38 MovieClip [blueball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 200;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
_root.nominite.health = _root.nominite.health - 5;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if ((_root.nominite.current_color == "blue") && (taken == false)) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.takeball.start(0, 1);
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
if (score_taken >= 170) {
letras_id++;
_root.attachMovie("excelent", "excelent" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if ((score_taken < 170) && (score_taken >= 130)) {
letras_id++;
_root.attachMovie("great", "great" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if (score_taken < 130) {
letras_id++;
_root.attachMovie("good", "good" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 38 MovieClip [blueball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 38 MovieClip [blueball] Frame 10
this.removeMovieClip();
Symbol 42 MovieClip [greenball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 300;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
_root.nominite.health = _root.nominite.health - 5;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if ((_root.nominite.current_color == "green") && (taken == false)) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.takeball.start(0, 1);
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
if (score_taken >= 270) {
letras_id++;
_root.attachMovie("excelent", "excelent" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if ((score_taken < 270) && (score_taken >= 240)) {
letras_id++;
_root.attachMovie("great", "great" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if (score_taken < 240) {
letras_id++;
_root.attachMovie("good", "good" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 42 MovieClip [greenball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 42 MovieClip [greenball] Frame 10
this.removeMovieClip();
Symbol 46 MovieClip [purpleball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 500;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
_root.nominite.health = _root.nominite.health - 5;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if ((_root.nominite.current_color == "purple") && (taken == false)) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.takeball.start(0, 1);
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
if (score_taken >= 470) {
letras_id++;
_root.attachMovie("excelent", "excelent" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if ((score_taken < 470) && (score_taken >= 440)) {
letras_id++;
_root.attachMovie("great", "great" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if (score_taken < 440) {
letras_id++;
_root.attachMovie("good", "good" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 46 MovieClip [purpleball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 46 MovieClip [purpleball] Frame 10
this.removeMovieClip();
Symbol 50 MovieClip [yellowball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 400;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
_root.nominite.health = _root.nominite.health - 5;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if ((_root.nominite.current_color == "yellow") && (taken == false)) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.takeball.start(0, 1);
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
if (score_taken >= 370) {
letras_id++;
_root.attachMovie("excelent", "excelent" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if ((score_taken < 370) && (score_taken >= 350)) {
letras_id++;
_root.attachMovie("great", "great" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
if (score_taken < 350) {
letras_id++;
_root.attachMovie("good", "good" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
}
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 50 MovieClip [yellowball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 50 MovieClip [yellowball] Frame 10
this.removeMovieClip();
Symbol 53 MovieClip [orb3] Frame 10
this.removeMovieClip();
Symbol 74 MovieClip Frame 1
stop();
Symbol 75 MovieClip [scoredigit] Frame 25
removeMovieClip(this);
Symbol 82 MovieClip [-evil] Frame 1
stop();
spx = 0;
spy = 0;
sp_limit = 3;
grav = (Math.random() * 0.5) + 0.1;
_width = ((Math.random() * 60) + 30);
_height = (_width + 2);
fps_disappear = 300;
gone = false;
deleter = _root.level + 1;
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (_root.changing_level == false) {
if ((fps_disappear < 0) && (gone == false)) {
this.gotoAndPlay("gone");
gone = true;
}
if (fps_disappear >= 0) {
_x = (_x + spx);
_y = (_y + spy);
((_x > _root.nominite._x) ? ((spx = spx - grav)) : null);
((_x < _root.nominite._x) ? ((spx = spx + grav)) : null);
((_y > _root.nominite._y) ? ((spy = spy - grav)) : null);
((_y < _root.nominite._y) ? ((spy = spy + grav)) : null);
((spx > sp_limit) ? ((spx = sp_limit)) : null);
((spx < (-sp_limit)) ? ((spx = -sp_limit)) : null);
((spy > sp_limit) ? ((spy = sp_limit)) : null);
((spy < (-sp_limit)) ? ((spy = -sp_limit)) : null);
(_root.bg.hitTest(this._x + (_width / 2), this._y, true) ? ((spx = spx - sp_limit)) : null);
(_root.bg.hitTest(this._x - (_width / 2), this._y, true) ? ((spx = spx + sp_limit)) : null);
(_root.bg.hitTest(this._x, this._y + (_height / 2), true) ? ((spy = spy - sp_limit)) : null);
(_root.bg.hitTest(this._x, this._y - (_height / 2), true) ? ((spy = spy + sp_limit)) : null);
if (_root.nominite.nominite_hit == false) {
if (_root.nominite.hitTest(this._x + (_width / 2), this._y, true)) {
spx = spx - sp_limit;
_root.nominite.spx = _root.nominite.sp_col;
_root.nominite.nominite_hit = true;
i = 1;
while (i <= 5) {
orb_blood_size = Math.random() * 50;
_root.attachMovie("orb_blood", "orb_blood" + orb_blood_id, _root.getNextHighestDepth(), {_x:(_root.nominite._x + (Math.random() * 80)) - 40, _y:_root.nominite._y, _height:orb_blood_size, _width:orb_blood_size});
i++;
}
_root.nominite.health = _root.nominite.health - 2;
_root.hit.start(0, 1);
_root.nominite.nominite_hit = true;
}
if (_root.nominite.hitTest(this._x - (_width / 2), this._y, true)) {
spx = spx + sp_limit;
_root.nominite.spx = -_root.nominite.sp_col;
_root.nominite.nominite_hit = true;
i = 1;
while (i <= 5) {
orb_blood_size = Math.random() * 50;
_root.attachMovie("orb_blood", "orb_blood" + orb_blood_id, _root.getNextHighestDepth(), {_x:(_root.nominite._x + (Math.random() * 80)) - 40, _y:_root.nominite._y, _height:orb_blood_size, _width:orb_blood_size});
i++;
}
_root.nominite.health = _root.nominite.health - 2;
_root.hit.start(0, 1);
_root.nominite.nominite_hit = true;
}
if (_root.nominite.hitTest(this._x, this._y + (_height / 2), true)) {
spy = spy - sp_limit;
_root.nominite.spy = _root.nominite.sp_col;
i = 1;
while (i <= 5) {
orb_blood_size = Math.random() * 50;
_root.attachMovie("orb_blood", "orb_blood" + orb_blood_id, _root.getNextHighestDepth(), {_x:(_root.nominite._x + (Math.random() * 80)) - 40, _y:_root.nominite._y, _height:orb_blood_size, _width:orb_blood_size});
i++;
}
_root.nominite.health = _root.nominite.health - 2;
_root.hit.start(0, 1);
_root.nominite.nominite_hit = true;
}
if (_root.nominite.hitTest(this._x, this._y - (_height / 2), true)) {
spy = spy + sp_limit;
_root.nominite.spy = -_root.nominite.sp_col;
i = 1;
while (i <= 5) {
orb_blood_size = Math.random() * 50;
_root.attachMovie("orb_blood", "orb_blood" + orb_blood_id, _root.getNextHighestDepth(), {_x:(_root.nominite._x + (Math.random() * 80)) - 40, _y:_root.nominite._y, _height:orb_blood_size, _width:orb_blood_size});
i++;
}
_root.nominite.health = _root.nominite.health - 2;
_root.hit.start(0, 1);
_root.nominite.nominite_hit = true;
}
}
}
}
if ((((_root.level == deleter) && (_root.changing_level == true)) && (gone == false)) || (((_root.changing_level == true) && (gone == false)) && (_root.gameover == true))) {
this.gotoAndPlay("gone");
gone = true;
}
}
};
Symbol 82 MovieClip [-evil] Frame 7
this.removeMovieClip();
Symbol 86 MovieClip [speedball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 130;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
_root.nominite.speed = true;
_root.nominite.speed_fps = _root.nominite.speed_fps + 200;
_root.nominite.sp_limit = 10;
_root.sound2.start(0, 1);
letras_id++;
_root.attachMovie("speedup", "speedup" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 86 MovieClip [speedball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 86 MovieClip [speedball] Frame 10
this.removeMovieClip();
Symbol 90 MovieClip [lowball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 130;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
_root.nominite.low = true;
_root.nominite.low_fps = _root.nominite.low_fps + 200;
_root.nominite.sp_limit = 3;
_root.sound1.start(0, 1);
letras_id++;
_root.attachMovie("speeddown", "speeddown" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 90 MovieClip [lowball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 90 MovieClip [lowball] Frame 10
this.removeMovieClip();
Symbol 96 MovieClip [bigball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 130;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps <= 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
_root.nominite.big = true;
_root.nominite.big_fps = _root.nominite.big_fps + 200;
_root.nominite._width = 140;
_root.nominite._height = 120;
_root.sound2.start(0, 1);
letras_id++;
_root.attachMovie("sizeup", "sizeup" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 96 MovieClip [bigball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 96 MovieClip [bigball] Frame 10
this.removeMovieClip();
Symbol 101 MovieClip [smallball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 130;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
_root.nominite.small = true;
_root.nominite.small_fps = _root.nominite.small_fps + 200;
_root.nominite._width = 25;
_root.nominite._height = 23;
_root.sound1.start(0, 1);
letras_id++;
_root.attachMovie("sizedown", "sizedown" + letras_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y});
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 101 MovieClip [smallball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 101 MovieClip [smallball] Frame 10
this.removeMovieClip();
Symbol 102 MovieClip [score++ball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 1000;
letras_id = 0;
orb_fps = 1;
orb_fps_total = 1;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
fps_score = fps_score - 1;
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "right") {
_x = (_x + spx);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "down") {
_y = (_y + spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
}
if (side == "up") {
_y = (_y - spy);
if (orb_fps >= 1) {
orb_fps--;
} else if (orb_fps < 0) {
orb_fps = orb_fps_total;
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 102 MovieClip [score++ball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 5) {
_root.orb_id++;
orb_size = Math.random() * 120;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
_root.orb_id++;
orb_size = Math.random() * 120;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
_root.orb_id++;
orb_size = Math.random() * 120;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 102 MovieClip [score++ball] Frame 10
this.removeMovieClip();
Symbol 106 MovieClip [sizedown] Frame 37
this.removeMovieClip();
Symbol 110 MovieClip [speeddown] Frame 37
this.removeMovieClip();
Symbol 114 MovieClip [sizeup] Frame 37
this.removeMovieClip();
Symbol 118 MovieClip [speedup] Frame 34
this.removeMovieClip();
Symbol 121 MovieClip [health++ball] Frame 1
spx = _root.sp_x;
spy = _root.sp_y;
orb_size = Math.random() * 20;
side_move_fps = 30;
side_move = true;
taken = false;
fps_score = 10;
letras_id = 0;
stop();
this.onEnterFrame = function () {
if (_root.pause_game == false) {
if (taken == false) {
i = 1;
while (i <= 8) {
if (this.hitTest(_root["tubotouch" + i])) {
taken = true;
gotoAndPlay ("taken");
}
i++;
}
if (side == "left") {
_x = (_x - spx);
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
if (side == "right") {
_x = (_x + spx);
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - 10, _y:(this._y + (Math.random() * 20)) - 10, _width:orb_size, _height:orb_size});
}
if (side == "down") {
_y = (_y + spy);
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y - 10, _width:orb_size, _height:orb_size});
}
if (side == "up") {
_y = (_y - spy);
_root.orb_id++;
orb_size = Math.random() * 25;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) - 10, _y:this._y + 10, _width:orb_size, _height:orb_size});
}
}
if (((_root.nominite.hitTest(this._x + (_width / 2), _y, true) || (_root.nominite.hitTest(this._x - (_width / 2), _y, true))) || (_root.nominite.hitTest(this._x, _y + (_height / 2), true))) || (_root.nominite.hitTest(this._x, _y - (_height / 2), true))) {
if (taken == false) {
this.gotoAndPlay("taken");
score_taken = fps_score;
_root.score = _root.score + score_taken;
_root.score_digit(this._x, this._y, score_taken);
_root.nominite.health = _root.nominite.health + 2;
_root.sound2.start(0, 1);
taken = true;
}
}
if ((_root.changing_level == true) && (taken == false)) {
taken = true;
gotoAndPlay ("taken");
}
}
};
Symbol 121 MovieClip [health++ball] Frame 2
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
_root.orb_id++;
orb_size = Math.random() * 81;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
i++;
}
};
Symbol 121 MovieClip [health++ball] Frame 10
this.removeMovieClip();
Symbol 123 MovieClip Frame 1
stop();
Symbol 123 MovieClip Frame 2
stop();
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 124 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Symbol 139 MovieClip Frame 100
stop();
Symbol 147 MovieClip Frame 15
stop();
Symbol 148 MovieClip Frame 1
stop();
Symbol 150 Button
on (release) {
getURL ("http://www.hallpass.com", "_blank");
}
Symbol 160 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 2
stop();
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 160 MovieClip in Symbol 161 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y - yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Symbol 167 MovieClip Frame 222
_root.gotoAndPlay(_root._currentframe + 1);
Symbol 192 Button
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Symbol 195 Button
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Symbol 213 Button
on (release) {
getURL ("http://hallpass.com", _blank);
}
Instance of Symbol 189 MovieClip in Symbol 218 MovieClip Frame 42
onClipEvent (load) {
orb_size = 0;
}
onClipEvent (enterFrame) {
_root.orb_id++;
orb_size = Math.random() * 100;
_root.attachMovie("orb", "orb" + _root.orb_id, _root.getNextHighestDepth(), {_x:(this._x + (Math.random() * 20)) + 230, _y:((this._y + 260) + (((Math.random() * _height) / 2) + (_height / 2))) - (_height / 2), _width:orb_size, _height:orb_size});
}
Instance of Symbol 193 MovieClip in Symbol 218 MovieClip Frame 202
onClipEvent (load) {
orb_size = 0;
}
onClipEvent (enterFrame) {
_root.orb_id++;
orb_size = Math.random() * 100;
_root.attachMovie("orb6", "orb6" + _root.orb_id, _root.getNextHighestDepth(), {_x:((this._x + ((Math.random() * 20) + 230)) + (((Math.random() * _width) / 2) + (_width / 2))) - (_width / 2), _y:((this._y + 260) + (((Math.random() * _height) / 2) + (_height / 2))) - (_height / 2), _width:orb_size, _height:orb_size});
}
Symbol 230 Button
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Symbol 234 Button
on (release) {
getURL ("http://hallpass.com", _blank);
}
Symbol 241 Button
on (release) {
_parent.play();
}
Symbol 257 Button
on (release) {
play();
}
Symbol 269 MovieClip Frame 13
stop();
Instance of Symbol 221 MovieClip in Symbol 270 MovieClip Frame 1
on (release) {
_parent.gotoAndStop("menu");
}
Symbol 270 MovieClip Frame 591
stop();
Symbol 270 MovieClip Frame 619
stop();
Symbol 270 MovieClip Frame 645
stop();
_root.gotoAndStop("game");
Symbol 286 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
tubo_number = _root.tubo_number;
ball_color_name = _root.ball_color_name;
};
Symbol 286 MovieClip Frame 6
if (_root.bonus == false) {
_root.appear_ball(tubo_number, ball_color_name);
}
if (_root.bonus == true) {
_root.appear_ball(_root.tubo_number, _root.bonus_type_name);
_root.bonus = false;
}
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 286 MovieClip Frame 7
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 286 MovieClip Frame 8
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y + (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 287 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
tubo_number = _root.tubo_number;
ball_color_name = _root.ball_color_name;
};
Symbol 287 MovieClip Frame 6
if (_root.bonus == false) {
_root.appear_ball(tubo_number, ball_color_name);
}
if (_root.bonus == true) {
_root.appear_ball(_root.tubo_number, _root.bonus_type_name);
_root.bonus = false;
}
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
Symbol 287 MovieClip Frame 7
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 287 MovieClip Frame 8
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x, _y:this._y - (_height / 2), _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 288 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
tubo_number = _root.tubo_number;
ball_color_name = _root.ball_color_name;
};
Symbol 288 MovieClip Frame 6
if (_root.bonus == false) {
_root.appear_ball(tubo_number, ball_color_name);
}
if (_root.bonus == true) {
_root.appear_ball(_root.tubo_number, _root.bonus_type_name);
_root.bonus = false;
}
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 288 MovieClip Frame 7
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 288 MovieClip Frame 8
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x - (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 289 MovieClip Frame 1
stop();
this.onEnterFrame = function () {
tubo_number = _root.tubo_number;
ball_color_name = _root.ball_color_name;
};
Symbol 289 MovieClip Frame 6
if (_root.bonus == false) {
_root.appear_ball(tubo_number, ball_color_name);
}
if (_root.bonus == true) {
_root.appear_ball(_root.tubo_number, _root.bonus_type_name);
_root.bonus = false;
}
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 50;
Symbol 289 MovieClip Frame 7
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
Symbol 289 MovieClip Frame 8
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
_root.attachMovie("orb2", "orb2" + _root.orb_id, _root.getNextHighestDepth(), {_x:this._x + (_width / 2), _y:this._y, _width:orb_size, _height:orb_size, _rotation:Math.random() * 360});
orb_id++;
orb_size = Math.random() * 70;
Symbol 300 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 1
stop();
Symbol 331 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 1
stop();
Symbol 394 MovieClip Frame 1
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 394 MovieClip Frame 129
_root.level_config();
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 394 MovieClip Frame 161
_root.changing_level = false;
_root.starting_game = false;
Symbol 394 MovieClip Frame 162
stop();
Symbol 414 MovieClip Frame 24
stop();
Symbol 421 Button
on (release) {
_parent.gotoAndPlay("playagain");
_root.button.start(0, 1);
_root.nominite.health = _root.health_total;
_root.nominite._x = _root.nominite.posx;
_root.nominite._y = _root.nominite.posy;
_root.nominite.spx = 0;
_root.nominite.spy = 0;
_root.gameover = false;
_root.nominite.big_fps = 0;
_root.nominite.small_fps = 0;
_root.nominite.low_fps = 0;
_root.nominite.speed_fps = 0;
}
Symbol 425 Button
on (release) {
getURL ("http://logiccollisiongames.com", _blank);
}
Symbol 429 Button
on (release) {
getURL ("http://logiccollisiongames.com/", _blank);
}
Symbol 434 Button
on (release) {
_parent.gotoAndPlay("playagain2");
_root.button.start(0, 1);
_root.nominite.health = _root.health_total;
_root.nominite._x = _root.nominite.posx;
_root.nominite._y = _root.nominite.posy;
_root.nominite.spx = 0;
_root.nominite.spy = 0;
_root.gameover = false;
_root.nominite.big_fps = 0;
_root.nominite.small_fps = 0;
_root.nominite.low_fps = 0;
_root.nominite.speed_fps = 0;
}
Symbol 437 MovieClip Frame 1
stop();
Symbol 437 MovieClip Frame 2
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 437 MovieClip Frame 129
_root.level_config();
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 437 MovieClip Frame 161
_root.changing_level = false;
this.gotoAndStop(1);
Symbol 437 MovieClip Frame 163
_root.HPScoreService.postScore(_root.score, "");
Symbol 437 MovieClip Frame 230
stop();
Symbol 437 MovieClip Frame 231
_root.changing_level = true;
_root.level = 1;
_root.score = 0;
_root.level_config();
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 437 MovieClip Frame 250
_root.changing_level = false;
this.gotoAndStop(1);
Symbol 437 MovieClip Frame 251
_root.HPScoreService.postScore(_root.score, "");
Symbol 437 MovieClip Frame 319
stop();
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 437 MovieClip Frame 320
_root.changing_level = true;
_root.level = 1;
_root.score = 0;
_root.win = false;
_root.level_config();
Symbol 437 MovieClip Frame 339
_root.changing_level = false;
this.gotoAndStop(1);
Symbol 442 MovieClip Frame 1
stop();
Symbol 442 MovieClip Frame 2
this.onEnterFrame();
this.swapDepths(_root.getNextHighestDepth());
Symbol 442 MovieClip Frame 15
stop();
Symbol 442 MovieClip Frame 30
_root.pause_game = false;