Frame 1
if (_root.loopinggame == 1) {
gotoAndPlay (302);
}
_focusrect = 0;
Frame 2
_root.loopinggame = 0;
var lives = 3;
Frame 295
if (_framesloaded >= 400) {
gotoAndPlay (298);
}
Frame 296
gotoAndPlay (295);
Frame 300
arrParseDetails = new Array();
username = "";
email = "";
Frame 301
arrPlayerDetails = new Array();
arrPlayerDetails[0] = id;
arrPlayerDetails[1] = score;
play();
Frame 302
blnCheatingGit = 0;
Frame 317
_root.buttquit.gotoAndStop(2);
Frame 321
_root.buttfame.gotoAndStop(2);
Frame 325
_root.butthow.gotoAndStop(2);
Frame 329
_root.buttplay.gotoAndStop(2);
j = 1;
Frame 331
if ((_root.loopinggame == 1) or (_framesloaded == _totalframes)) {
gotoAndStop (341);
}
Frame 334
nBytesTotal = _root.getBytesTotal();
nBytesLoaded = _root.getBytesLoaded();
nPercentLoaded = int((nBytesLoaded / nBytesTotal) * 100);
_root.loadingmovie.gotoAndStop(int(nPercentLoaded / 6.25));
if (nBytesLoaded >= nBytesTotal) {
gotoAndPlay (336);
}
Frame 335
gotoAndPlay (334);
Frame 341
sndMusic.gotoAndStop(3);
stop();
Frame 392
gotoAndPlay (455);
Frame 394
stopAllSounds();
play();
Frame 451
stop();
fscommand ("quit");
Instance of Symbol 241 MovieClip "levelmusic" in Frame 464
onClipEvent (enterFrame) {
this.leveltxt = _root.level;
}
Frame 465
function fPMeter(shot_cnt) {
if (shot_cnt == 1) {
_root.powermeter.ppoint._y = _root.powermeter.ppoint._y - (level + 2);
_root.powermeter.powerbar._height = _root.powermeter.powerbar._height + (2 * (level + 2));
if ((pbar_y - 100) >= _root.powermeter.ppoint._y) {
_root.shot_cnt = 2;
}
shot_pwr = (shot_pwr + level) + 2;
_root.powermeter.shot_pwr_txt = shot_pwr;
}
if (shot_cnt == 2) {
_root.powermeter.ppoint._y = _root.powermeter.ppoint._y + (level + 3);
if (_root.powermeter.ppoint._y >= (pbar_y + 25)) {
_root.powermeter.ppoint._visible = 0;
lives--;
if (lives == 0) {
gotoAndStop (539);
} else {
gotoAndStop (488);
}
}
}
}
function fShootBall(wd, ws, sp, ss, cx, cy, tc) {
if (sp < perfect_pwr) {
cy = cy + goal_height;
}
move_x = (cx - ball_st_x) / tc;
move_y = (cy - ball_st_y) / tc;
scale_const = levelscale / tc;
_root.mainball._xscale = _root.mainball._xscale - scale_const;
_root.mainball._yscale = _root.mainball._yscale - scale_const;
_root.mainball._x = _root.mainball._x + move_x;
_root.mainball._y = _root.mainball._y + move_y;
if (path_time >= (tc / 10)) {
shift_scaler = shift_scaler * 0.95;
_root.mainball._x = _root.mainball._x + (ss / 2);
if ((wd == 1) or (wd == 3)) {
_root.mainball._x = _root.mainball._x + (ws / 6);
} else if ((wd == 5) or (wd == 7)) {
_root.mainball._x = _root.mainball._x - (ws / 6);
} else if (wd == 6) {
_root.mainball._x = _root.mainball._x - (ws / 4);
} else if (wd == 2) {
_root.mainball._x = _root.mainball._x + (ws / 4);
}
}
}
function fCalcWindDir(wd) {
if (((wd >= 337.5) and (360 >= wd)) or ((0 < wd) and (wd < 22.5))) {
return(0);
}
if ((wd >= 22.5) and (wd < 67.5)) {
return(1);
}
if ((wd >= 67.5) and (wd < 112.5)) {
return(2);
}
if ((wd >= 112.5) and (wd < 157.5)) {
return(3);
}
if ((wd >= 157.5) and (wd < 202.5)) {
return(4);
}
if ((wd >= 202.5) and (wd < 247.5)) {
return(5);
}
if ((wd >= 247.5) and (wd < 292.5)) {
return(6);
}
if ((wd >= 292.5) and (wd < 337.5)) {
return(7);
}
}
function fGoalDimensions(level) {
if (level == 1) {
_root.barbot._x = 267.3;
_root.barbot._y = 232.2;
_root.barbot._width = 157.8;
_root.barbot._height = 8.9;
_root.barleft._x = 184;
_root.barleft._y = 195;
_root.barleft._width = 7;
_root.barleft._height = 10;
_root.barright._x = 351.3;
_root.barright._y = 195;
_root.barright._width = 7;
_root.barright._height = 10;
goal_width = _root.barright._x - _root.barleft._x;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 24;
cr_const = 4;
perfect_pwr = 50;
}
if (level == 2) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 269.6;
_root.barbot._y = 232.3;
_root.barbot._width = 157.8;
_root.barbot._height = 8.9;
_root.barleft._x = 197.9;
_root.barleft._y = 191;
_root.barleft._width = 6.4;
_root.barleft._height = 9;
_root.barright._x = 343.9;
_root.barright._y = 191;
_root.barright._width = 6.4;
_root.barright._height = 9;
goal_width = _root.barright._x - _root.barleft._x;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 26;
cr_const = 4;
perfect_pwr = 50;
}
if (level == 3) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 269.6;
_root.barbot._y = 233.8;
_root.barbot._width = 157.8;
_root.barbot._height = 5.8;
_root.barleft._x = 211.7;
_root.barleft._y = 204;
_root.barleft._width = 6;
_root.barleft._height = 9;
_root.barright._x = 335.6;
_root.barright._y = 204;
_root.barright._width = 6;
_root.barright._height = 9;
goal_width = _root.barright._x - _root.barleft._x;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 28;
cr_const = 4;
perfect_pwr = 65;
}
if (level == 4) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 269.6;
_root.barbot._y = 234.4;
_root.barbot._width = 157.8;
_root.barbot._height = 5.8;
_root.barleft._x = 225.1;
_root.barleft._y = 210;
_root.barleft._width = 6;
_root.barleft._height = 9;
_root.barright._x = 327;
_root.barright._y = 210;
_root.barright._width = 6;
_root.barright._height = 9;
goal_width = _root.barright._x - _root.barleft._x;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 30;
cr_const = 4;
perfect_pwr = 70;
}
if (level == 5) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 270.2;
_root.barbot._y = 234.8;
_root.barbot._width = 157.8;
_root.barbot._height = 2.7;
_root.barleft._x = 239.9;
_root.barleft._y = 210;
_root.barleft._width = 5;
_root.barleft._height = 9;
_root.barright._x = 319.3;
_root.barright._y = 210;
_root.barright._width = 5;
_root.barright._height = 9;
goal_width = (_root.barright._x - _root.barleft._x) + 65;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 32;
cr_const = 4;
perfect_pwr = 80;
}
if (level == 6) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 282.6;
_root.barbot._y = 235.8;
_root.barbot._width = 63.7;
_root.barbot._height = 2.7;
_root.barleft._x = 254.5;
_root.barleft._y = 210;
_root.barleft._width = 3;
_root.barleft._height = 9;
_root.barright._x = 311.1;
_root.barright._y = 210;
_root.barright._width = 3;
_root.barright._height = 9;
goal_width = (_root.barright._x - _root.barleft._x) * 2;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 34;
cr_const = 4;
perfect_pwr = 80;
}
if (level == 7) {
goal_width = 139;
goal_height = 120;
_root.barbot._x = 283.1;
_root.barbot._y = 236.8;
_root.barbot._width = 45;
_root.barbot._height = 2.7;
_root.barleft._x = 268.5;
_root.barleft._y = 210;
_root.barleft._width = 3;
_root.barleft._height = 9;
_root.barright._x = 303.1;
_root.barright._y = 210;
_root.barright._width = 3;
_root.barright._height = 9;
goal_width = (_root.barright._x - _root.barleft._x) * 3.5;
goal_height = _root.barbot._y / 2;
goal_pntx = _root.barbot._x;
goal_pnty = _root.barbot._y / 2;
ball_st_x = 304;
ball_st_y = 414;
time_const = 36;
cr_const = 4;
perfect_pwr = 98;
}
}
function fMissShot() {
}
var level = 1;
if (_root.lives != 999) {
_root.lives = 3;
}
var timer = 0;
var hitpost = 0;
var fxon = 1;
var musicon = 1;
var spaceenabled = new Boolean();
arrComedyText = new Array();
arrComedyText[0] = "unlucky. keep trying";
arrComedyText[1] = "oh no ! it hit the upright";
arrComedyText[2] = "what was that ?";
arrComedyText[3] = "keep an eye on the wind speed";
arrComedyText[4] = "use your hook to fight the wind";
arrComedyText[5] = "only one ball left !";
arrComedyText[6] = "it's hit the post !";
arrComedyText[7] = "watch that hook on your kick";
arrComedyText[8] = "give up !";
var wind_dir;
var wind_spd;
var shot_dist;
var shot_pwr;
var shot_shift;
var timer;
var shot_cnt;
var goal_pnty;
var goal_pntx;
var goal_height;
var goal_width;
var cross_dirx;
var cross_diry;
cross_dirx = 0;
cross_diry = 0;
pbar_y = _root.powermeter.ppoint._y;
Frame 470
wind_dir = random(360) + 1;
wind_spd = random(level * 5) + level;
shot_pwr = 0;
real_wind_dir = fCalcWindDir(wind_dir);
timer = timer;
total_time = timer;
shot_dist = level * 12;
shot_cnt = 0;
ball_moving = 0;
path_time = -12;
spaceenabled = 1;
hitpost = 0;
musicopen = 0;
shift_scaler = 1;
fGoalDimensions(level);
levelscale = 35 + (level * 7.5);
_root.powermeter.ppoint._x = 0;
_root.powermeter.ppoint._y = 0;
_root.powermeter.ppoint._visible = 1;
_root.powermeter.ppoint.shot_pwr_txt = "000";
_root.powermeter.powerbar._height = 1;
if ((1 < level) and (shot_missed != 1)) {
i = 1;
while (i < level) {
_root.mainball.nextFrame();
i++;
}
}
shot_missed = 0;
_root.mainball.ball.gotoAndStop(1);
_root.mainball.ball.ballrot.gotoAndStop(1);
_root.mainball._xscale = 100;
_root.mainball._yscale = 100;
_root.mainball._x = ball_st_x;
_root.mainball._y = ball_st_y;
_root.crosshair._x = goal_pntx;
_root.crosshair._y = goal_pnty;
var toppy = (goal_pnty - goal_height);
var righty = (goal_pntx + goal_width);
var lefty = (goal_pntx - goal_width);
var botty = (goal_pnty + goal_height);
_root.infopanel.winddir.gotoAndStop(real_wind_dir + 1);
_root.testwinddir = int(wind_dir / 30);
_root.infopanel.windspeed = wind_spd;
_root.infopanel.distance = shot_dist;
if ((dir == 1) and (((goal_pnty - goal_height) + cr_const) < _root.crosshair._y)) {
_root.crosshair._y = _root.crosshair._y - cr_const;
}
if ((dir == 2) and (_root.crosshair._y < ((goal_pnty + goal_height) - cr_const))) {
_root.crosshair._y = _root.crosshair._y + cr_const;
}
if ((dir == 3) and (((goal_pntx - goal_width) + cr_const) < _root.crosshair._x)) {
_root.crosshair._x = _root.crosshair._x - cr_const;
}
if ((dir == 4) and (_root.crosshair._x < ((goal_pntx + goal_width) - cr_const))) {
_root.crosshair._x = _root.crosshair._x + cr_const;
}
Frame 481
if ((((_root.shot_cnt == 2) and (_root.powermeter.ppoint._y < (pbar_y - 80))) or ((_root.shot_cnt == 1) and (_root.powermeter.ppoint._y < (pbar_y - 90)))) or (shot_cnt >= 3)) {
spaceenabled = 0;
} else {
spaceenabled = 1;
}
if ((((_xmouse >= 0) and (565 >= _xmouse)) and (_ymouse >= 0)) and (_ymouse < 350)) {
_root.crosshair._x = _xmouse;
_root.crosshair._y = _ymouse;
if (musicopen == 2) {
_root.levelmusic.gotoAndPlay(11);
}
}
if (((pbar_y - 3) < _root.powermeter.ppoint._y) and ((pbar_y + 3) >= _root.powermeter.ppoint._y)) {
_root.powermeter.ppoint.gotoAndStop(2);
_root.powermeter.hook.gotoAndStop(1);
} else if ((((pbar_y - 3) >= _root.powermeter.ppoint._y) and ((pbar_y - 10) < _root.powermeter.ppoint._y)) or (((pbar_y + 10) >= _root.powermeter.ppoint._y) and ((pbar_y + 3) < _root.powermeter.ppoint._y))) {
if (_root.powermeter.ppoint._y < pbar_y) {
_root.powermeter.hook.gotoAndStop(2);
} else if (pbar_y < _root.powermeter.ppoint._y) {
_root.powermeter.hook.gotoAndStop(3);
}
_root.powermeter.ppoint.gotoAndStop(3);
} else if ((((pbar_y - 6) >= _root.powermeter.ppoint._y) and ((pbar_y - 25) < _root.powermeter.ppoint._y)) or (((pbar_y + 15) >= _root.powermeter.ppoint._y) and ((pbar_y + 10) < _root.powermeter.ppoint._y))) {
if (_root.powermeter.ppoint._y < pbar_y) {
_root.powermeter.hook.gotoAndStop(2);
} else if (pbar_y < _root.powermeter.ppoint._y) {
_root.powermeter.hook.gotoAndStop(3);
}
_root.powermeter.ppoint.gotoAndStop(4);
} else if ((pbar_y + 15) < _root.powermeter.ppoint._y) {
_root.powermeter.hook.gotoAndStop(1);
_root.powermeter.ppoint.gotoAndStop(4);
_root.powermeter.missballtext._alpha = 100;
} else {
_root.powermeter.ppoint.gotoAndStop(1);
_root.powermeter.hook.gotoAndStop(1);
_root.powermeter.missballtext._alpha = 20;
}
if ((random(75) + 1) == 9) {
if (wind_spd != 0) {
wind_spd = (wind_spd + random(3)) - 1;
} else {
wind_spd = wind_spd + 1;
}
}
if ((shot_cnt >= 0) and (2 >= shot_cnt)) {
timer++;
if ((Math.round(timer * 0.5555555555555) / 10) == Math.round(Math.round(timer * 0.5555555555555) / 10)) {
_root.infopanel.timer = (Math.round(timer * 0.5555555555555) / 10) + ".0";
} else {
_root.infopanel.timer = Math.round(timer * 0.5555555555555) / 10;
}
}
if ((0 < shot_cnt) and (2 >= shot_cnt)) {
fPMeter(shot_cnt);
}
if (shot_cnt == 3) {
if ((12 >= _root.powermeter.ppoint._y) and (_root.powermeter.ppoint._y >= -12)) {
if ((time_const >= path_time) and (ball_moving == 1)) {
if ((path_time >= -2) and (path_time < -1)) {
_root.kicksound.play();
}
path_time++;
if (path_time >= 0) {
_root.mainball.ball.play();
_root.mainball.ball.ballrot.play();
fShootBall(real_wind_dir, wind_spd, shot_pwr, shot_shift, cross_dirx, cross_diry, time_const);
}
}
if ((path_time >= time_const) and (ball_moving == 1)) {
shot_cnt = 4;
}
if (ball_moving == 0) {
shot_shift = _root.powermeter.ppoint._y;
cross_dirx = _root.crosshair._x;
cross_diry = _root.crosshair._y;
path_time = -12;
_root.kickingman.gotoAndPlay(2);
ball_moving = 1;
}
} else {
shot_cnt = 4;
}
}
if (shot_cnt == 4) {
if (ball_moving == 0) {
_root.powermeter.ppoint._visible = 0;
lives--;
if (lives == 0) {
gotoAndStop (539);
} else {
gotoAndPlay (488);
}
}
if (ball_moving == 1) {
thisballx = _root.mainball._x;
thisbally = _root.mainball._y;
if (((thisballx < (_root.barright._x - _root.barright._width)) and ((_root.barleft._x + _root.barleft._width) < thisballx)) and (thisbally < ((_root.barbot._y - (_root.barbot._height / 2)) - 10))) {
gotoAndPlay (596);
} else if (((thisballx >= (_root.barright._x - _root.barright._width)) and ((_root.barright._x + (_root.barright._width * 3)) >= thisballx)) and (thisbally < ((_root.barbot._y - (_root.barbot._height / 2)) - 10))) {
_root.mainball.ball.gotoAndPlay(40);
_root.hitpost = 1;
lives--;
if (lives == 0) {
gotoAndPlay (539);
} else {
gotoAndPlay (513);
}
} else if (((thisballx >= (_root.barleft._x - (_root.barleft._width * 3))) and ((_root.barleft._x + _root.barleft._width) >= thisballx)) and (thisbally < ((_root.barbot._y - (_root.barbot._height / 2)) - 10))) {
_root.mainball.ball.gotoAndPlay(60);
_root.hitpost = 1;
lives--;
if (lives == 0) {
gotoAndPlay (539);
} else {
gotoAndPlay (513);
}
} else {
lives--;
if (lives == 0) {
gotoAndPlay (539);
} else {
gotoAndPlay (513);
}
}
}
}
Frame 482
gotoAndPlay (481);
Frame 488
_root.powermeter.ppoint.shot_pwr_txt = shot_pwr;
play();
Frame 496
_root.livesmovie.play();
shot_missed = 1;
stop();
Frame 513
_root.powermeter.ppoint.shot_pwr_txt = shot_pwr;
play();
Frame 521
_root.livesmovie.play();
shot_missed = 1;
stop();
Frame 539
unloadMovieNum (2);
play();
Frame 547
_root.livesmovie.play();
stop();
Frame 566
_root.powermeter.ppoint.shot_pwr_txt = shot_pwr;
unloadMovieNum (2);
play();
Frame 574
stop();
Frame 596
_root.powermeter.ppoint.shot_pwr_txt = shot_pwr;
if (level == 7) {
gotoAndStop (566);
} else {
_root.thepitch.play();
}
play();
Frame 612
level++;
stop();
Symbol 17 MovieClip Frame 99
stop();
Symbol 33 MovieClip Frame 141
stop();
Symbol 37 Button
on (release) {
getURL ("http://www.miniclip.com/Homepage.htm", "_blank");
}
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 2
stopAllSounds();
Symbol 45 MovieClip Frame 3
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
stop();
Symbol 60 MovieClip Frame 3
stop();
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 2
stop();
Symbol 62 MovieClip Frame 3
stop();
Symbol 64 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 2
stop();
Symbol 64 MovieClip Frame 3
stop();
Symbol 66 MovieClip Frame 1
stop();
Symbol 66 MovieClip Frame 2
stop();
Symbol 66 MovieClip Frame 3
stop();
Symbol 89 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 2
stop();
Symbol 89 MovieClip Frame 3
stop();
Symbol 89 MovieClip Frame 4
stop();
Symbol 89 MovieClip Frame 5
stop();
Symbol 89 MovieClip Frame 6
stop();
Symbol 89 MovieClip Frame 7
stop();
Symbol 89 MovieClip Frame 8
stop();
Symbol 89 MovieClip Frame 9
stop();
Symbol 89 MovieClip Frame 10
stop();
Symbol 89 MovieClip Frame 11
stop();
Symbol 89 MovieClip Frame 12
stop();
Symbol 89 MovieClip Frame 13
stop();
Symbol 89 MovieClip Frame 14
stop();
Symbol 89 MovieClip Frame 15
stop();
Symbol 89 MovieClip Frame 16
stop();
Symbol 94 MovieClip Frame 1
stop();
Symbol 94 MovieClip Frame 2
stop();
Symbol 96 Button
on (release) {
getURL ("http://www.miniclip.com", "_blank");
}
on (rollOver) {
_root.buttfame.gotoAndStop(3);
_root.buttplay.gotoAndStop(2);
_root.butthow.gotoAndStop(2);
_root.buttquit.gotoAndStop(2);
}
on (rollOut) {
_root.buttfame.gotoAndStop(2);
}
Symbol 97 Button
on (release) {
_root.screenmovie.gotoAndStop(2);
}
on (rollOver) {
_root.butthow.gotoAndStop(3);
_root.buttplay.gotoAndStop(2);
_root.buttfame.gotoAndStop(2);
_root.buttquit.gotoAndStop(2);
}
on (rollOut) {
_root.butthow.gotoAndStop(2);
}
Symbol 98 Button
on (release) {
getURL ("http://www.miniclip.com/signup.htm", "_blank");
}
on (rollOver) {
_root.buttquit.gotoAndStop(3);
_root.butthow.gotoAndStop(2);
_root.buttfame.gotoAndStop(2);
_root.buttplay.gotoAndStop(2);
}
on (rollOut) {
_root.buttquit.gotoAndStop(2);
}
Symbol 99 Button
on (release) {
getURL ("http://www.miniclip.com/download_rugby.htm", "_blank");
}
Symbol 100 Button
on (release) {
arrLetters = new Array();
arrLetters = ["A", "S", "D", "F", "G", "H", "J", "K", "L", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "Z", "X", "C", "V", "B", "N"];
var strKeyString;
_root.screenmovie.gotoAndStop(1);
i = 0;
while (i < 8) {
strKeyString = strKeyString + arrLetters[random(arrLetters.length)];
strKeyString = strKeyString + random(9);
i++;
}
if (strCheat eq "xxxxx") {
blnCheatingGit = 1;
}
loadVariablesNum ("http://www.miniclip.com/tp.php?t=1&id=3", 0);
play();
}
on (rollOver) {
_root.buttplay.gotoAndStop(3);
_root.butthow.gotoAndStop(2);
_root.buttfame.gotoAndStop(2);
_root.buttquit.gotoAndStop(2);
}
on (rollOut) {
_root.buttplay.gotoAndStop(2);
}
Symbol 101 Button
on (keyPress "x") {
strCheat = strCheat + "x";
}
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 15
stop();
Symbol 121 MovieClip Frame 30
stop();
Symbol 121 MovieClip Frame 45
stop();
Symbol 121 MovieClip Frame 60
stop();
Symbol 121 MovieClip Frame 75
stop();
Symbol 121 MovieClip Frame 90
stop();
Symbol 124 MovieClip Frame 1
stop();
Symbol 126 MovieClip Frame 1
stop();
Symbol 129 Button
on (press) {
getURL ("http://www.gamesarcade.net/default.asp?t=1&id=3", "_blank");
}
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 2
stop();
Symbol 141 MovieClip Frame 1
stop();
Symbol 141 MovieClip Frame 2
stop();
Symbol 141 MovieClip Frame 3
stop();
Symbol 152 MovieClip Frame 1
stop();
Symbol 152 MovieClip Frame 2
stop();
Symbol 152 MovieClip Frame 3
stop();
Symbol 152 MovieClip Frame 4
stop();
Symbol 180 MovieClip Frame 1
stop();
Symbol 180 MovieClip Frame 2
stop();
Symbol 180 MovieClip Frame 3
stop();
Symbol 180 MovieClip Frame 4
stop();
Symbol 180 MovieClip Frame 5
stop();
Symbol 180 MovieClip Frame 6
stop();
Symbol 180 MovieClip Frame 7
stop();
Symbol 180 MovieClip Frame 8
stop();
Symbol 195 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 6
stop();
Symbol 195 MovieClip Frame 11
stop();
Symbol 195 MovieClip Frame 16
stop();
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 13
gotoAndPlay (2);
Symbol 204 MovieClip Frame 1
stop();
Symbol 204 MovieClip Frame 31
stop();
Symbol 204 MovieClip Frame 53
stop();
Symbol 204 MovieClip Frame 73
stop();
Symbol 205 MovieClip Frame 1
stop();
Symbol 205 MovieClip Frame 33
stop();
Symbol 205 MovieClip Frame 54
stop();
Symbol 205 MovieClip Frame 74
stop();
Symbol 206 MovieClip Frame 1
stop();
Symbol 206 MovieClip Frame 35
stop();
Symbol 206 MovieClip Frame 54
stop();
Symbol 206 MovieClip Frame 74
stop();
Symbol 207 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 37
stop();
Symbol 207 MovieClip Frame 54
stop();
Symbol 207 MovieClip Frame 74
stop();
Symbol 208 MovieClip Frame 1
stop();
Symbol 208 MovieClip Frame 39
stop();
Symbol 208 MovieClip Frame 54
stop();
Symbol 208 MovieClip Frame 74
stop();
Symbol 209 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 39
stop();
Symbol 209 MovieClip Frame 57
stop();
Symbol 209 MovieClip Frame 77
stop();
Symbol 210 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 39
stop();
Symbol 210 MovieClip Frame 54
stop();
Symbol 210 MovieClip Frame 74
stop();
Symbol 211 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 2
stop();
Symbol 211 MovieClip Frame 3
stop();
Symbol 211 MovieClip Frame 4
stop();
Symbol 211 MovieClip Frame 5
stop();
Symbol 211 MovieClip Frame 6
stop();
Symbol 211 MovieClip Frame 7
stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 238 Button
on (release) {
if (_root.fxon == 1) {
unloadMovieNum (2);
_root.fxon = 0;
_root.levelmusic.soundpanel.fxonoff = "OFF";
} else {
loadMovieNum ("crowd.swf", 2);
_root.fxon = 1;
_root.levelmusic.soundpanel.fxonoff = "ON";
}
}
Symbol 239 Button
on (release) {
if (_root.musicon == 1) {
unloadMovieNum (1);
_root.musicon = 0;
_root.levelmusic.soundpanel.musiconoff = "OFF";
} else {
loadMovieNum ("music.swf", 1);
_root.musicon = 1;
_root.levelmusic.soundpanel.musiconoff = "ON";
}
}
Symbol 241 MovieClip Frame 1
stop();
Symbol 241 MovieClip Frame 2
play();
Symbol 241 MovieClip Frame 6
if (_root.musicon == 1) {
_root.levelmusic.soundpanel.musiconoff = "ON";
} else {
_root.levelmusic.soundpanel.musiconoff = "OFF";
}
if (_root.fxon == 1) {
_root.levelmusic.soundpanel.fxonoff = "ON";
} else {
_root.levelmusic.soundpanel.fxonoff = "OFF";
}
Symbol 241 MovieClip Frame 10
_root.musicopen = 2;
stop();
Symbol 241 MovieClip Frame 11
_root.musicopen = 3;
play();
Symbol 241 MovieClip Frame 23
_root.musicopen = 0;
Symbol 243 Button
on (press) {
if (spaceenabled == 1) {
((shot_cnt != 1) ? (_root.clicksound.play()) : (0));
shot_cnt++;
}
}
Symbol 246 MovieClip Frame 6
if (_root.hitpost == 1) {
if (random(2) == 1) {
youmissedtxt1 = _root.arrComedyText[1];
} else {
youmissedtxt1 = _root.arrComedyText[6];
}
}
if (17 < _root.wind_spd) {
if (random(2) == 1) {
youmissedtxt1 = _root.arrComedyText[3];
} else {
youmissedtxt1 = _root.arrComedyText[4];
}
}
if (_root.lives == 1) {
if (random(2) == 1) {
youmissedtxt1 = _root.arrComedyText[8];
} else {
youmissedtxt1 = _root.arrComedyText[5];
}
}
rand = random(2);
if (((_root.lives != 1) and (rand == 1)) and (_root.hitpost != 1)) {
youmissedtxt1 = _root.arrComedyText[0];
}
if (((_root.lives != 1) and (rand == 0)) and (_root.hitpost != 1)) {
youmissedtxt1 = _root.arrComedyText[2];
}
Symbol 246 MovieClip Frame 54
_root.gotoAndPlay("STARTLEVEL");
Symbol 250 MovieClip Frame 56
_root.loopinggame = 1;
_root.gotoAndPlay(1);
stop();
Symbol 255 Button
on (release) {
play();
}
Symbol 260 MovieClip Frame 10
if (Math.round(_root.timer * 0.5555555555555) != 10) {
yourtimetxt = ("your time = " + (Math.round(_root.timer * 0.5555555555555) / 10)) + " seconds";
} else {
yourtimetxt = ("your time = " + (Math.round(_root.timer * 0.5555555555555) / 10)) + ".0 second";
}
Symbol 260 MovieClip Frame 11
stop();
Symbol 260 MovieClip Frame 39
_root.loopinggame = 1;
_root.gotoAndPlay(1);
stop();
Symbol 263 MovieClip Frame 10
levcompletetxt1 = "get ready for level " + (_root.level + 1);
Symbol 263 MovieClip Frame 46
_root.gotoAndPlay("STARTLEVEL");