Frame 1
fscommand ("showmenu", "false");
fscommand ("allowscale", "false");
fscommand ("fullscreen", "true");
stop();
Frame 2
myBGMusic = new Sound();
myBGMusic.attachSound("music3");
myBGMusic.start(0, 99999);
myBGMusic.setVolume(60);
mcScoreBoard.removeMovieClip();
stop();
Instance of Symbol 233 MovieClip "mcStory" in Frame 2
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 246 MovieClip "mcHow" in Frame 2
onClipEvent (load) {
this._visible = false;
}
Frame 82
_root.attachMovie("mcCursor", "mcCursor", 9000);
_root.attachMovie("mcblackwall", "mcblackwall", 8999);
_root.attachMovie("mcScoreBoard", "mcScoreBoard", 8500);
_root.attachMovie("CastleWall", "mcCastleWall", 7000);
_root.attachMovie("mcHero", "mcHero", 8000);
mcCastleWall._x = 400;
mcCastleWall._y = 550;
mcHero._x = 400;
mcHero._y = 565;
Frame 98
function makeOgresInside() {
var _local1 = _root;
w = random(2) + 1;
_local1.attachMovie("mcOgreInside" + w, "mcOgre" + OgresInsideNo, OgresInsideNo);
_local1["mcOgre" + OgresInsideNo]._y = _local1.mcHero._y + 10;
_local1["mcOgre" + OgresInsideNo]._xscale = 150;
_local1["mcOgre" + OgresInsideNo]._yscale = 150;
_local1["mcOgre" + OgresInsideNo].isInside = true;
ww = random(100);
if (ww < 50) {
_local1["mcOgre" + OgresInsideNo]._x = -50;
} else {
_local1["mcOgre" + OgresInsideNo]._x = 850;
_local1["mcOgre" + OgresInsideNo]._xscale = -150;
}
_local1["mcOgre" + OgresInsideNo].onEnterFrame = function () {
var _local1 = _root;
if (this.hitTest(_local1.mcHitHero)) {
this.gotoAndPlay("attack");
_local1.mcHeroStun();
_local1.mcOgreMaker.gotoAndPlay(50);
_local1.gotoAndPlay("gameover");
}
updateAfterEvent();
};
OgresInsideNo++;
if (OgresInsideNo > 8700) {
OgresInsideNo = 8600;
}
}
function makeOgre() {
var _local1 = _root;
w = random(3) + 1;
_local1.attachMovie("mcOgre" + w, "mcOgre" + OgreNo, OgreNo);
_local1["mcOgre" + OgreNo]._x = random(600) + 100;
_local1["mcOgre" + OgreNo]._y = -50;
w = random(100);
_local1["mcOgre" + OgreNo].onEnterFrame = function () {
var _local1 = _root;
if (this._y > 500) {
_local1.OgresInside++;
_local1.mcScoreBoard.txtOgresInside.text = _local1.OgresInside;
this.removeMovieClip();
}
updateAfterEvent();
};
TotalOgres++;
OgreNo++;
if (OgreNo > 500) {
OgreNo = 10;
}
}
function fireSpear(myName) {
var _local1 = _root;
var _local2 = this;
var _local3 = myName;
_local1.attachMovie("mcSpear", "mcSpear" + spearNo, spearNo);
myPoint = new Object();
myPoint.x = _local1[_local3][_local3].mcSpear._x;
myPoint.y = _local1[_local3][_local3].mcSpear._y;
_local1[_local3][_local3].mcSpear.localToGlobal(myPoint);
_local1["mcSpear" + spearNo]._x = myPoint.x;
_local1["mcSpear" + spearNo]._y = myPoint.y;
_local1["mcSpear" + spearNo]._rotation = _local1[_local3][_local3]._rotation - 5;
_local1["mcSpear" + spearNo].onEnterFrame = function () {
var _local1 = this;
var _local2 = _root;
if (_local1.mcSpearTip.hitTest(_local2.mcHitHero)) {
_local2.mcHeroStun();
_local2.mcHero.gotoAndPlay("stun");
_local1.removeMovieClip();
}
if (((_local1._x < -10) || (_local1._x > 810)) || (_local1._y > 610)) {
_local1.removeMovieClip();
}
xspeed = Math.cos((Math.PI/180) * _local1._rotation) * 10;
yspeed = Math.sin((Math.PI/180) * _local1._rotation) * 10;
_local1._x = _local1._x + xspeed;
_local1._y = _local1._y + yspeed;
updateAfterEvent();
};
spearMo++;
if (spearNo > 8400) {
spearNo = 8100;
}
}
function fireArrow(myTarget, targetx, targety) {
var _local1 = this;
var _local2 = _root;
_local2.attachMovie("mcArrow", "mcArrow" + arrowNo, arrowNo);
duplicateMovieClip ("_root.mchitArea.mchitArea", "mchitArea" + arrowNo, arrowNo);
_local2.mchitArea["mchitArea" + arrowNo]._x = targetx;
_local2.mchitArea["mchitArea" + arrowNo]._y = targety;
myPoint = new Object();
myPoint.x = _local2.mcHero.mcMain.mcmyArrow.mcBownArrow.mcArrow._x;
myPoint.y = _local2.mcHero.mcMain.mcmyArrow.mcBownArrow.mcArrow._y;
_local2.mcHero.mcMain.mcmyArrow.mcBownArrow.mcArrow.localToGlobal(myPoint);
_local2["mcArrow" + arrowNo]._x = myPoint.x;
_local2["mcArrow" + arrowNo]._y = myPoint.y;
_local2["mcArrow" + arrowNo].hit = false;
_local2["mcArrow" + arrowNo].myTarget = myTarget;
_local2["mcArrow" + arrowNo]._rotation = _local2.mcHero.mcMain._rotation;
if (_local2["mcArrow" + arrowNo]._rotation < -170) {
_local2["mcArrow" + arrowNo]._rotation = _local2["mcArrow" + arrowNo]._rotation - 2;
}
if (_local2["mcArrow" + arrowNo]._rotation > 150) {
_local2["mcArrow" + arrowNo]._rotation = _local2["mcArrow" + arrowNo]._rotation - 2;
}
_local2["mcArrow" + arrowNo].onEnterFrame = function () {
var _local1 = this;
var _local2 = _root;
if (_local2[_local1.myTarget].hitTest(_local1.mcArrowHead)) {
if (_local1.myTarget.substr(0, 6) == "mcOgre") {
if (_local2[_local1.myTarget].isInside) {
_local2.OgresOnTop--;
_local2.attachMovie("mcOgre1Dead", "mcOgre1Dead" + _local1.myTarget.substr(7), Number(_local1.myTarget.substr(6)) - 10);
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._x = _local2[_local1.myTarget]._x;
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._y = _local2[_local1.myTarget]._y;
_local2.OgresInside--;
_local2.mcScoreBoard.txtOgresInside.text = _local2.OgresInside;
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._xscale = 150;
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._yscale = 150;
if (_local2[_local1.myTarget]._xscale == -150) {
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._rotation = 90;
} else {
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._rotation = -90;
}
} else {
_local2.attachMovie("mcOgre1Dead", "mcOgre1Dead" + _local1.myTarget.substr(7), _local1.myTarget.substr(7));
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._x = _local2[_local1.myTarget]._x;
_local2["mcOgre1Dead" + _local1.myTarget.substr(7)]._y = _local2[_local1.myTarget]._y;
}
_local2[_local1.myTarget].removeMovieClip();
_local2.mchitArea["mchitArea" + _local1._name.substr(7)].removeMovieClip();
_local2.OgresKilled++;
_local2.mcScoreBoard.txtOgresKilled.text = _local2.OgresKilled;
_local1.hit = true;
_local1.gotoAndPlay("hit");
_local1.onEnterFrame = "";
} else if (_local1.mcArrowHead.hitTest(_local2.mchitArea["mchitArea" + _local1._name.substr(7)])) {
_local2.mchitArea["mchitArea" + _local1._name.substr(7)].removeMovieClip();
_local1.hit = true;
_local1.gotoAndPlay("hit");
_local1.onEnterFrame = "";
} else {
xspeed = Math.cos((Math.PI/180) * _local1._rotation) * 20;
yspeed = Math.sin((Math.PI/180) * _local1._rotation) * 20;
_local1._x = _local1._x + xspeed;
_local1._y = _local1._y + yspeed;
}
} else if (_local1.mcArrowHead.hitTest(_local2.mchitArea["mchitArea" + _local1._name.substr(7)])) {
_local2.mchitArea["mchitArea" + _local1._name.substr(7)].removeMovieClip();
_local1.hit = true;
_local1.gotoAndPlay("hit");
_local1.onEnterFrame = "";
} else {
xspeed = Math.cos((Math.PI/180) * _local1._rotation) * 20;
yspeed = Math.sin((Math.PI/180) * _local1._rotation) * 20;
_local1._x = _local1._x + xspeed;
_local1._y = _local1._y + yspeed;
}
if (((_local1._x < 0) || (_local1._x > 800)) || (_local1._y < 0)) {
_local2.mchitArea["mchitArea" + _local1._name.substr(7)].removeMovieClip();
_local1.removeMovieClip();
}
updateAfterEvent();
};
arrowNo++;
if (arrowNo > 7500) {
arrowNo = 7100;
}
}
function mcHeroActivate() {
mcHero.onEnterFrame = function () {
var _local1 = this;
if ((!_local1.moving) && (_local1._x < 750)) {
if (Key.isDown(39)) {
_local1.moving = true;
_local1.gotoAndPlay("right");
}
}
if ((!_local1.moving) && (_local1._x > 50)) {
if (Key.isDown(37)) {
_local1.moving = true;
_local1.gotoAndPlay("left");
}
}
updateAfterEvent();
};
this.mcHero.mcMain.mcmyArrow.onMouseDown = function () {
this.gotoAndPlay(1);
};
this.mcHero.mcMain.mcmyArrow.onMouseUp = function () {
if (this.ok) {
this.myTarget = eval (_root.mcCursor._droptarget);
_root.fireArrow(this.myTarget._name, _root._xmouse, _root._ymouse);
}
this.gotoAndPlay(5);
};
this.mcHero.mcMain.mcmyArrow.onEnterFrame = function () {
var _local1 = _root;
var _local2 = this;
if (_local1._ymouse < 570) {
_local2.dx = (_local1.mcCursor._x - _local1.mcHero._x) - 10;
_local2.dy = _local1.mcCursor._y - _local1.mcHero._y;
_local1.mcHero.mcMain._rotation = (Math.atan2(_local2.dy, _local2.dx) * 180) / Math.PI;
updateAfterEvent();
}
};
}
function mcHeroStun() {
var _local1 = this;
_local1.mcHero.onEnterFrame = "";
_local1.mcHero.mcMain.mcmyArrow.onMouseDown = "";
_local1.mcHero.mcMain.mcmyArrow.onMouseUp = "";
_local1.mcHero.mcMain.mcmyArrow.onEnterFrame = "";
_local1.mcHero.mcMain.mcmyArrow.gotoAndStop(1);
}
arrowNo = 7100;
spearNo = 8100;
OgreNo = 10;
OgresInsideNo = 8600;
Villagers = 120;
OgresKilled = 0;
OgresInside = 0;
OgresOnTop = 0;
TotalOgres = 0;
mcHeroActivate();
stop();
Instance of Symbol 252 MovieClip "mcHitHero" in Frame 98
onClipEvent (enterFrame) {
this._x = _root.mcHero._x;
this._y = _root.mcHero._y;
updateAfterEvent();
}
Instance of Symbol 257 MovieClip "mcOgreMaker" in Frame 98
onClipEvent (load) {
myrand = 150;
}
onClipEvent (enterFrame) {
if (_root.OgresKilled > 50) {
myrand = 125;
}
if (_root.OgresKilled > 100) {
myrand = 100;
}
if (_root.OgresKilled > 150) {
myrand = 75;
}
if (_root.OgresKilled > 200) {
myrand = 50;
}
w = random(myrand);
if (w < 2) {
_root.makeOgre();
}
if (_root.OgresInside > 0) {
if (_root.Villagers > 0) {
kills = random(100);
if (kills < (_root.OgresInside * 2)) {
_root.Villagers--;
_root.mcScoreBoard.txtVillagers.text = _root.Villagers;
w = random(100);
if (w < 5) {
this.gotoAndPlay(2);
} else if (w < 10) {
this.gotoAndPlay(50);
}
}
}
if (_root.Villagers > (_root.OgresInside * 10)) {
if (_root.OgresInside > _root.OgresOnTop) {
Vkills = random(100);
if (Vkills < 1) {
_root.OgresInside--;
_root.mcScoreBoard.txtOgresInside.text = _root.OgresInside;
}
}
} else if (_root.OgresInside > _root.OgresOnTop) {
w = random(100);
if (w < 1) {
_root.OgresOnTop++;
_root.makeOgresInside();
}
}
}
}
Frame 100
_root.mcCastleWall.removeMovieClip();
_root.mcCursor.removeMovieClip();
_root.mcHero.removeMovieClip();
ctr = 5;
while (ctr < 10701) {
_root["mcOgre" + ctr].removeMovieClip();
ctr++;
}
Mouse.show();
Frame 345
stop();
Symbol 33 MovieClip [mcArrow] Frame 1
if (hit) {
gotoAndPlay ("hit");
}
Symbol 33 MovieClip [mcArrow] Frame 7
gotoAndPlay (1);
Symbol 33 MovieClip [mcArrow] Frame 20
this.removeMovieClip();
Symbol 36 MovieClip Frame 1
_parent.ok = false;
Symbol 36 MovieClip Frame 10
_parent.ok = true;
stop();
Symbol 36 MovieClip Frame 12
stop();
Symbol 41 MovieClip Frame 4
mcBownArrow._visible = true;
mcBownArrow.gotoAndPlay(1);
stop();
Symbol 41 MovieClip Frame 5
if (ok) {
mcBownArrow.play();
}
mcBownArrow._visible = false;
Symbol 41 MovieClip Frame 8
gotoAndStop (1);
Instance of Symbol 41 MovieClip "mcmyArrow" in Symbol 42 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Symbol 61 MovieClip [mcHero] Frame 1
stop();
moving = false;
Symbol 61 MovieClip [mcHero] Frame 3
_x = (_x + 1.2);
Symbol 61 MovieClip [mcHero] Frame 5
_x = (_x + 5);
Symbol 61 MovieClip [mcHero] Frame 7
_x = (_x + 2.5);
Symbol 61 MovieClip [mcHero] Frame 9
_x = (_x + 9.3);
Symbol 61 MovieClip [mcHero] Frame 11
_x = (_x + 12.4);
Symbol 61 MovieClip [mcHero] Frame 13
_x = (_x + 5.8);
gotoAndStop (1);
Symbol 61 MovieClip [mcHero] Frame 17
_x = (_x - 5.5);
Symbol 61 MovieClip [mcHero] Frame 19
_x = (_x - 3.3);
Symbol 61 MovieClip [mcHero] Frame 21
_x = (_x - 6.7);
Symbol 61 MovieClip [mcHero] Frame 23
_x = (_x - 6.8);
Symbol 61 MovieClip [mcHero] Frame 25
_x = (_x - 1.2);
Symbol 61 MovieClip [mcHero] Frame 27
_x = (_x - 3);
Symbol 61 MovieClip [mcHero] Frame 28
_x = (_x - 1);
gotoAndStop (1);
Symbol 61 MovieClip [mcHero] Frame 200
_root.mcHeroActivate();
Instance of Symbol 68 MovieClip "mcCursor" in Symbol 69 MovieClip [mcCursor] Frame 1
onClipEvent (load) {
Mouse.hide();
_parent.startDrag(true);
}
Symbol 75 MovieClip Frame 1
stop();
Symbol 94 MovieClip [mcOgreInside2] Frame 1
if (this._xscale == 150) {
this._x = this._x + 3;
} else {
this._x = this._x - 3;
}
Instance of Symbol 75 MovieClip "mcOgreSound" in Symbol 94 MovieClip [mcOgreInside2] Frame 1
onClipEvent (load) {
w = random(25);
if (w < 3) {
gotoAndStop (10);
} else if (w < 6) {
gotoAndStop (100);
} else if (w < 9) {
gotoAndStop (200);
}
}
Symbol 94 MovieClip [mcOgreInside2] Frame 5
if (this._xscale == 150) {
this._x = this._x + 16;
} else {
this._x = this._x - 16;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 10
if (this._xscale == 150) {
this._x = this._x + 19.4;
} else {
this._x = this._x - 19.4;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 15
if (this._xscale == 150) {
this._x = this._x + 10.9;
} else {
this._x = this._x - 10.9;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 20
if (this._xscale == 150) {
this._x = this._x + 1.8;
} else {
this._x = this._x - 1.8;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 25
if (this._xscale == 150) {
this._x = this._x + 8;
} else {
this._x = this._x - 8;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 30
if (this._xscale == 150) {
this._x = this._x + 15.6;
} else {
this._x = this._x - 15.6;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 35
if (this._xscale == 150) {
this._x = this._x + 3;
} else {
this._x = this._x - 3;
}
Symbol 94 MovieClip [mcOgreInside2] Frame 39
gotoAndPlay (1);
Symbol 94 MovieClip [mcOgreInside2] Frame 65
gotoAndPlay ("attack");
Symbol 114 MovieClip [mcOgreInside1] Frame 1
if (this._xscale == 150) {
this._x = this._x + 3;
} else {
this._x = this._x - 3;
}
Instance of Symbol 75 MovieClip "mcOgreSound" in Symbol 114 MovieClip [mcOgreInside1] Frame 1
onClipEvent (load) {
w = random(25);
if (w < 3) {
gotoAndStop (10);
} else if (w < 6) {
gotoAndStop (100);
} else if (w < 9) {
gotoAndStop (200);
}
}
Symbol 114 MovieClip [mcOgreInside1] Frame 5
if (this._xscale == 150) {
this._x = this._x + 16;
} else {
this._x = this._x - 16;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 10
if (this._xscale == 150) {
this._x = this._x + 19.4;
} else {
this._x = this._x - 19.4;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 15
if (this._xscale == 150) {
this._x = this._x + 10.9;
} else {
this._x = this._x - 10.9;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 20
if (this._xscale == 150) {
this._x = this._x + 1.8;
} else {
this._x = this._x - 1.8;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 25
if (this._xscale == 150) {
this._x = this._x + 8;
} else {
this._x = this._x - 8;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 30
if (this._xscale == 150) {
this._x = this._x + 15.6;
} else {
this._x = this._x - 15.6;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 35
if (this._xscale == 150) {
this._x = this._x + 3;
} else {
this._x = this._x - 3;
}
Symbol 114 MovieClip [mcOgreInside1] Frame 39
gotoAndPlay (1);
Symbol 114 MovieClip [mcOgreInside1] Frame 60
gotoAndPlay ("attack");
Symbol 124 MovieClip [mcOgre2] Frame 1
this._y = this._y + 3;
Instance of Symbol 75 MovieClip "mcOgreSound" in Symbol 124 MovieClip [mcOgre2] Frame 1
onClipEvent (load) {
w = random(25);
if (w < 3) {
gotoAndStop (10);
} else if (w < 6) {
gotoAndStop (100);
} else if (w < 9) {
gotoAndStop (200);
}
}
Symbol 124 MovieClip [mcOgre2] Frame 5
this._y = this._y + 16;
Symbol 124 MovieClip [mcOgre2] Frame 10
this._y = this._y + 19.4;
Symbol 124 MovieClip [mcOgre2] Frame 15
this._y = this._y + 10.9;
Symbol 124 MovieClip [mcOgre2] Frame 20
this._y = this._y + 1.8;
Symbol 124 MovieClip [mcOgre2] Frame 25
this._y = this._y + 8;
Symbol 124 MovieClip [mcOgre2] Frame 30
this._y = this._y + 15.6;
Symbol 124 MovieClip [mcOgre2] Frame 35
this._y = this._y + 3;
Symbol 134 MovieClip [mcOgre3] Frame 1
this._y = this._y + 3;
Instance of Symbol 75 MovieClip "mcOgreSound" in Symbol 134 MovieClip [mcOgre3] Frame 1
onClipEvent (load) {
w = random(25);
if (w < 3) {
gotoAndStop (10);
} else if (w < 6) {
gotoAndStop (100);
} else if (w < 9) {
gotoAndStop (200);
}
}
Symbol 134 MovieClip [mcOgre3] Frame 5
this._y = this._y + 16;
Symbol 134 MovieClip [mcOgre3] Frame 10
this._y = this._y + 19.4;
Symbol 134 MovieClip [mcOgre3] Frame 15
this._y = this._y + 10.9;
Symbol 134 MovieClip [mcOgre3] Frame 20
this._y = this._y + 1.8;
Symbol 134 MovieClip [mcOgre3] Frame 25
this._y = this._y + 8;
Symbol 134 MovieClip [mcOgre3] Frame 30
this._y = this._y + 15.6;
Symbol 134 MovieClip [mcOgre3] Frame 35
this._y = this._y + 3;
Symbol 165 MovieClip Frame 1
mcSpear._visible = true;
Symbol 165 MovieClip Frame 36
mcSpear._visible = false;
_root.fireSpear(this._name);
Symbol 165 MovieClip Frame 60
_parent.gotoAndPlay(1);
Symbol 166 MovieClip [mcOgre1] Frame 1
this._y = this._y + 3;
Instance of Symbol 75 MovieClip "mcOgreSound" in Symbol 166 MovieClip [mcOgre1] Frame 1
onClipEvent (load) {
w = random(25);
if (w < 3) {
gotoAndStop (10);
} else if (w < 6) {
gotoAndStop (100);
} else if (w < 9) {
gotoAndStop (200);
}
}
Symbol 166 MovieClip [mcOgre1] Frame 5
this._y = this._y + 16;
Symbol 166 MovieClip [mcOgre1] Frame 10
this._y = this._y + 19.4;
Symbol 166 MovieClip [mcOgre1] Frame 15
this._y = this._y + 10.9;
Symbol 166 MovieClip [mcOgre1] Frame 20
this._y = this._y + 1.8;
Symbol 166 MovieClip [mcOgre1] Frame 25
this._y = this._y + 8;
Symbol 166 MovieClip [mcOgre1] Frame 30
this._y = this._y + 15.6;
Symbol 166 MovieClip [mcOgre1] Frame 35
this._y = this._y + 3;
Symbol 166 MovieClip [mcOgre1] Frame 40
if (this._y < 450) {
w = random(100);
if (w < 5) {
gotoAndStop (45);
} else {
gotoAndPlay (1);
}
} else {
gotoAndPlay (1);
}
Symbol 166 MovieClip [mcOgre1] Frame 45
stop();
Instance of Symbol 165 MovieClip "mcOgre1" in Symbol 166 MovieClip [mcOgre1] Frame 45
onClipEvent (load) {
this._name = _parent._name;
}
onClipEvent (enterFrame) {
dx = (_root.mcHitHero._x - _parent._x) - 10;
dy = _root.mcHitHero._y - _parent._y;
this._rotation = (Math.atan2(dy, dx) * 180) / Math.PI;
updateAfterEvent();
}
Symbol 174 MovieClip Frame 15
_parent.play();
stop();
Symbol 175 MovieClip [mcOgre1Dead] Frame 1
stop();
Symbol 175 MovieClip [mcOgre1Dead] Frame 15
this.removeMovieClip();
Symbol 195 MovieClip Frame 1
function setValue(v) {
mv = (v / 100) * 144;
}
var mv = 0;
Instance of Symbol 194 MovieClip in Symbol 195 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.thebar._x < _parent.mv) {
if ((_parent.mv - _parent.thebar._x) >= 2) {
_parent.thebar._x = _parent.thebar._x + 2;
} else {
_parent.thebar._x++;
}
}
}
Symbol 199 MovieClip Frame 4
tb = _parent.getBytesTotal();
lb = _parent.getBytesLoaded();
v = int((lb / tb) * 100);
thebar.setValue(v);
if (lb < tb) {
gotoAndPlay(_currentframe - 1);
} else if (thebar.mv == thebar.thebar._x) {
play();
} else {
gotoAndPlay(_currentframe - 1);
}
Symbol 199 MovieClip Frame 87
_parent.gotoAndStop("Main");
Symbol 210 Button
on (release) {
_root.mcStory._visible = true;
_root.mcHow._visible = false;
}
Symbol 215 Button
on (release) {
_root.mcStory._visible = false;
_root.mcHow._visible = true;
}
Symbol 220 Button
on (release) {
gotoAndPlay ("start");
}
Symbol 224 Button
on (release) {
getURL ("http://www.funflashgames.com", "_blank");
}
Symbol 228 Button
on (release) {
getURL ("http://www.funflashgames.com/freecontent.html", "_blank");
}
Symbol 239 Button
on (release) {
gotoAndStop (2);
}
Symbol 245 Button
on (release) {
gotoAndStop (1);
}
Symbol 246 MovieClip Frame 1
stop();
Symbol 257 MovieClip Frame 1
stop();
Symbol 257 MovieClip Frame 48
gotoAndStop (1);
Symbol 257 MovieClip Frame 115
gotoAndStop (1);
Symbol 266 Button
on (release) {
gotoAndStop (2);
}