Frame 1
Stage.showMenu = false;
Frame 2
function powercontrol() {
if (pausing == false) {
if (Key.isDown(_root.a)) {
_root.p1power = _root.p1power + p1initialpower;
p1initialpower++;
}
if (Key.isDown(_root.d)) {
_root.p1power = _root.p1power + p1initialpower;
p1initialpower++;
}
if (Key.isDown(_root.s)) {
_root.p1power = _root.p1power + p1initialpower;
p1initialpower++;
}
if (p1power >= 200) {
p1power = 200;
}
}
}
function powercancel() {
if (pausing == false) {
p1power = p1power - 10;
p1initialpower = 0;
if (p1power <= 0) {
p1power = 0;
}
}
}
function charamove() {
if (pausing == false) {
p1movespeed = p1power + rainspeed;
if (p1movespeed >= 13) {
p1movespeed = 13;
}
_root.bg.p1._x = _root.bg.p1._x + (Math.cos(((90 - _root.bg.p1.head._rotation) * Math.PI) / 180) * p1movespeed);
_root.bg.p1._y = _root.bg.p1._y - (Math.sin(((90 - _root.bg.p1.head._rotation) * Math.PI) / 180) * p1movespeed);
}
}
function ballmove() {
if (pausing == false) {
_root.bg.ball.moveon = true;
ballmovespeed = p1movespeed / 5;
}
}
function checklfpower() {
if (pausing == false) {
if (p1power <= 80) {
_root.bg.p1.leftfoot.gotoAndPlay("power1");
}
if ((p1power > 80) && (p1power <= 120)) {
_root.bg.p1.leftfoot.gotoAndPlay("power2");
}
if ((p1power > 120) && (p1power <= 160)) {
_root.bg.p1.leftfoot.gotoAndPlay("power3");
}
if ((p1power > 160) && (p1power <= 200)) {
_root.bg.p1.leftfoot.gotoAndPlay("power4");
}
}
}
function checkrfpower() {
if (pausing == false) {
if (p1power <= 80) {
_root.bg.p1.rightfoot.gotoAndPlay("power1");
}
if ((p1power > 80) && (p1power <= 120)) {
_root.bg.p1.rightfoot.gotoAndPlay("power2");
}
if ((p1power > 120) && (p1power <= 160)) {
_root.bg.p1.rightfoot.gotoAndPlay("power3");
}
if ((p1power > 160) && (p1power <= 200)) {
_root.bg.p1.rightfoot.gotoAndPlay("power4");
}
}
}
function scrollbg(bally) {
if (bally < 250) {
_root.bg._y = _root.bg._y + (ballmovespeed + _root.bg.ball.addspeed);
}
if (bally > 250) {
_root.bg._y = _root.bg._y - (ballmovespeed + _root.bg.ball.addspeed);
}
if (_root.bg._y > 700) {
_root.bg._y = 700;
}
if (_root.bg._y < -100) {
_root.bg._y = -100;
}
if (_root.bg.ball._y > 350) {
_root.bg.ball._y = 350;
ballmovespeed = ballmovespeed * -1.1;
}
if (_root.bg.ball._y < -600) {
_root.bg.ball._y = -600;
ballmovespeed = ballmovespeed * -1.1;
}
}
stop();
attachMovie("stagemask", "stagemask", 1000);
var savefile = SharedObject.getLocal("dm");
if (savefile.data.saveon == undefined) {
savefile.data.lastlevel = 1;
savefile.data.total = 0;
savefile.data.seetutorial = false;
}
var step = new Sound();
step.attachSound("step");
var kick = new Sound();
kick.attachSound("kick");
var delline = new Sound();
delline.attachSound("delline");
var stickhit = new Sound();
stickhit.attachSound("stickhit");
var btnover = new Sound();
btnover.attachSound("btnover");
var mainbgm = new Sound();
mainbgm.attachSound("mainbgm");
var coinsound = new Sound();
coinsound.attachSound("coinsound");
var hitball = new Sound();
hitball.attachSound("hitball");
var fadesound = new Sound();
fadesound.attachSound("fadesound");
var winsound = new Sound();
winsound.attachSound("winsound");
var impact = new Sound();
impact.attachSound("impact");
var congratbgm = new Sound();
congratbgm.attachSound("congratbgm");
var endbgm = new Sound();
endbgm.attachSound("endbgm");
_root.btnover.setVolume(50);
_root.attachMovie("cursor", "", 2000);
a = 65;
d = 68;
p = 80;
_root.mainbgm.onSoundComplete = function () {
_root.mainbgm.start();
};
MovieClip.prototype.hitAndShake = function (rangeX, rangeY) {
if (rangeX > 10) {
_root.hitball.start();
}
if (this.basex == null) {
this.basex = this._x;
}
if (this.basey == null) {
this.basey = this._y;
}
if (rangeX == null) {
this.rangeX = 20;
} else {
this.rangeX = int(rangeX);
}
if (rangeY == null) {
this.rangeY = 20;
} else {
this.rangeY = int(rangeY);
}
this._x = (this.basex - (this.rangeX / 2)) + (this.rangeX * Math.random());
this._y = (this.basey - this.rangeY) + ((2 * this.rangeY) * Math.random());
if (funcCall == null) {
this.funcCall = null;
} else {
this.funcCall = funcCall;
}
this.shakeTimeCount = 0;
if (this.oldOnEnterFrameFunc != undefined) {
return(undefined);
}
if (this.onEnterFrame != null) {
this.oldOnEnterFrameFunc = this.onEnterFrame;
} else {
this.oldOnEnterFrameFunc = function () {
};
}
this.onEnterFrame = function () {
this.shakeTimeCount = this.shakeTimeCount + 0.5;
this._x = this._x + (1.7 * (this.basex - this._x));
this._y = this._y + (1.7 * (this.basey - this._y));
this.oldOnEnterFrameFunc();
if (this.shakeTimeCount == 10) {
this.cancelHitAndShake();
this.funcCall();
}
};
};
MovieClip.prototype.cancelHitAndShake = function () {
if (this.oldOnEnterFrameFunc == undefined) {
return(undefined);
}
this._x = this.basex;
this._y = this.basey;
delete this.onEnterFrame;
this.onEnterFrame = this.oldOnEnterFrameFunc;
delete this.oldOnEnterFrameFunc;
};
Frame 3
stop();
pdvisible = false;
Instance of Symbol 367 MovieClip in Frame 3
onClipEvent (load) {
timer = 100;
}
onClipEvent (enterFrame) {
timer--;
if (timer == 0) {
_root.mainbgm.start();
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 4;
}
}
Frame 4
endbgm.stop("endbgm");
total0 = (total1 = (total2 = (total3 = (total4 = (total5 = 0)))));
if (savefile.data.pname0 != undefined) {
pname0 = _root.savefile.data.pname0;
}
if (savefile.data.pname1 != undefined) {
pname1 = _root.savefile.data.pname1;
}
if (savefile.data.pname2 != undefined) {
pname2 = _root.savefile.data.pname2;
}
if (savefile.data.pname3 != undefined) {
pname3 = _root.savefile.data.pname3;
}
if (savefile.data.pname4 != undefined) {
pname4 = _root.savefile.data.pname4;
}
if (savefile.data.pname5 != undefined) {
pname5 = _root.savefile.data.pname5;
}
if (savefile.data.total0 != undefined) {
total0 = _root.savefile.data.total0;
}
if (savefile.data.total1 != undefined) {
total1 = _root.savefile.data.total1;
}
if (savefile.data.total2 != undefined) {
total2 = _root.savefile.data.total2;
}
if (savefile.data.total3 != undefined) {
total3 = _root.savefile.data.total3;
}
if (savefile.data.total4 != undefined) {
total4 = _root.savefile.data.total4;
}
if (savefile.data.total5 != undefined) {
total5 = _root.savefile.data.total5;
}
totalArray = [total0, total1, total2, total3, total4, total5];
if (savefile.data.seetutorial != true) {
attachMovie("readtutorialfirstmc", "readtutorialfirstmc", 800);
}
Frame 5
stop();
p1color = 1;
p1head = 1;
total = 0;
continuegame = false;
lastlevel = _root.savefile.data.lastlevel;
stage = 1;
Frame 7
if (continuegame == true) {
stage = _root.savefile.data.lastlevel;
if (stage > 30) {
stage = 1;
total = 0;
}
}
exlevel = "Level " + stage;
rainspeed = 0;
Instance of Symbol 428 MovieClip in Frame 7
onClipEvent (mouseUp) {
if (_root.fadeinmc._name != "fadeinmc") {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 8;
}
}
Frame 8
p1power = 0;
p1initialpower = 0;
p1dir = 1;
p1movespeed = 0;
p1hittedfoot = null;
ballmovespeed = 0;
resulton = false;
pausing = false;
timeon = true;
totaltime = 0;
sectimer = 20;
sec1 = 0;
sec2 = 0;
mom = 0;
route = 0;
kicks = 0;
win = null;
hitcount = 0;
countstart = false;
randomfield = random(5);
field = randomfield;
leveltext = "Level " + stage;
score = 0;
totalstick = 0;
attachMovie("desktop", "desktop", 900);
delete onEnterFrame;
onEnterFrame = function () {
scoretext = "Score:" + score;
sticklefttext = totalstick;
if (totalstick < 0) {
totalstick = 0;
}
if ((((totalstick == 0) && (win == null)) && (resulton == false)) && (_root.bg.ball.moveon == false)) {
win = true;
_root.attachMovie("resulttext", "resulttext", 992);
resulton = true;
pausing = true;
}
if ((((totalstick != 0) && (win == false)) && (resulton == false)) && (_root.bg.ball.moveon == false)) {
_root.attachMovie("resulttext", "resulttext", 992);
resulton = true;
pausing = true;
}
if ((((totalstick == 0) && (win == false)) && (resulton == false)) && (_root.bg.ball.moveon == false)) {
_root.attachMovie("resulttext", "resulttext", 992);
resulton = true;
pausing = true;
}
if ((((_root.bg.ball._x > 240) || (_root.bg.ball._x < -240)) && (resulton == false)) && (_root.bg.ball.moveon == false)) {
timeon = false;
win = false;
_root.attachMovie("resulttext", "resulttext", 992);
resulton = true;
pausing = true;
}
if (score <= 0) {
score = 0;
}
if ((timeon == true) && (pausing == false)) {
sectimer--;
if (sectimer == 0) {
sectimer = 20;
sec1++;
}
if (sec1 == 10) {
sec1 = 0;
sec2++;
}
if (sec2 == 6) {
sec2 = 0;
mom++;
}
if (mom == 3) {
timeon = false;
win = false;
_root.attachMovie("resulttext", "resulttext", 992);
resulton = true;
}
}
timertext = ((("Time:" + mom) + ":") + sec2) + sec1;
totaltime = ((mom * 60) + (sec2 * 10)) + sec1;
if ((Key.isDown(p) && (pausing == false)) && (totalstick > 0)) {
_root.attachMovie("pausemc", "pausemc", 901);
}
if ((hitcount >= 2) && (combomc._name != "combomc")) {
_root.attachMovie("combomc", "combomc", 890);
}
if (countstart == false) {
hitcount = 0;
counttimer = 15;
}
if (countstart == true) {
counttimer--;
if (counttimer < 0) {
combomc.fadeout = true;
countstart = false;
}
}
if (totaltime == 60) {
attachMovie("timeleft", "timeleft", 150);
}
if (totaltime == 120) {
attachMovie("timeleft", "timeleft", 150);
}
if (totaltime == 170) {
attachMovie("timeleft", "timeleft", 150);
}
};
Frame 9
delete onEnterFrame;
_root.stage = _root.stage + 1;
exlevel = "Level " + stage;
timer = 100;
inall = 0;
fscore = score * 10;
ftime = (180 - totaltime) * 2;
froute = -route;
fkicks = (-kicks) * 2;
if (_root.stage > _root.savefile.data.lastlevel) {
_root.savefile.data.lastlevel = _root.stage;
_root.savefile.data.saveon = true;
_root.savefile.flush();
}
if (continuegame == true) {
_root.savefile.data.total = _root.savefile.data.total + (((fscore + ftime) + froute) + fkicks);
_root.savefile.data.saveon = true;
_root.savefile.flush();
}
exscore = " ";
extime = " ";
exroute = " ";
exkicks = " ";
exinall = " ";
extotal = total;
okbtnmc._alpha = 0;
okbtnmc.okbtn.enabled = false;
onEnterFrame = function () {
timer--;
if (timer == 80) {
_root.coinsound.start();
exscore = "score x 10 = " + fscore;
inall = inall + fscore;
}
if (timer == 60) {
_root.coinsound.start();
extime = "lefttime x 2 = " + ftime;
inall = inall + ftime;
}
if (timer == 40) {
_root.coinsound.start();
exroute = "route x -1 = " + froute;
inall = inall + froute;
}
if (timer == 20) {
_root.coinsound.start();
exkicks = "kicks x -2 = " + fkicks;
inall = inall + fkicks;
}
if (timer == 0) {
_root.coinsound.start();
exinall = inall;
}
if (timer == -20) {
_root.coinsound.start();
extotal = total + inall;
total = extotal;
okbtnmc._alpha = 100;
okbtnmc.okbtn.enabled = true;
delete onEnterFrame;
}
};
Frame 11
_root.attachMovie("caitiaoqi", "caitiaoqi", 1);
congratbgm.start();
mainbgm.stop("mainbgm");
congratbgm.onSoundComplete = function () {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 12;
};
_root.myname = "Here For Enter";
Instance of Symbol 461 MovieClip "model" in Frame 11
onClipEvent (load) {
this.swapDepths(0);
_alpha = 0;
}
onClipEvent (enterFrame) {
_alpha = (_alpha + 5);
if (_alpha >= 100) {
_alpha = 100;
}
}
Frame 12
endbgm.start();
endbgm.onSoundComplete = function () {
endbgm.start();
};
Frame 13
scorerate = 0;
var i = 0;
while (i <= 5) {
if (total > totalArray[i]) {
_root.totalArray.splice(i, 0, total);
_root.totalArray.splice(6);
_root["pname" + i] = myname;
_root["total" + i] = totalArray[i];
scorerate = i;
_root.attachMovie("scorerate", "scorerate", 900);
break;
}
if ((total < totalArray[i]) && (i == 5)) {
scorerate = 6;
_root.attachMovie("scorerate", "scorerate", 900);
break;
}
i++;
}
_root.savefile.data.pname0 = pname0;
_root.savefile.data.pname1 = pname1;
_root.savefile.data.pname2 = pname2;
_root.savefile.data.pname3 = pname3;
_root.savefile.data.pname4 = pname4;
_root.savefile.data.pname5 = pname5;
_root.savefile.data.total0 = totalArray[0];
_root.savefile.data.total1 = totalArray[1];
_root.savefile.data.total2 = totalArray[2];
_root.savefile.data.total3 = totalArray[3];
_root.savefile.data.total4 = totalArray[4];
_root.savefile.data.total5 = totalArray[5];
_root.savefile.data.saveon = true;
_root.savefile.flush();
Frame 14
_root.savefile.data.seetutorial = true;
_root.savefile.data.saveon = true;
_root.savefile.flush();
Symbol 17 MovieClip [addbonus] Frame 1
this._x = 550;
this._y = 200;
timer = 70;
onEnterFrame = function () {
timer--;
if ((timer < 70) && (timer > 50)) {
this._x = this._x - 5;
}
if (timer < 0) {
this._x = this._x + 5;
this._alpha = this._alpha - 5;
if (this._x > 550) {
this.removeMovieClip();
}
}
};
Instance of Symbol 19 MovieClip "ctq" in Symbol 20 MovieClip [caitiaoqi] Frame 1
onClipEvent (load) {
n = 300;
caitiaotimer = 1000;
deleteonenterframetimer = caitiaotimer + 100;
var i = 1;
while (i <= n) {
attachMovie("caitiao", "caitiao" + i, i + 10000);
var a = Math.round((200 * Math.random()) + 6);
with (this["caitiao" + i]) {
_x = 500 * Math.random();
_y = 500 * Math.random();
_xscale = a;
_yscale = a;
_rotation = a;
this["caitiao" + i].x = Math.cos(Math.PI * Math.random());
this["caitiao" + i].y = 5 + (5 * Math.random());
}
i++;
}
}
onClipEvent (enterFrame) {
caitiaotimer--;
deleteonenterframetimer--;
var i = 1;
while (i <= n) {
with (this["caitiao" + i]) {
_x = _x + x;
_y = _y + y;
_rotation = _rotation + y;
if (_y > 500) {
if (caitiaotimer > 0) {
_y = 0;
}
if (caitiaotimer < 0) {
this.removeMovieClip();
}
} else if (_x > 500) {
if (caitiaotimer > 0) {
_x = 0;
}
if (caitiaotimer < 0) {
this.removeMovieClip();
}
} else if (_x < 0) {
if (caitiaotimer > 0) {
_x = 500;
}
if (caitiaotimer < 0) {
this.removeMovieClip();
}
}
}
i++;
}
if (deleteonenterframetimer < 0) {
_parent.removeMovieClip();
}
}
Symbol 27 MovieClip [caitiao] Frame 1
gotoAndStop(random(6) + 1);
Symbol 33 MovieClip [coineffect] Frame 11
this.removeMovieClip();
Symbol 46 MovieClip [dustmc] Frame 1
this._x = _root.bg.p1._x;
this._y = _root.bg.p1._y;
this._xscale = 90;
this._yscale = 90;
Symbol 46 MovieClip [dustmc] Frame 17
this.removeMovieClip();
Symbol 65 MovieClip Frame 10
gotoAndPlay (1);
Symbol 67 MovieClip Frame 1
this._visible = _root.pdvisible;
Symbol 68 MovieClip [ball] Frame 1
moveon = false;
onEnterFrame = function () {
if (_root.pausing == false) {
if (pd.hitTest(_root.bg.p1.leftfootpd)) {
_root.p1hittedfoot = "leftfoot";
addspeed = (_root.p1power / 5) + _root.rainspeed;
_root.ballmove.call(obj, obj);
_root.hitAndShake(addspeed, addspeed);
if (addspeed > 5) {
_root.kicks++;
}
}
if (pd.hitTest(_root.bg.p1.rightfootpd)) {
_root.p1hittedfoot = "rightfoot";
addspeed = (_root.p1power / 5) + _root.rainspeed;
_root.ballmove.call(obj, obj);
_root.hitAndShake(addspeed, addspeed);
if (addspeed > 5) {
_root.kicks++;
}
}
if (moveon == true) {
_root.route++;
addspeed = addspeed - 0.5;
if (addspeed <= 0) {
addspeed = 0;
moveon = false;
}
if (_root.p1hittedfoot == "leftfoot") {
_x = (_x + (Math.cos(((90 - _root.bg.p1.leftfoot._rotation) * Math.PI) / 180) * (_root.ballmovespeed + addspeed)));
_y = (_y - (Math.sin(((90 - _root.bg.p1.leftfoot._rotation) * Math.PI) / 180) * (_root.ballmovespeed + addspeed)));
}
if (_root.p1hittedfoot == "rightfoot") {
_x = (_x + (Math.cos(((90 - _root.bg.p1.rightfoot._rotation) * Math.PI) / 180) * (_root.ballmovespeed + addspeed)));
_y = (_y - (Math.sin(((90 - _root.bg.p1.rightfoot._rotation) * Math.PI) / 180) * (_root.ballmovespeed + addspeed)));
}
var _local4 = {x:this._x, y:this._y};
_parent.localToGlobal(_local4);
_root.scrollbg(_local4.y);
}
}
};
Instance of Symbol 65 MovieClip in Symbol 68 MovieClip [ball] Frame 1
onClipEvent (enterFrame) {
if (_parent.moveon == false) {
gotoAndStop(_currentframe);
timer = _parent.addspeed * 0.5;
}
if (_parent.moveon == true) {
timer++;
if (timer >= 3) {
nextFrame();
timer = _parent.addspeed * 0.5;
}
if (_root.p1hittedfoot == "leftfoot") {
_parent._rotation = _parent._rotation + _root.bg.p1.leftfoot._rotation;
}
if (_root.p1hittedfoot == "rightfoot") {
_parent._rotation = _parent._rotation + _root.bg.p1.righttfoot._rotation;
}
if (_parent._rotation > 0) {
_parent._rotation--;
}
if (_parent._rotation < 0) {
_parent._rotation++;
}
}
}
Symbol 71 MovieClip [cursor] Frame 1
this._x = -100;
this._y = -100;
onEnterFrame = function () {
Mouse.hide();
this._x = _root._xmouse;
this._y = _root._ymouse;
};
Symbol 84 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.win == true) {
_root.winsound.start();
if (_root.totaltime <= 30) {
gotoAndStop (1);
}
if ((_root.totaltime > 30) && (_root.totaltime <= 60)) {
gotoAndStop (2);
}
if ((_root.totaltime > 60) && (_root.totaltime <= 150)) {
gotoAndStop (3);
}
if ((_root.totaltime > 150) && (_root.totaltime <= 180)) {
gotoAndStop (4);
}
delete onEnterFrame;
}
if (_root.win == false) {
gotoAndStop(random(2) + 5);
delete onEnterFrame;
}
};
Symbol 85 MovieClip [resulttext] Frame 1
this._x = 80;
this._y = 150;
_root.timeon = false;
_root.attachMovie("resultbackmc", "resultbackmc", 990);
Symbol 85 MovieClip [resulttext] Frame 25
stop();
timer = 60;
onEnterFrame = function () {
timer--;
if (timer == 0) {
if (_root.win == true) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 9;
}
if (_root.win == false) {
_root.attachMovie("retrymc", "retrymc", 991);
}
}
};
Symbol 88 MovieClip Frame 1
stop();
if (_root.win == false) {
gotoAndStop (2);
}
Symbol 89 MovieClip [resultbackmc] Frame 1
this._width = 500;
this._height = 500;
Symbol 89 MovieClip [resultbackmc] Frame 15
stop();
Symbol 91 MovieClip [fadeinmc] Frame 1
function gotogoal(goal) {
_root.gotoAndStop(goal);
}
this._width = 500;
this._height = 500;
_alpha = 0;
fade = "in";
timer = 30;
_root.fadesound.start();
if (_root._currentframe == 4) {
with (_root.btngroup) {
btn1.enabled = false;
btn2.enabled = false;
btn3.enabled = false;
btn4.enabled = false;
}
}
if (_root._currentframe == 5) {
with (_root.editp1unit) {
headprev.enabled = false;
headnext.enabled = false;
bootprev.enabled = false;
bootnext.enabled = false;
backbtn.enabled = false;
okbtn.enabled = false;
}
}
onEnterFrame = function () {
if (fade == "in") {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
timer--;
}
if (timer == 0) {
gotogoal(goal);
fade = "out";
}
}
if (fade == "out") {
_alpha = (_alpha - 10);
if (_alpha <= 0) {
_alpha = 0;
this.removeMovieClip();
}
}
if (timer == 10) {
if (_root._currentframe == 4) {
_root.readtutorialfirstmc.removeMovieClip();
}
if (_root._currentframe == 8) {
_root.bg.removeMovieClip();
_root.desktop.removeMovieClip();
_root.resulttext.removeMovieClip();
_root.resultbackmc.removeMovieClip();
_root.retrymc.removeMovieClip();
_root.areyousuremc.removeMovieClip();
_root.pausemc.removeMovieClip();
}
if (_root._currentframe == 11) {
_root.caitiaoqi.removeMovieClip();
_root.congrattext.removeMovieClip();
_root.beatentext.removeMovieClip();
_root.model.removeMovieClip();
}
}
};
Instance of Symbol 65 MovieClip in Symbol 91 MovieClip [fadeinmc] Frame 1
onClipEvent (load) {
this._xscale = 15;
this._yscale = 15;
this._x = _root._xmouse / 10;
this._y = _root._ymouse / 10;
}
onClipEvent (enterFrame) {
this._y++;
}
Symbol 96 MovieClip [stone] Frame 1
gotoAndStop(random(3));
hitonce = false;
timer = 30;
timerstart = false;
onEnterFrame = function () {
if (_root.bg.ball.pd.hitTest(this) && (hitonce == false)) {
hitonce = true;
attachMovie("bonus", "bonus", getNextHighestDepth() + 30);
bonus.pic.gotoAndStop(2);
_root.hitball.start();
_root.ballmovespeed = _root.ballmovespeed * -2;
if (_root.bg.ball._x >= this._x) {
_root.bg.ball._x = _root.bg.ball._x + 20;
}
if (_root.bg.ball._x < this._x) {
_root.bg.ball._x = _root.bg.ball._x - 20;
}
if (_root.bg.ball._y >= this._y) {
_root.bg.ball._y = _root.bg.ball._y + 20;
}
if (_root.bg.ball._y < this._y) {
_root.bg.ball._y = _root.bg.ball._y - 20;
}
timerstart = true;
}
if (timerstart == true) {
timer--;
if (timer < 0) {
timer = 30;
hitonce = false;
timerstart = false;
}
}
};
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 2
stop();
_root.score = _root.score - 10;
Symbol 101 MovieClip Frame 3
_root.score = _root.score + 10;
Symbol 102 MovieClip [bonus] Frame 20
this.removeMovieClip();
Symbol 105 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 200
stop();
Symbol 120 MovieClip Frame 1
gotoAndStop(_root.p1color);
Symbol 123 MovieClip Frame 1
this.swapDepths(200);
Instance of Symbol 105 MovieClip "bar" in Symbol 123 MovieClip Frame 1
onClipEvent (enterFrame) {
gotoAndStop(_root.p1power);
}
Symbol 129 MovieClip [desktop] Frame 1
this._x = 250;
this._y = 250;
Symbol 133 Button
on (rollOver) {
btnname = "retrybtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "retrybtn";
btnrollout(btnname);
}
on (release) {
btnrelease(7);
}
Symbol 134 Button
on (rollOver) {
btnname = "quitbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "quitbtn";
btnrollout(btnname);
}
on (release) {
_root.attachMovie("areyousuremc", "areyousuremc", 993);
quitbtn.enabled = false;
retrybtn.enabled = false;
}
Symbol 138 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 11
stop();
Symbol 141 MovieClip [retrymc] Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
_alpha = 0;
this._x = 250;
this._y = 300;
onEnterFrame = function () {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
delete onEnterFrame;
}
};
Symbol 144 Button
on (rollOver) {
_root.btnover.start();
}
on (release) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 4;
}
Symbol 145 Button
on (rollOver) {
_root.btnover.start();
}
on (release) {
_root.retrymc.quitbtn.enabled = true;
_root.retrymc.retrybtn.enabled = true;
_root.pausemc.resumebtn.enabled = true;
_root.pausemc.optionsbtn.enabled = true;
_root.pausemc.quitbtn.enabled = true;
this.removeMovieClip();
}
Symbol 146 MovieClip [areyousuremc] Frame 1
this._x = 250;
this._y = 250;
_alpha = 0;
onEnterFrame = function () {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
delete onEnterFrame;
}
};
Symbol 155 MovieClip Frame 1
stop();
_quality = "MEDIUM";
Symbol 155 MovieClip Frame 2
_quality = "HIGH";
Symbol 155 MovieClip Frame 3
_quality = "LOW";
Symbol 155 MovieClip Frame 4
gotoAndStop (1);
Symbol 159 Button
on (press) {
this.mystart_s();
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
on (rollOut) {
stopDrag();
}
Symbol 160 MovieClip Frame 1
function mystart_s() {
this.startDrag(false, 0, _y, 105, _y);
}
Symbol 161 Button
on (release) {
_root.btnover.start();
qualitymc.nextFrame();
}
Symbol 162 Button
on (release) {
_root.btnover.start();
qualitymc.gotoAndStop(2);
drager._x = 50;
}
Symbol 163 Button
on (rollOver) {
_root.btnover.start();
okbtneffect.gotoAndPlay(2);
}
on (rollOut) {
okbtneffect.gotoAndPlay(12);
}
on (release) {
if (_root._currentframe == 4) {
with (_root.btngroup) {
btn1.enabled = true;
btn2.enabled = true;
btn3.enabled = true;
btn4.enabled = true;
}
}
_root.pausemc.resumebtn.enabled = true;
_root.pausemc.optionsbtn.enabled = true;
_root.pausemc.quitbtn.enabled = true;
this.removeMovieClip();
}
Symbol 164 Button
on (rollOver) {
_root.btnover.start();
cancelbtneffect.gotoAndPlay(2);
}
on (rollOut) {
cancelbtneffect.gotoAndPlay(12);
}
on (release) {
_quality = optionstartquality;
_root.btnover.setVolume(optionstartvolume);
if (_root._currentframe == 4) {
with (_root.btngroup) {
btn1.enabled = true;
btn2.enabled = true;
btn3.enabled = true;
btn4.enabled = true;
}
}
_root.pausemc.resumebtn.enabled = true;
_root.pausemc.optionsbtn.enabled = true;
_root.pausemc.quitbtn.enabled = true;
this.removeMovieClip();
}
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 11
stop();
Symbol 166 MovieClip [optionsmc] Frame 1
function value() {
return(handle.value());
}
this._x = 250;
this._y = 250;
_root.fadesound.start();
optionstartquality = _quality;
optionstartvolume = _root.btnover.getVolume();
_alpha = 0;
onEnterFrame = function () {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
delete onEnterFrame;
}
};
Instance of Symbol 155 MovieClip "qualitymc" in Symbol 166 MovieClip [optionsmc] Frame 1
onClipEvent (load) {
this.gotoAndStop(_quality);
}
Instance of Symbol 160 MovieClip "drager" in Symbol 166 MovieClip [optionsmc] Frame 1
onClipEvent (load) {
this._x = _root.btnover.getVolume();
}
onClipEvent (enterFrame) {
_root.btnover.setVolume(this._x);
}
Symbol 169 Button
on (release) {
_root.btnover.start();
_root.pausing = false;
this.removeMovieClip();
}
Symbol 170 Button
on (release) {
_root.btnover.start();
_root.attachMovie("optionsmc", "optionsmc", 999);
resumebtn.enabled = false;
optionsbtn.enabled = false;
quitbtn.enabled = false;
}
Symbol 171 Button
on (release) {
_root.btnover.start();
_root.attachMovie("areyousuremc", "areyousuremc", 993);
resumebtn.enabled = false;
optionsbtn.enabled = false;
quitbtn.enabled = false;
}
Symbol 172 MovieClip [pausemc] Frame 1
this._x = 250;
this._y = 250;
_root.pausing = true;
_alpha = 0;
onEnterFrame = function () {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
delete onEnterFrame;
}
};
Symbol 176 MovieClip [combomc] Frame 1
this._x = 550;
this._y = 200;
timer = 70;
fadeout = false;
onEnterFrame = function () {
timer--;
if ((timer < 70) && (timer > 50)) {
this._x = this._x - 5;
}
if (fadeout == false) {
hits = _root.hitcount;
}
if (fadeout == true) {
this._x = this._x + 5;
this._alpha = this._alpha - 5;
if (this._x > 550) {
_root.score = _root.score + (hits * 10);
_root.attachMovie("addbonus", "addbonus", 895);
_root.addbonus.bonustext = "Bonus +" + (hits * 10);
this.removeMovieClip();
}
}
};
Symbol 181 Button
on (rollOver) {
btnname = "okbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "okbtn";
btnrollout(btnname);
}
on (release) {
btnrelease();
}
Symbol 182 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease() {
okbtn.enabled = false;
with (_root.btngroup) {
btn1.enabled = true;
btn2.enabled = true;
btn3.enabled = true;
btn4.enabled = true;
}
_parent.removeMovieClip();
}
Symbol 196 MovieClip [highscoremc] Frame 1
this._x = 250;
this._y = 250;
_root.fadesound.start();
with (_root.btngroup) {
btn1.enabled = false;
btn2.enabled = false;
btn3.enabled = false;
btn4.enabled = false;
}
_alpha = 0;
onEnterFrame = function () {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
delete onEnterFrame;
}
};
Symbol 205 MovieClip [scorerate] Frame 1
stop();
this._x = 250;
this._y = 100;
if (_root.scorerate <= 5) {
gotoAndStop(_root.scorerate + 2);
}
if (_root.scorerate > 5) {
gotoAndStop (8);
}
_alpha = 0;
timer = 100;
onEnterFrame = function () {
timer--;
if (timer > 70) {
_alpha = (_alpha + 10);
if (_alpha >= 100) {
_alpha = 100;
}
this._y = this._y + 5;
if (this._y >= 200) {
this._y = 200;
}
}
if (timer < 20) {
_alpha = (_alpha - 5);
if (_alpha <= 0) {
_alpha = 0;
_root.attachMovie("thanks", "thanks", 991);
this.removeMovieClip();
}
this._y = this._y + 5;
}
};
Symbol 210 MovieClip [thanks] Frame 1
this._x = 250;
this._y = 200;
Symbol 210 MovieClip [thanks] Frame 291
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = 4;
_root.mainbgm.start();
this.removeMovieClip();
Symbol 212 MovieClip [stagemask] Frame 1
this._x = 250;
this._y = 250;
Symbol 217 Button
on (rollOver) {
btnname = "surebtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "surebtn";
btnrollout(btnname);
}
on (release) {
btnrelease(14);
surebtn.enabled = false;
cancelbtn.enabled = false;
}
Symbol 218 Button
on (rollOver) {
btnname = "cancelbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "cancelbtn";
btnrollout(btnname);
}
on (release) {
fadeout();
}
Symbol 219 MovieClip [readtutorialfirstmc] Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
function fadeout() {
surebtn.enabled = false;
cancelbtn.enabled = false;
onEnterFrame = function () {
_alpha = (_alpha - 10);
if (_alpha <= 0) {
_alpha = 0;
with (_root.btngroup) {
btn1.enabled = true;
btn2.enabled = true;
btn3.enabled = true;
btn4.enabled = true;
}
this.removeMovieClip();
}
};
}
this._x = 250;
this._y = 250;
with (_root.btngroup) {
btn1.enabled = false;
btn2.enabled = false;
btn3.enabled = false;
btn4.enabled = false;
}
Symbol 226 MovieClip Frame 1
stop();
if (_root.totaltime == 120) {
gotoAndStop (2);
}
if (_root.totaltime == 170) {
gotoAndStop (3);
}
Symbol 227 MovieClip [timeleft] Frame 1
this._x = 200;
this._y = 150;
Symbol 227 MovieClip [timeleft] Frame 48
this.removeMovieClip();
Symbol 244 MovieClip [coin] Frame 1
hitonce = false;
onEnterFrame = function () {
if (_root.bg.ball.pd.hitTest(this) && (hitonce == false)) {
hitonce = true;
_root.coinsound.start();
_root.countstart = true;
_root.hitcount++;
_root.counttimer = 15;
_parent.attachMovie("coineffect", "coineffect", getNextHighestDepth() + 20);
_parent.coineffect._x = this._x;
_parent.coineffect._y = this._y;
_parent.attachMovie("bonus", "bonus", getNextHighestDepth() + 21);
_parent.bonus._x = this._x;
_parent.bonus._y = this._y;
_parent.bonus.pic.gotoAndStop(3);
this.removeMovieClip();
}
};
Symbol 249 MovieClip Frame 4
_root.stickhit.start();
Symbol 249 MovieClip Frame 14
_parent.gotoAndStop(1);
Symbol 250 MovieClip Frame 1
stop();
Symbol 251 MovieClip [stick] Frame 1
function linefadeout() {
linemc._alpha = linemc._alpha - 10;
linemc._xscale = linemc._xscale - 10;
linemc._yscale = linemc._yscale - 10;
if (linemc._alpha <= 0) {
linemc.removeMovieClip();
}
}
this.createEmptyMovieClip("linemc", this.getNextHighestDepth());
if (this._name == "g1") {
var myPoint = {x:_parent.g2._x, y:_parent.g2._y};
}
if (this._name == "g2") {
var myPoint = {x:_parent.g3._x, y:_parent.g3._y};
}
if (this._name == "g3") {
var myPoint = {x:_parent.g4._x, y:_parent.g4._y};
}
if (this._name == "g4") {
var myPoint = {x:_parent.g5._x, y:_parent.g5._y};
}
if (this._name == "g5") {
var myPoint = {x:_parent.g6._x, y:_parent.g6._y};
}
if (this._name == "g6") {
var myPoint = {x:_parent.g7._x, y:_parent.g7._y};
}
if (this._name == "g7") {
var myPoint = {x:_parent.g8._x, y:_parent.g8._y};
}
if (this._name == "g8") {
var myPoint = {x:_parent.g9._x, y:_parent.g9._y};
}
if (this._name == "g9") {
var myPoint = {x:_parent.g10._x, y:_parent.g10._y};
}
if (this._name == "g10") {
var myPoint = {x:_parent.g11._x, y:_parent.g11._y};
}
if (this._name == "g11") {
var myPoint = {x:_parent.g12._x, y:_parent.g12._y};
}
if (this._name == "g12") {
var myPoint = {x:_parent.g13._x, y:_parent.g13._y};
}
if (this._name == "g13") {
var myPoint = {x:_parent.g14._x, y:_parent.g14._y};
}
if (this._name == "g14") {
var myPoint = {x:_parent.g15._x, y:_parent.g15._y};
}
this.globalToLocal(myPoint);
linemc.lineStyle(10, 14024491, 70);
linemc.moveTo(0, 0);
linemc.lineTo(myPoint.x, myPoint.y);
deleteline = false;
onEnterFrame = function () {
if (_root.bg.ball.pd.hitTest(linemc) && (deleteline == false)) {
_root.countstart = true;
_root.hitcount++;
_root.counttimer = 15;
_root.score = _root.score + (2 * _root.stage);
_root.totalstick = _root.totalstick - 1;
_root.delline.start();
deleteline = true;
}
if (deleteline == true) {
linefadeout.call(obj, obj);
}
};
Instance of Symbol 67 MovieClip "pd" in Symbol 251 MovieClip [stick] Frame 1
onClipEvent (enterFrame) {
if (_root.bg.ball.pd.hitTest(this)) {
_parent.stick.gotoAndStop(2);
_root.ballmovespeed = _root.ballmovespeed * -1;
if (_root.bg.ball.pd._x >= this._x) {
_root.bg.ball._x = _root.bg.ball._x + 5;
}
if (_root.bg.ball.pd._x < this._x) {
_root.bg.ball._x = _root.bg.ball._x - 5;
}
if (_root.bg.ball.pd._y >= this._y) {
_root.bg.ball._y = _root.bg.ball._y + 5;
}
if (_root.bg.ball.pd._y < this._y) {
_root.bg.ball._y = _root.bg.ball._y - 5;
}
_root.win = false;
}
}
Symbol 266 MovieClip [field] Frame 1
stop();
gotoAndStop(_root.field);
Symbol 266 MovieClip [field] Frame 3
_root.rainspeed = 3;
Symbol 272 MovieClip Frame 1
stop();
onEnterFrame = function () {
gotoAndStop(_root.p1color);
if (_root._currentframe == 3) {
delete onEnterFrame;
}
};
Symbol 273 MovieClip Frame 1
stop();
Symbol 273 MovieClip Frame 6
_root.step.start();
_root.charamove.call(obj, obj);
Symbol 273 MovieClip Frame 8
_root.bg.attachMovie("dustmc", "", Math.round(Math.random() * -29) + 49);
Symbol 273 MovieClip Frame 9
gotoAndStop (1);
Symbol 273 MovieClip Frame 17
_root.step.start();
Symbol 273 MovieClip Frame 18
gotoAndStop (1);
Symbol 273 MovieClip Frame 26
_root.kick.start();
Symbol 273 MovieClip Frame 31
_root.step.start();
Symbol 273 MovieClip Frame 32
gotoAndStop (1);
Symbol 273 MovieClip Frame 44
_root.kick.start();
Symbol 273 MovieClip Frame 51
_root.step.start();
Symbol 273 MovieClip Frame 52
gotoAndStop (1);
Symbol 295 MovieClip Frame 1
stop();
onEnterFrame = function () {
gotoAndStop(_root.p1head);
if (_root._currentframe == 3) {
delete onEnterFrame;
}
};
Symbol 298 MovieClip Frame 1
stop();
Symbol 298 MovieClip Frame 18
gotoAndStop (1);
Symbol 298 MovieClip Frame 32
gotoAndStop (1);
Symbol 298 MovieClip Frame 52
gotoAndStop (1);
Symbol 299 MovieClip Frame 1
stop();
Symbol 299 MovieClip Frame 18
gotoAndStop (1);
Symbol 299 MovieClip Frame 32
gotoAndStop (1);
Symbol 299 MovieClip Frame 52
gotoAndStop (1);
Symbol 300 MovieClip [p1] Frame 1
onEnterFrame = function () {
if (Key.isDown(_root.a)) {
_root.checklfpower.call(obj, obj);
_root.powercontrol.call(obj, obj);
} else if (Key.isDown(_root.d)) {
_root.checkrfpower.call(obj, obj);
_root.powercontrol.call(obj, obj);
} else {
_root.powercancel.call(obj, obj);
}
if (Key.isDown(37)) {
head._rotation = head._rotation - 5;
leftfoot._rotation = leftfoot._rotation - 5;
rightfoot._rotation = rightfoot._rotation - 5;
}
if (Key.isDown(39)) {
head._rotation = head._rotation + 5;
leftfoot._rotation = leftfoot._rotation + 5;
rightfoot._rotation = rightfoot._rotation + 5;
}
if ((!Key.isDown(37)) && (!Key.isDown(39))) {
if (Key.isDown(38)) {
head._rotation = head._rotation + 5;
leftfoot._rotation = leftfoot._rotation + 5;
rightfoot._rotation = rightfoot._rotation + 5;
}
if (Key.isDown(40)) {
head._rotation = head._rotation - 5;
leftfoot._rotation = leftfoot._rotation - 5;
rightfoot._rotation = rightfoot._rotation - 5;
}
}
_root.p1dir = Math.abs(head._rotation);
};
Instance of Symbol 298 MovieClip "rightfootpd" in Symbol 300 MovieClip [p1] Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent.rightfoot._currentframe);
this._rotation = _parent.rightfoot._rotation;
}
Instance of Symbol 299 MovieClip "leftfootpd" in Symbol 300 MovieClip [p1] Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_parent.leftfoot._currentframe);
this._rotation = _parent.leftfoot._rotation;
}
Symbol 317 Button
on (release) {
_root.play();
}
Symbol 318 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 318 MovieClip Frame 2
gotoAndPlay (1);
Symbol 333 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 334 MovieClip Frame 95
_root.play();
_root.play();
Symbol 366 MovieClip Frame 9
_parent.breezzzelogointro.start();
Symbol 366 MovieClip Frame 27
stop();
Symbol 367 MovieClip Frame 1
var breezzzelogointro = new Sound();
breezzzelogointro.attachSound("breezzzelogointro");
Symbol 367 MovieClip Frame 26
stop();
Symbol 375 Button
on (rollOver) {
btnname = "btn1";
btnrollover(btnname);
}
on (rollOut) {
btnname = "btn1";
btnrollout(btnname);
}
on (release) {
btnrelease(5);
}
Symbol 376 Button
on (rollOver) {
btnname = "btn2";
btnrollover(btnname);
}
on (rollOut) {
btnname = "btn2";
btnrollout(btnname);
}
on (release) {
_root.attachMovie("highscoremc", "highscoremc", 990);
}
Symbol 377 Button
on (rollOver) {
btnname = "btn3";
btnrollover(btnname);
}
on (rollOut) {
btnname = "btn3";
btnrollout(btnname);
}
on (release) {
_root.attachMovie("optionsmc", "optionsmc", 200);
btn1.enabled = false;
btn2.enabled = false;
btn3.enabled = false;
btn4.enabled = false;
}
Symbol 378 Button
on (rollOver) {
btnname = "btn4";
btnrollover(btnname);
}
on (rollOut) {
btnname = "btn4";
btnrollout(btnname);
}
on (release) {
btnrelease(14);
}
Symbol 380 MovieClip Frame 1
stop();
Symbol 380 MovieClip Frame 11
stop();
Symbol 381 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 384 MovieClip Frame 41
gotoAndPlay (21);
Symbol 401 MovieClip Frame 1
gotoAndStop (12);
Symbol 401 MovieClip Frame 2
_root.p1head = 2;
Symbol 401 MovieClip Frame 3
_root.p1head = 3;
Symbol 401 MovieClip Frame 4
_root.p1head = 4;
Symbol 401 MovieClip Frame 5
_root.p1head = 5;
Symbol 401 MovieClip Frame 6
_root.p1head = 6;
Symbol 401 MovieClip Frame 7
_root.p1head = 7;
Symbol 401 MovieClip Frame 8
_root.p1head = 8;
Symbol 401 MovieClip Frame 9
_root.p1head = 9;
Symbol 401 MovieClip Frame 10
_root.p1head = 10;
Symbol 401 MovieClip Frame 11
_root.p1head = 11;
Symbol 401 MovieClip Frame 12
_root.p1head = 1;
Symbol 401 MovieClip Frame 13
gotoAndStop (2);
Symbol 407 MovieClip Frame 1
gotoAndStop (6);
Symbol 407 MovieClip Frame 2
_root.p1color = 2;
Symbol 407 MovieClip Frame 3
_root.p1color = 3;
Symbol 407 MovieClip Frame 4
_root.p1color = 4;
Symbol 407 MovieClip Frame 5
_root.p1color = 5;
Symbol 407 MovieClip Frame 6
_root.p1color = 1;
Symbol 407 MovieClip Frame 7
gotoAndStop (2);
Symbol 408 Button
on (rollOver) {
btnname = "backbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "backbtn";
btnrollout(btnname);
}
on (release) {
btnrelease(4);
}
Symbol 409 Button
on (rollOver) {
btnname = "okbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "okbtn";
btnrollout(btnname);
}
on (release) {
btnrelease(6);
}
Symbol 410 Button
on (release) {
_root.btnover.start();
p1namemc.prevFrame();
changeeffect.gotoAndPlay(2);
}
Symbol 411 Button
on (release) {
_root.btnover.start();
p1namemc.nextFrame();
changeeffect.gotoAndPlay(2);
}
Symbol 412 Button
on (release) {
_root.btnover.start();
p1bootmc.prevFrame();
changeeffect.gotoAndPlay(2);
}
Symbol 413 Button
on (release) {
_root.btnover.start();
p1bootmc.nextFrame();
changeeffect.gotoAndPlay(2);
}
Symbol 415 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 419 Button
on (rollOver) {
btnname = "continuebtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "continuebtn";
btnrollout(btnname);
}
on (release) {
btnrelease(7);
_root.continuegame = true;
continuebtn.enabled = false;
startbtn.enabled = false;
_root.total = _root.savefile.data.total;
}
Symbol 420 Button
on (rollOver) {
btnname = "startbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "startbtn";
btnrollout(btnname);
}
on (release) {
btnrelease(7);
_root.continuegame = false;
continuebtn.enabled = false;
startbtn.enabled = false;
}
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 11
stop();
Symbol 425 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 428 MovieClip Frame 48
gotoAndPlay (1);
Symbol 430 MovieClip Frame 1
stop();
this.swapDepths(5);
_root.totalstick = null;
onEnterFrame = function () {
gotoAndStop(_root.stage + 1);
};
Symbol 430 MovieClip Frame 2
_root.totalstick = 1;
i = 1;
while (i <= 2) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = 350;
g2._x = 200;
g2._y = 220;
Symbol 430 MovieClip Frame 3
_root.totalstick = 1;
i = 1;
while (i <= 2) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = 80;
g2._x = 100;
g2._y = 50;
s = 1;
while (s <= 2) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 350;
stone1._y = 250;
stone2._x = 200;
stone2._y = 100;
Symbol 430 MovieClip Frame 4
_root.totalstick = 2;
i = 1;
while (i <= 3) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 170;
g1._y = 230;
g2._x = 250;
g2._y = 200;
g3._x = 250;
g3._y = 50;
s = 1;
while (s <= 3) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 200;
stone1._y = 100;
stone2._x = 400;
stone2._y = 350;
stone3._x = 100;
stone3._y = 400;
Symbol 430 MovieClip Frame 5
_root.totalstick = 3;
i = 1;
while (i <= 4) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 100;
g1._y = 100;
g2._x = 250;
g2._y = 250;
g3._x = 100;
g3._y = 300;
g4._x = 250;
g4._y = 200;
s = 1;
while (s <= 3) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 200;
stone1._y = 160;
stone2._x = 300;
stone2._y = 350;
stone3._x = 450;
stone2._y = 300;
c = 1;
while (c <= 1) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 150;
coin1._y = 330;
Symbol 430 MovieClip Frame 6
_root.totalstick = 4;
i = 1;
while (i <= 5) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 200;
g1._y = 300;
g2._x = 250;
g2._y = 250;
g3._x = 300;
g3._y = 170;
g4._x = 200;
g4._y = 150;
g5._x = 100;
g5._y = 150;
s = 1;
while (s <= 3) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 150;
stone1._y = 280;
stone2._x = 300;
stone2._y = 300;
stone3._x = 350;
stone3._y = 100;
c = 1;
while (c <= 4) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 100;
coin1._y = 200;
coin2._x = 240;
coin2._y = 600;
coin3._x = 100;
coin3._y = 250;
coin4._x = 100;
coin4._y = 300;
Symbol 430 MovieClip Frame 7
_root.totalstick = 4;
i = 1;
while (i <= 5) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 250;
g1._y = 300;
g2._x = 250;
g2._y = 200;
g3._x = 300;
g3._y = 170;
g4._x = 200;
g4._y = 150;
g5._x = 180;
g5._y = 100;
s = 1;
while (s <= 2) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 250;
stone1._y = 300;
stone2._x = 100;
stone2._y = 200;
c = 1;
while (c <= 6) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 130;
coin1._y = 280;
coin2._x = 130;
coin2._y = 320;
coin3._x = 130;
coin3._y = 360;
coin4._x = 100;
coin4._y = 300;
coin5._x = 80;
coin5._y = 280;
coin6._x = 60;
coin6._y = 220;
Symbol 430 MovieClip Frame 8
_root.totalstick = 4;
i = 1;
while (i <= 5) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 360;
g1._y = 100;
g2._x = 170;
g2._y = 100;
g3._x = 50;
g3._y = 80;
g4._x = 120;
g4._y = 350;
g5._x = 280;
g5._y = 200;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 200;
stone1._y = 250;
stone2._x = 250;
stone2._y = 250;
stone3._x = 300;
stone3._y = 250;
stone4._x = 350;
stone4._y = 250;
stone5._x = 400;
stone5._y = 250;
c = 1;
while (c <= 5) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 230;
coin1._y = 280;
coin2._x = 150;
coin2._y = 120;
coin3._x = 330;
coin3._y = 300;
coin4._x = 300;
coin4._y = 50;
coin5._x = 80;
coin5._y = 200;
Symbol 430 MovieClip Frame 9
_root.totalstick = 4;
i = 1;
while (i <= 5) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 100;
g1._y = 100;
g2._x = 200;
g2._y = 50;
g3._x = 250;
g3._y = 70;
g4._x = 270;
g4._y = 190;
g5._x = 450;
g5._y = 200;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 120;
stone1._y = 80;
stone2._x = 250;
stone2._y = 40;
stone3._x = 300;
stone3._y = 220;
stone4._x = 350;
stone4._y = 180;
stone5._x = 400;
stone5._y = 220;
c = 1;
while (c <= 5) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 140;
coin1._y = 100;
coin2._x = 270;
coin2._y = 60;
coin3._x = 330;
coin3._y = 220;
coin4._x = 300;
coin4._y = 150;
coin5._x = 420;
coin5._y = 200;
Symbol 430 MovieClip Frame 10
_root.totalstick = 4;
i = 1;
while (i <= 5) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 300;
g1._y = 150;
g2._x = 50;
g2._y = 50;
g3._x = 80;
g3._y = 100;
g4._x = 200;
g4._y = 200;
g5._x = 250;
g5._y = 250;
s = 1;
while (s <= 6) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 110;
stone1._y = 80;
stone2._x = 280;
stone2._y = 200;
stone3._x = 100;
stone3._y = 210;
stone4._x = 50;
stone4._y = 100;
stone5._x = 50;
stone5._y = 80;
stone6._x = 200;
stone6._y = 50;
c = 1;
while (c <= 8) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 120;
coin1._y = 300;
coin2._x = 370;
coin2._y = 160;
coin3._x = 430;
coin3._y = 450;
coin4._x = 300;
coin4._y = 250;
coin5._x = 300;
coin5._y = 200;
coin6._x = 350;
coin6._y = 250;
coin7._x = 20;
coin7._y = 280;
coin8._x = 320;
coin8._y = 300;
Symbol 430 MovieClip Frame 11
_root.totalstick = 5;
i = 1;
while (i <= 6) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 50;
g1._y = 0;
g2._x = 50;
g2._y = 150;
g3._x = 130;
g3._y = 170;
g4._x = 180;
g4._y = 200;
g5._x = 120;
g5._y = 230;
g6._x = 80;
g6._y = 250;
s = 1;
while (s <= 7) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 80;
stone1._y = 80;
stone2._x = 280;
stone2._y = 20;
stone3._x = 130;
stone3._y = 10;
stone4._x = 300;
stone4._y = 0;
stone5._x = 250;
stone5._y = 280;
stone6._x = 150;
stone6._y = 190;
stone7._x = 90;
stone7._y = 240;
c = 1;
while (c <= 8) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 140;
coin1._y = 200;
coin2._x = 370;
coin2._y = -10;
coin3._x = 430;
coin3._y = 10;
coin4._x = 350;
coin4._y = 30;
coin5._x = 200;
coin5._y = 80;
coin6._x = 150;
coin6._y = 250;
coin7._x = 20;
coin7._y = 280;
coin8._x = 20;
coin8._y = 300;
Symbol 430 MovieClip Frame 12
_root.totalstick = 5;
i = 1;
while (i <= 6) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = 30;
g2._x = 50;
g2._y = 80;
g3._x = 200;
g3._y = 170;
g4._x = 120;
g4._y = 150;
g5._x = 130;
g5._y = 190;
g6._x = 170;
g6._y = 250;
s = 1;
while (s <= 6) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 80;
stone1._y = 80;
stone2._x = 280;
stone2._y = 100;
stone3._x = 10;
stone3._y = 50;
stone4._x = 300;
stone4._y = 40;
stone5._x = 220;
stone5._y = 290;
stone6._x = 110;
stone6._y = 290;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 160;
coin1._y = 200;
coin2._x = 300;
coin2._y = 0;
coin3._x = 400;
coin3._y = 10;
coin4._x = 350;
coin4._y = 50;
coin5._x = 200;
coin5._y = 100;
coin6._x = 150;
coin6._y = 280;
coin7._x = 80;
coin7._y = 280;
coin8._x = 100;
coin8._y = 300;
coin9._x = 350;
coin9._y = 130;
coin10._x = 200;
coin10._y = 200;
coin11._x = 150;
coin11._y = 250;
coin12._x = 320;
coin12._y = 290;
coin13._x = 120;
coin13._y = 350;
coin14._x = 130;
coin14._y = 280;
coin15._x = 110;
coin15._y = 300;
Symbol 430 MovieClip Frame 13
_root.totalstick = 5;
i = 1;
while (i <= 6) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = -30;
g2._x = 300;
g2._y = 80;
g3._x = 350;
g3._y = 230;
g4._x = 320;
g4._y = 200;
g5._x = 200;
g5._y = 130;
g6._x = 170;
g6._y = 250;
s = 1;
while (s <= 4) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 180;
stone1._y = 0;
stone2._x = 380;
stone2._y = 100;
stone3._x = 200;
stone3._y = 70;
stone4._x = 300;
stone4._y = 60;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 150;
coin1._y = 150;
coin2._x = 210;
coin2._y = 10;
coin3._x = 400;
coin3._y = 0;
coin4._x = 350;
coin4._y = -50;
coin5._x = 200;
coin5._y = -30;
coin6._x = 150;
coin6._y = 180;
coin7._x = 380;
coin7._y = 180;
coin8._x = 100;
coin8._y = -20;
coin9._x = 350;
coin9._y = 20;
coin10._x = 200;
coin10._y = 200;
coin11._x = 190;
coin11._y = 50;
coin12._x = 320;
coin12._y = 190;
coin13._x = 120;
coin13._y = 250;
coin14._x = 330;
coin14._y = 280;
coin15._x = 110;
coin15._y = 100;
Symbol 430 MovieClip Frame 14
_root.totalstick = 5;
i = 1;
while (i <= 6) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 130;
g1._y = 0;
g2._x = 250;
g2._y = 50;
g3._x = 50;
g3._y = 100;
g4._x = 20;
g4._y = 300;
g5._x = 50;
g5._y = 250;
g6._x = 20;
g6._y = 220;
s = 1;
while (s <= 6) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 180;
stone1._y = 230;
stone2._x = 380;
stone2._y = 200;
stone3._x = 200;
stone3._y = 270;
stone4._x = 70;
stone4._y = 260;
stone5._x = 230;
stone5._y = 70;
stone6._x = 100;
stone6._y = 60;
c = 1;
while (c <= 9) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 100;
coin1._y = 250;
coin2._x = 210;
coin2._y = 10;
coin3._x = 400;
coin3._y = 0;
coin4._x = 350;
coin4._y = 0;
coin5._x = 100;
coin5._y = 200;
coin6._x = 350;
coin6._y = 280;
coin7._x = 280;
coin7._y = 380;
coin8._x = 120;
coin8._y = 20;
coin9._x = 300;
coin9._y = 20;
Symbol 430 MovieClip Frame 15
_root.totalstick = 6;
i = 1;
while (i <= 7) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 200;
g1._y = 0;
g2._x = 100;
g2._y = -50;
g3._x = 220;
g3._y = 30;
g4._x = 250;
g4._y = 80;
g5._x = 50;
g5._y = 250;
g6._x = 20;
g6._y = 120;
g7._x = 120;
g7._y = -20;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 180;
stone1._y = 0;
stone2._x = 50;
stone2._y = 200;
stone3._x = 200;
stone3._y = 100;
stone4._x = 250;
stone4._y = 150;
stone5._x = 280;
stone5._y = 90;
c = 1;
while (c <= 8) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 200;
coin1._y = 350;
coin2._x = 10;
coin2._y = 320;
coin3._x = 30;
coin3._y = 300;
coin4._x = 50;
coin4._y = 280;
coin5._x = 80;
coin5._y = 200;
coin6._x = 250;
coin6._y = 180;
coin7._x = 180;
coin7._y = 380;
coin8._x = 320;
coin8._y = 220;
Symbol 430 MovieClip Frame 16
_root.totalstick = 6;
i = 1;
while (i <= 7) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 350;
g1._y = 100;
g2._x = 330;
g2._y = 200;
g3._x = 270;
g3._y = 240;
g4._x = 270;
g4._y = 280;
g5._x = 340;
g5._y = 310;
g6._x = 360;
g6._y = 270;
g7._x = 300;
g7._y = 190;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 280;
stone1._y = 0;
stone2._x = 250;
stone2._y = 100;
stone3._x = 300;
stone3._y = 10;
stone4._x = 350;
stone4._y = 50;
stone5._x = 380;
stone5._y = 90;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 300;
coin1._y = 250;
coin2._x = 270;
coin2._y = 320;
coin3._x = 230;
coin3._y = 100;
coin4._x = 250;
coin4._y = 280;
coin5._x = 280;
coin5._y = 200;
coin6._x = 350;
coin6._y = 180;
coin7._x = 280;
coin7._y = 380;
coin8._x = 320;
coin8._y = 20;
coin9._x = 380;
coin9._y = 80;
coin10._x = 320;
coin10._y = 20;
Symbol 430 MovieClip Frame 17
_root.totalstick = 6;
i = 1;
while (i <= 7) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 280;
g1._y = 100;
g2._x = 130;
g2._y = 80;
g3._x = 170;
g3._y = 340;
g4._x = 370;
g4._y = 440;
g5._x = 400;
g5._y = 480;
g6._x = 360;
g6._y = 520;
g7._x = 300;
g7._y = 360;
s = 1;
while (s <= 7) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 80;
stone1._y = 200;
stone2._x = 250;
stone2._y = 300;
stone3._x = 300;
stone3._y = 410;
stone4._x = 390;
stone4._y = 450;
stone5._x = 380;
stone5._y = 290;
stone6._x = 270;
stone6._y = 410;
stone7._x = 310;
stone7._y = 120;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 390;
coin1._y = 450;
coin2._x = 370;
coin2._y = 220;
coin3._x = 130;
coin3._y = 0;
coin4._x = 250;
coin4._y = 280;
coin5._x = 380;
coin5._y = 300;
coin6._x = 350;
coin6._y = 320;
coin7._x = 280;
coin7._y = 380;
coin8._x = 220;
coin8._y = 220;
coin9._x = 80;
coin9._y = 420;
coin10._x = 20;
coin10._y = 420;
_root.bg.p1._x = -180;
_root.bg.p1._y = -150;
_root.bg.ball._x = -180;
_root.bg.ball._y = -200;
Symbol 430 MovieClip Frame 18
_root.totalstick = 6;
i = 1;
while (i <= 7) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 260;
g1._y = 270;
g2._x = 230;
g2._y = 200;
g3._x = 260;
g3._y = 130;
g4._x = 230;
g4._y = 60;
g5._x = 260;
g5._y = -10;
g6._x = 230;
g6._y = -80;
g7._x = 250;
g7._y = -130;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 280;
stone1._y = 220;
stone2._x = 200;
stone2._y = 150;
stone3._x = 300;
stone3._y = 80;
stone4._x = 220;
stone4._y = -100;
stone5._x = 240;
stone5._y = -70;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 200;
coin1._y = 250;
coin2._x = 270;
coin2._y = 220;
coin3._x = 230;
coin3._y = 100;
coin4._x = 250;
coin4._y = 180;
coin5._x = 280;
coin5._y = 200;
coin6._x = 250;
coin6._y = -80;
coin7._x = 280;
coin7._y = 80;
coin8._x = 320;
coin8._y = -120;
coin9._x = 280;
coin9._y = 80;
coin10._x = 320;
coin10._y = 220;
Symbol 430 MovieClip Frame 19
_root.totalstick = 7;
i = 1;
while (i <= 8) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 160;
g1._y = 370;
g2._x = 330;
g2._y = 200;
g3._x = 360;
g3._y = 230;
g4._x = 130;
g4._y = 260;
g5._x = 60;
g5._y = 0;
g6._x = 230;
g6._y = -80;
g7._x = 50;
g7._y = 300;
g8._x = 0;
g8._y = 100;
s = 1;
while (s <= 7) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 180;
stone1._y = 320;
stone2._x = 100;
stone2._y = 350;
stone3._x = 200;
stone3._y = 280;
stone4._x = 110;
stone4._y = -100;
stone5._x = 40;
stone5._y = 280;
stone6._x = 60;
stone6._y = 200;
stone7._x = 40;
stone7._y = 250;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 100;
coin1._y = 250;
coin2._x = 170;
coin2._y = 320;
coin3._x = 80;
coin3._y = 100;
coin4._x = 150;
coin4._y = 180;
coin5._x = 220;
coin5._y = 200;
coin6._x = 250;
coin6._y = -80;
coin7._x = 190;
coin7._y = 80;
coin8._x = 320;
coin8._y = 320;
coin9._x = 200;
coin9._y = 80;
coin10._x = 120;
coin10._y = 220;
coin11._x = 250;
coin11._y = 20;
coin12._x = 80;
coin12._y = 80;
coin13._x = 220;
coin13._y = 320;
coin14._x = 280;
coin14._y = 80;
coin15._x = 320;
coin15._y = 220;
Symbol 430 MovieClip Frame 20
_root.totalstick = 7;
i = 1;
while (i <= 8) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 330;
g1._y = 350;
g2._x = 300;
g2._y = 200;
g3._x = 220;
g3._y = 230;
g4._x = 130;
g4._y = 260;
g5._x = 60;
g5._y = 110;
g6._x = 90;
g6._y = 50;
g7._x = 180;
g7._y = -30;
g8._x = 100;
g8._y = -100;
s = 1;
while (s <= 7) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 380;
stone1._y = 360;
stone2._x = 200;
stone2._y = 250;
stone3._x = 200;
stone3._y = 280;
stone4._x = 110;
stone4._y = 200;
stone5._x = 40;
stone5._y = 280;
stone6._x = 60;
stone6._y = 100;
stone7._x = 250;
stone7._y = -100;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 90;
coin1._y = 220;
coin2._x = 130;
coin2._y = 220;
coin3._x = 80;
coin3._y = 70;
coin4._x = 140;
coin4._y = 180;
coin5._x = 280;
coin5._y = 200;
coin6._x = 150;
coin6._y = 180;
coin7._x = 110;
coin7._y = 380;
coin8._x = 320;
coin8._y = 320;
coin9._x = 250;
coin9._y = 350;
coin10._x = 120;
coin10._y = 220;
coin11._x = 290;
coin11._y = 20;
coin12._x = 90;
coin12._y = 180;
coin13._x = 220;
coin13._y = 220;
coin14._x = 280;
coin14._y = 80;
coin15._x = 110;
coin15._y = 240;
Symbol 430 MovieClip Frame 21
_root.totalstick = 8;
i = 1;
while (i <= 9) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 380;
g1._y = -50;
g2._x = 350;
g2._y = 0;
g3._x = 120;
g3._y = 130;
g4._x = 180;
g4._y = 360;
g5._x = 160;
g5._y = 420;
g6._x = 190;
g6._y = 450;
g7._x = 350;
g7._y = 400;
g8._x = 380;
g8._y = 350;
g9._x = 300;
g9._y = 100;
s = 1;
while (s <= 7) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 300;
stone1._y = 60;
stone2._x = 280;
stone2._y = 250;
stone3._x = 100;
stone3._y = 380;
stone4._x = 110;
stone4._y = 200;
stone5._x = 40;
stone5._y = 80;
stone6._x = 60;
stone6._y = -100;
stone7._x = 250;
stone7._y = -50;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 190;
coin1._y = 20;
coin2._x = 330;
coin2._y = 320;
coin3._x = 80;
coin3._y = 70;
coin4._x = 140;
coin4._y = 180;
coin5._x = 280;
coin5._y = 300;
coin6._x = 150;
coin6._y = 180;
coin7._x = 110;
coin7._y = 380;
coin8._x = 100;
coin8._y = -120;
coin9._x = 250;
coin9._y = 50;
coin10._x = 120;
coin10._y = 20;
coin11._x = 290;
coin11._y = -20;
coin12._x = 90;
coin12._y = 380;
coin13._x = 320;
coin13._y = 220;
coin14._x = 280;
coin14._y = 80;
coin15._x = 110;
coin15._y = 0;
Symbol 430 MovieClip Frame 22
_root.totalstick = 8;
i = 1;
while (i <= 9) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 280;
g1._y = -80;
g2._x = 150;
g2._y = -50;
g3._x = 320;
g3._y = 0;
g4._x = 80;
g4._y = 50;
g5._x = 130;
g5._y = 120;
g6._x = 190;
g6._y = 250;
g7._x = 250;
g7._y = 300;
g8._x = 350;
g8._y = 150;
g9._x = 300;
g9._y = 200;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 300;
stone1._y = 60;
stone2._x = 380;
stone2._y = 50;
stone3._x = 200;
stone3._y = 480;
stone4._x = 310;
stone4._y = 300;
stone5._x = 350;
stone5._y = 180;
c = 1;
while (c <= 15) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 200;
coin1._y = -50;
coin2._x = 180;
coin2._y = -80;
coin3._x = 180;
coin3._y = -60;
coin4._x = 330;
coin4._y = 180;
coin5._x = 320;
coin5._y = 170;
coin6._x = 290;
coin6._y = 150;
coin7._x = 260;
coin7._y = 130;
coin8._x = 220;
coin8._y = 320;
coin9._x = 250;
coin9._y = 450;
coin10._x = 120;
coin10._y = -20;
coin11._x = 390;
coin11._y = -20;
coin12._x = 190;
coin12._y = 380;
coin13._x = 200;
coin13._y = 250;
coin14._x = 280;
coin14._y = 80;
coin15._x = 200;
coin15._y = 280;
Symbol 430 MovieClip Frame 23
_root.totalstick = 8;
i = 1;
while (i <= 9) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 120;
g1._y = 200;
g2._x = 50;
g2._y = 140;
g3._x = 160;
g3._y = 180;
g4._x = 370;
g4._y = 250;
g5._x = 260;
g5._y = 300;
g6._x = 190;
g6._y = 320;
g7._x = 80;
g7._y = 220;
g8._x = 30;
g8._y = 110;
g9._x = 80;
g9._y = 50;
s = 1;
while (s <= 6) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 110;
stone1._y = 250;
stone2._x = 280;
stone2._y = 260;
stone3._x = 270;
stone3._y = 30;
stone4._x = 150;
stone4._y = 120;
stone5._x = 150;
stone5._y = 110;
stone6._x = 320;
stone6._y = 300;
c = 1;
while (c <= 12) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 160;
coin1._y = 30;
coin2._x = 180;
coin2._y = -60;
coin3._x = 200;
coin3._y = -40;
coin4._x = 20;
coin4._y = -120;
coin5._x = 10;
coin5._y = 400;
coin6._x = 90;
coin6._y = 310;
coin7._x = 70;
coin7._y = 430;
coin8._x = 70;
coin8._y = 330;
coin9._x = 30;
coin9._y = 200;
coin10._x = 380;
coin10._y = 150;
coin11._x = 20;
coin11._y = 300;
coin12._x = 80;
coin12._y = 50;
Symbol 430 MovieClip Frame 24
_root.totalstick = 9;
i = 1;
while (i <= 10) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 420;
g1._y = 100;
g2._x = 100;
g2._y = 40;
g3._x = 120;
g3._y = 80;
g4._x = 300;
g4._y = 150;
g5._x = 350;
g5._y = 50;
g6._x = 170;
g6._y = 200;
g7._x = 50;
g7._y = 150;
g8._x = 20;
g8._y = 10;
g9._x = 40;
g9._y = -50;
g10._x = 80;
g10._y = -650;
s = 1;
while (s <= 10) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 10;
stone1._y = 150;
stone2._x = 280;
stone2._y = 60;
stone3._x = 170;
stone3._y = 30;
stone4._x = 150;
stone4._y = 20;
stone5._x = 150;
stone5._y = 10;
stone6._x = 300;
stone6._y = 200;
stone7._x = 30;
stone7._y = 30;
stone8._x = 150;
stone8._y = 290;
stone9._x = 180;
stone9._y = 350;
stone10._x = 180;
stone10._y = 300;
c = 1;
while (c <= 12) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 160;
coin1._y = 10;
coin2._x = 180;
coin2._y = -40;
coin3._x = 200;
coin3._y = -40;
coin4._x = 20;
coin4._y = -20;
coin5._x = 210;
coin5._y = 300;
coin6._x = 190;
coin6._y = 310;
coin7._x = 170;
coin7._y = 330;
coin8._x = 70;
coin8._y = 330;
coin9._x = 30;
coin9._y = 200;
coin10._x = 380;
coin10._y = 50;
coin11._x = 120;
coin11._y = 300;
coin12._x = 80;
coin12._y = 50;
Symbol 430 MovieClip Frame 25
_root.totalstick = 9;
i = 1;
while (i <= 10) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 320;
g1._y = 110;
g2._x = 50;
g2._y = 40;
g3._x = 30;
g3._y = 80;
g4._x = 80;
g4._y = 150;
g5._x = 230;
g5._y = 250;
g6._x = 170;
g6._y = 230;
g7._x = 50;
g7._y = 150;
g8._x = 20;
g8._y = 180;
g9._x = 40;
g9._y = -20;
g10._x = 80;
g10._y = -350;
s = 1;
while (s <= 10) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 70;
stone1._y = 150;
stone2._x = 280;
stone2._y = 60;
stone3._x = 170;
stone3._y = 80;
stone4._x = 150;
stone4._y = 20;
stone5._x = 190;
stone5._y = 10;
stone6._x = 300;
stone6._y = 300;
stone7._x = 30;
stone7._y = 30;
stone8._x = 150;
stone8._y = 890;
stone9._x = 130;
stone9._y = 250;
stone10._x = 180;
stone10._y = 430;
c = 1;
while (c <= 12) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 160;
coin1._y = 10;
coin2._x = 180;
coin2._y = -40;
coin3._x = 200;
coin3._y = -40;
coin4._x = 320;
coin4._y = -20;
coin5._x = 310;
coin5._y = 300;
coin6._x = 190;
coin6._y = 310;
coin7._x = 370;
coin7._y = 30;
coin8._x = 70;
coin8._y = 330;
coin9._x = 80;
coin9._y = 200;
coin10._x = 380;
coin10._y = -50;
coin11._x = 120;
coin11._y = 200;
coin12._x = 50;
coin12._y = 50;
Symbol 430 MovieClip Frame 26
_root.totalstick = 10;
i = 1;
while (i <= 11) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 30;
g1._y = 140;
g2._x = 80;
g2._y = 140;
g3._x = 100;
g3._y = 30;
g4._x = 130;
g4._y = 150;
g5._x = 230;
g5._y = 250;
g6._x = 100;
g6._y = 230;
g7._x = 50;
g7._y = 150;
g8._x = 20;
g8._y = 70;
g9._x = 80;
g9._y = 20;
g10._x = 120;
g10._y = -200;
g11._x = 200;
g11._y = -300;
s = 1;
while (s <= 10) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 170;
stone1._y = 350;
stone2._x = 280;
stone2._y = 120;
stone3._x = 170;
stone3._y = 480;
stone4._x = 150;
stone4._y = 20;
stone5._x = 190;
stone5._y = 30;
stone6._x = 300;
stone6._y = 300;
stone7._x = 30;
stone7._y = 120;
stone8._x = 150;
stone8._y = 150;
stone9._x = 130;
stone9._y = 180;
stone10._x = 180;
stone10._y = 280;
c = 1;
while (c <= 12) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 160;
coin1._y = 200;
coin2._x = 180;
coin2._y = 300;
coin3._x = 200;
coin3._y = 370;
coin4._x = 320;
coin4._y = -20;
coin5._x = 310;
coin5._y = 300;
coin6._x = 190;
coin6._y = 310;
coin7._x = 370;
coin7._y = 30;
coin8._x = 70;
coin8._y = 330;
coin9._x = 210;
coin9._y = 50;
coin10._x = 140;
coin10._y = 0;
coin11._x = 120;
coin11._y = 170;
coin12._x = 180;
coin12._y = 200;
Symbol 430 MovieClip Frame 27
_root.totalstick = 11;
i = 1;
while (i <= 12) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = 150;
g2._x = 120;
g2._y = 200;
g3._x = 170;
g3._y = 70;
g4._x = 200;
g4._y = 50;
g5._x = 150;
g5._y = 0;
g6._x = 370;
g6._y = 60;
g7._x = 350;
g7._y = 0;
g8._x = 100;
g8._y = 300;
g9._x = 200;
g9._y = 250;
g10._x = 220;
g10._y = 350;
g11._x = 280;
g11._y = 400;
g12._x = 210;
g12._y = 450;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 130;
stone1._y = 120;
stone2._x = 180;
stone2._y = 480;
stone3._x = 170;
stone3._y = 400;
stone4._x = 190;
stone4._y = 260;
stone5._x = 150;
stone5._y = 220;
c = 1;
while (c <= 6) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 230;
coin1._y = 230;
coin2._x = 300;
coin2._y = 80;
coin3._x = 170;
coin3._y = 330;
coin4._x = 230;
coin4._y = 300;
coin5._x = 280;
coin5._y = 180;
coin6._x = 150;
coin6._y = 130;
Symbol 430 MovieClip Frame 28
_root.totalstick = 12;
i = 1;
while (i <= 13) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 120;
g1._y = 100;
g2._x = 200;
g2._y = 200;
g3._x = 110;
g3._y = 70;
g4._x = 200;
g4._y = 50;
g5._x = 150;
g5._y = -40;
g6._x = 370;
g6._y = -60;
g7._x = 350;
g7._y = 0;
g8._x = 100;
g8._y = 100;
g9._x = 200;
g9._y = 250;
g10._x = 220;
g10._y = 350;
g11._x = 280;
g11._y = 310;
g12._x = 210;
g12._y = 300;
g13._x = 190;
g13._y = 100;
s = 1;
while (s <= 6) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 110;
stone1._y = 100;
stone2._x = 130;
stone2._y = 80;
stone3._x = 170;
stone3._y = 330;
stone4._x = 130;
stone4._y = 300;
stone5._x = 150;
stone5._y = 320;
stone6._x = 200;
stone6._y = 330;
c = 1;
while (c <= 7) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 230;
coin1._y = 330;
coin2._x = 200;
coin2._y = 280;
coin3._x = 170;
coin3._y = 230;
coin4._x = 130;
coin4._y = 200;
coin5._x = 80;
coin5._y = 170;
coin6._x = 50;
coin6._y = 100;
coin7._x = 100;
coin7._y = 40;
Symbol 430 MovieClip Frame 29
_root.totalstick = 13;
i = 1;
while (i <= 14) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 120;
g1._y = 180;
g2._x = 200;
g2._y = 200;
g3._x = 110;
g3._y = 180;
g4._x = 200;
g4._y = 50;
g5._x = 150;
g5._y = 40;
g6._x = 370;
g6._y = 200;
g7._x = 350;
g7._y = 250;
g8._x = 320;
g8._y = 300;
g9._x = 400;
g9._y = 250;
g10._x = 100;
g10._y = 350;
g11._x = 220;
g11._y = 390;
g12._x = 20;
g12._y = 300;
g13._x = 120;
g13._y = 250;
g14._x = 130;
g14._y = 330;
s = 1;
while (s <= 8) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 110;
stone1._y = 300;
stone2._x = 130;
stone2._y = 300;
stone3._x = 170;
stone3._y = 330;
stone4._x = 130;
stone4._y = 300;
stone5._x = 150;
stone5._y = 320;
stone6._x = 320;
stone6._y = 150;
stone7._x = 70;
stone7._y = 180;
stone8._x = 330;
stone8._y = 290;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 330;
coin1._y = 170;
coin2._x = 130;
coin2._y = 280;
coin3._x = 250;
coin3._y = 230;
coin4._x = 230;
coin4._y = 20;
coin5._x = 500;
coin5._y = 290;
coin6._x = 250;
coin6._y = 250;
coin7._x = 170;
coin7._y = 330;
coin8._x = 70;
coin8._y = 370;
coin9._x = 320;
coin9._y = 10;
coin10._x = 230;
coin10._y = 0;
Symbol 430 MovieClip Frame 30
_root.totalstick = 14;
i = 1;
while (i <= 15) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 150;
g1._y = 80;
g2._x = 200;
g2._y = 200;
g3._x = 110;
g3._y = 180;
g4._x = 200;
g4._y = 50;
g5._x = 250;
g5._y = 40;
g6._x = 370;
g6._y = 100;
g7._x = 350;
g7._y = 150;
g8._x = 320;
g8._y = 300;
g9._x = 400;
g9._y = 250;
g10._x = 300;
g10._y = 350;
g11._x = 290;
g11._y = 390;
g12._x = 200;
g12._y = 400;
g13._x = 120;
g13._y = 250;
g14._x = 130;
g14._y = 330;
g15._x = 110;
g15._y = 290;
s = 1;
while (s <= 5) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 170;
stone1._y = 150;
stone2._x = 250;
stone2._y = 180;
stone3._x = 150;
stone3._y = 220;
stone4._x = 320;
stone4._y = 250;
stone5._x = 70;
stone5._y = 280;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 110;
coin1._y = 170;
coin2._x = 130;
coin2._y = 280;
coin3._x = 250;
coin3._y = 250;
coin4._x = 230;
coin4._y = 20;
coin5._x = 280;
coin5._y = 290;
coin6._x = 190;
coin6._y = 30;
coin7._x = 170;
coin7._y = 330;
coin8._x = 70;
coin8._y = 330;
coin9._x = 320;
coin9._y = 100;
coin10._x = 320;
coin10._y = 0;
Symbol 430 MovieClip Frame 31
_root.totalstick = 14;
i = 1;
while (i <= 15) {
attachMovie("stick", "g" + i, 300 + i);
i++;
}
g1._x = 50;
g1._y = 50;
g2._x = 100;
g2._y = 100;
g3._x = 130;
g3._y = 160;
g4._x = 200;
g4._y = 150;
g5._x = 350;
g5._y = 40;
g6._x = 390;
g6._y = 100;
g7._x = 350;
g7._y = 150;
g8._x = 320;
g8._y = 200;
g9._x = 400;
g9._y = 250;
g10._x = 350;
g10._y = 300;
g11._x = 290;
g11._y = 390;
g12._x = 200;
g12._y = 500;
g13._x = 160;
g13._y = 350;
g14._x = 130;
g14._y = 330;
g15._x = 90;
g15._y = 270;
s = 1;
while (s <= 8) {
attachMovie("stone", "stone" + s, 350 + s);
s++;
}
stone1._x = 170;
stone1._y = 200;
stone2._x = 280;
stone2._y = 180;
stone3._x = 170;
stone3._y = 190;
stone4._x = 100;
stone4._y = 200;
stone5._x = 150;
stone5._y = 220;
stone6._x = 300;
stone6._y = 200;
stone7._x = 70;
stone7._y = 280;
stone8._x = 190;
stone8._y = 380;
c = 1;
while (c <= 10) {
attachMovie("coin", "coin" + c, 360 + c);
c++;
}
coin1._x = 120;
coin1._y = 170;
coin2._x = 170;
coin2._y = 280;
coin3._x = 250;
coin3._y = 250;
coin4._x = 230;
coin4._y = 270;
coin5._x = 210;
coin5._y = 290;
coin6._x = 190;
coin6._y = 310;
coin7._x = 170;
coin7._y = 330;
coin8._x = 70;
coin8._y = 330;
coin9._x = 320;
coin9._y = 300;
coin10._x = 380;
coin10._y = 50;
Symbol 434 MovieClip Frame 1
this.swapDepths(52);
onEnterFrame = function () {
this._x = _root.bg.p1._x;
this._rotation = -_root.bg.p1.head._rotation;
var _local3 = {x:_root.bg.p1._x, y:_root.bg.p1._y};
_root.bg.localToGlobal(_local3);
var _local4 = {x:_root._x, y:_root._y};
_root.bg.globalToLocal(_local4);
if ((_local3.y < 530) && (_local3.y > -20)) {
this._visible = false;
}
if (_local3.y > 530) {
this._visible = true;
this._y = _local4.y + 350;
}
if (_local3.y < -20) {
this._visible = true;
this._y = _local4.y + 100;
}
};
Symbol 435 MovieClip Frame 1
this.swapDepths(0);
this.attachMovie("ball", "ball", 51);
ball._x = 0;
ball._y = 100;
this.attachMovie("p1", "p1", 50);
p1._x = 0;
p1._y = ball._y + 50;
Instance of Symbol 266 MovieClip [field] "field" in Symbol 435 MovieClip Frame 1
onClipEvent (enterFrame) {
this.swapDepths(2);
if (_root.bg.p1._y < -650) {
_root.bg.p1._y = -650;
}
if (_root.bg.p1._y > 400) {
_root.bg.p1._y = 400;
}
if (_root.bg.p1._x < -280) {
_root.bg.p1._x = -280;
}
if (_root.bg.p1._x > 280) {
_root.bg.p1._x = 280;
}
if (_root.bg.ball.moveon == true) {
var fieldpos = {x:this._x, y:this._y};
this.localToGlobal(fieldpos);
if ((fieldpos.y > 350) && (_parent.fieldup._name != "fieldup")) {
_parent.fielddown.removeMovieClip();
_parent.attachMovie("field", "fieldup", 1);
_parent.fieldup._y = this._y - 500;
_parent.fieldup._x = this._x;
}
if ((fieldpos.y < 350) && (_parent.fielddown._name != "fielddown")) {
_parent.fieldup.removeMovieClip();
_parent.attachMovie("field", "fielddown", 1);
_parent.fielddown._y = this._y + 500;
_parent.fielddown._x = this._x;
}
}
}
Symbol 445 Button
on (rollOver) {
btnname = "okbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "okbtn";
btnrollout(btnname);
}
on (release) {
if (_root.stage >= 31) {
_root.stage = 30;
btnrelease(11);
} else {
btnrelease(7);
}
}
Symbol 446 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
okbtn.enabled = false;
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 449 MovieClip Frame 1
stop();
Instance of Symbol 449 MovieClip in Symbol 452 MovieClip Frame 1
onClipEvent (enterFrame) {
gotoAndStop(_root.inall);
}
Symbol 453 MovieClip Frame 21
stop();
Symbol 465 MovieClip Frame 1
this.swapDepths(3);
_root.impact.start();
Symbol 465 MovieClip Frame 21
stop();
Symbol 469 MovieClip Frame 1
this.swapDepths(2);
Symbol 469 MovieClip Frame 42
stop();
Symbol 473 MovieClip Frame 25
stop();
Symbol 478 MovieClip Frame 35
stop();
Symbol 481 Button
on (rollOver) {
btnname = "okbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "okbtn";
btnrollout(btnname);
}
on (release) {
btnrelease(13);
}
Symbol 482 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
okbtn.enabled = false;
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 485 MovieClip Frame 45
stop();
Symbol 490 Button
on (rollOver) {
btnname = "quitbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "quitbtn";
btnrollout(btnname);
}
on (release) {
btnrelease(4);
}
Symbol 491 MovieClip Frame 1
stop();
Symbol 491 MovieClip Frame 11
stop();
Symbol 492 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
function btnrelease(goal) {
quitbtn.enabled = false;
_root.attachMovie("fadeinmc", "fadeinmc", 998);
_root.fadeinmc.goal = goal;
}
Symbol 507 MovieClip Frame 12
_root.model.player.leftfoot.gotoAndPlay(3);
Symbol 507 MovieClip Frame 53
_root.model.player.rightfoot.gotoAndPlay(3);
Symbol 507 MovieClip Frame 94
onEnterFrame = function () {
_root.model.player.leftfoot._rotation = _root.model.player.leftfoot._rotation - 5;
_root.model.player.rightfoot._rotation = _root.model.player.rightfoot._rotation - 5;
_root.model.player.head._rotation = _root.model.player.head._rotation - 5;
};
Symbol 507 MovieClip Frame 165
delete onEnterFrame;
Symbol 513 MovieClip Frame 1
stop();
_parent.backbtnmc._visible = false;
_parent.backbtnmc.backbtn.enabled = false;
_parent.backbtnmc.backbtneffect.gotoAndStop(1);
_parent.nextbtnmc._visible = true;
_parent.nextbtnmc.nextbtn.enabled = true;
_parent.nextbtnmc.nextbtneffect.gotoAndStop(1);
_root.model.gotoAndStop(1);
Symbol 513 MovieClip Frame 2
_parent.backbtnmc._visible = true;
_parent.backbtnmc.backbtn.enabled = true;
_parent.backbtnmc.backbtneffect.gotoAndStop(1);
_root.model.gotoAndStop(2);
Symbol 513 MovieClip Frame 3
_root.model.gotoAndStop(3);
Symbol 513 MovieClip Frame 4
_root.model.gotoAndStop(4);
Symbol 513 MovieClip Frame 5
_parent.nextbtnmc._visible = true;
_parent.nextbtnmc.nextbtn.enabled = true;
_parent.nextbtnmc.nextbtneffect.gotoAndStop(1);
_root.model.gotoAndStop(5);
Symbol 513 MovieClip Frame 6
_parent.nextbtnmc._visible = false;
_parent.nextbtnmc.nextbtn.enabled = false;
_parent.nextbtnmc.nextbtneffect.gotoAndStop(1);
_root.model.gotoAndStop(6);
Symbol 519 MovieClip Frame 1
stop();
Symbol 519 MovieClip Frame 2
delete onEnterFrame;
Symbol 519 MovieClip Frame 3
timer = -4;
onEnterFrame = function () {
timer++;
if (timer == 1) {
player.leftfoot.gotoAndPlay(2);
timer = 2;
}
if (timer == 5) {
player.rightfoot.gotoAndPlay(2);
timer = -4;
}
if (timer >= 2) {
player.leftfoot._rotation = player.leftfoot._rotation - 5;
player.rightfoot._rotation = player.rightfoot._rotation - 5;
player.head._rotation = player.head._rotation - 5;
}
};
Symbol 519 MovieClip Frame 4
delete onEnterFrame;
player.leftfoot._rotation = 0;
player.rightfoot._rotation = 0;
player.head._rotation = 0;
timer = 100;
onEnterFrame = function () {
timer--;
if (timer == 80) {
player.rightfoot.gotoAndPlay(3);
}
if (timer == 60) {
player.leftfoot.gotoAndPlay(11);
}
if (timer == 40) {
player.leftfoot.gotoAndPlay(19);
}
if (timer == 20) {
player.rightfoot.gotoAndPlay(34);
timer = 100;
}
};
Symbol 519 MovieClip Frame 5
delete onEnterFrame;
Symbol 519 MovieClip Frame 6
delete onEnterFrame;
Instance of Symbol 65 MovieClip in Symbol 519 MovieClip Frame 6
onClipEvent (load) {
gotoAndStop (1);
}
Symbol 522 Button
on (rollOver) {
btnname = "backbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "backbtn";
btnrollout(btnname);
}
on (release) {
_root.page.prevFrame();
}
Symbol 523 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}
Symbol 526 Button
on (rollOver) {
btnname = "nextbtn";
btnrollover(btnname);
}
on (rollOut) {
btnname = "nextbtn";
btnrollout(btnname);
}
on (release) {
_root.page.nextFrame();
}
Symbol 527 MovieClip Frame 1
function btnrollover(btnname) {
this[btnname + "effect"].gotoAndPlay(2);
_root.btnover.start();
}
function btnrollout(btnname) {
this[btnname + "effect"].gotoAndPlay(12);
}