Frame 1
stop();
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
getURL ("http://www.armorgames.com", "_blank");
};
}
Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Instance of Symbol 13 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.onPress = function () {
getURL ("http://www.armorgames.com", "_blank");
};
}
Frame 5
stop();
Frame 6
stop();
Frame 7
stop();
Frame 8
stop();
Frame 9
lives = 3;
nivo = 1;
wereld = 1;
whichletter = 1;
woorden_w1 = ["___", "ARMOR", "GAMES", "GROUP", "LOCAL", "HOTEL"];
woorden_w2 = ["___", "WINDY", "CHAOS", "WORMS", "GLOBE", "STUDY"];
woorden_w3 = ["___", "SHEEP", "CLOTH", "PANDA", "LAUGH", "CELLO"];
woorden_w4 = ["___", "FLAKE", "ONION", "OFFER", "GOODS", "ELITE"];
woorden_w5 = ["___", "GREAT", "TEDDY", "DINER", "CROWN", "FINAL"];
stop();
var xlimit = level._width;
var gamepaused = true;
var lives = 3;
var faint_godmode_delay = 200;
var faint_d = 0;
var fainted = false;
var enemies = new Array();
var gravity = 0.6;
var hhog_xspd = 0;
var hhog_yspd = 0;
var onair = false;
var downed = false;
var coins = 0;
onEnterFrame = function () {
if (gamepaused == false) {
if (Key.isDown(37)) {
level.hhog._xscale = -100;
if ((hhog_xspd > -6) && (level.hhog._x > 20)) {
hhog_xspd = hhog_xspd - 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(39)) {
level.hhog._xscale = 100;
if ((hhog_xspd < 6) && (level.hhog._x < (-20 + level._width))) {
hhog_xspd = hhog_xspd + 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(38) && (!onair)) {
if (hhog_yspd < 2) {
hhog_yspd = hhog_yspd - 14;
onair = true;
level.hhog.gotoAndStop("jump");
}
}
if (Key.isDown(32)) {
_root.level.hhog._y = _root.level.endpoint._y;
_root.level.hhog._x = _root.level.endpoint._x;
}
if (Key.isDown(16)) {
}
if (hhog_yspd > 5) {
onair = true;
if (level.hhog._currentFrame != 3) {
level.hhog.gotoAndStop("jump");
level.hhog.mesh.gotoAndPlay(7);
}
}
if (Key.isDown(40) && (_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true))) {
downed = true;
}
if ((!_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) && (downed)) {
downed = false;
}
if (((!onair) && (!Key.isDown(37))) && (!Key.isDown(39))) {
level.hhog.gotoAndStop("stand");
}
while (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
if (level.hhog._x < 20) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if (level.hhog._x > (xlimit - 20)) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
while (((_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 83, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + 1) - 1.3) - 90, true) && (onair))) {
hhog_yspd = Math.abs(hhog_yspd / 4);
level.hhog._y = level.hhog._y + 1;
}
while ((_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true) && (!downed)) && (hhog_yspd > 0)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
if (hhog_yspd > 0) {
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
}
level.hhog._y = level.hhog._y + hhog_yspd;
level.hhog._x = level.hhog._x + hhog_xspd;
if (hhog_yspd < 16) {
hhog_yspd = hhog_yspd + gravity;
}
hhog_xspd = hhog_xspd * 0.9;
if (Math.abs(hhog_xspd) < 0.1) {
hhog_xspd = 0;
}
if (level.hhog._y > 100) {
level.hhog._x = level.startpoint._x;
level.hhog._y = level.startpoint._y;
}
destinationdot_x = (-_root.level.hhog._x) + (Stage.width / 2);
destinationdot_y = (-_root.level.hhog._y) + (Stage.height / 2);
if ((destinationdot_x < 0) && (destinationdot_x > (-(_root.level._width - Stage.width)))) {
_root.level._x = _root.level._x + ((destinationdot_x - _root.level._x) / 10);
} else if (destinationdot_x > 0) {
_root.level._x = _root.level._x + ((-_root.level._x) / 10);
} else {
_root.level._x = _root.level._x + (((-(_root.level._width - Stage.width)) - _root.level._x) / 10);
}
if (destinationdot_y > Stage.height) {
_root.level._y = _root.level._y + ((destinationdot_y - _root.level._y) / 10);
} else {
_root.level._y = _root.level._y + ((Stage.height - _root.level._y) / 10);
}
}
};
Instance of Symbol 162 MovieClip in Frame 9
onClipEvent (enterFrame) {
this.gotoAndStop(_root.wereld);
}
Instance of Symbol 250 MovieClip "level" in Frame 9
onClipEvent (enterFrame) {
this.gotoAndStop(_root.wereld);
}
Instance of Symbol 252 MovieClip in Frame 9
onClipEvent (enterFrame) {
this.gotoAndStop(_root.lives);
}
Instance of Symbol 255 MovieClip in Frame 9
onClipEvent (enterFrame) {
if ((_root.wereld == 5) && (_root.nivo > 5)) {
_root.gotoAndStop("wingame");
}
if (_root.nivo > 5) {
_root.wereld++;
_root.nivo = 1;
}
if (_root.wereld == 1) {
_root.woordnu = _root.woorden_w1[_root.nivo];
} else if (_root.wereld == 2) {
_root.woordnu = _root.woorden_w2[_root.nivo];
} else if (_root.wereld == 3) {
_root.woordnu = _root.woorden_w3[_root.nivo];
} else if (_root.wereld == 4) {
_root.woordnu = _root.woorden_w4[_root.nivo];
} else if (_root.wereld == 5) {
_root.woordnu = _root.woorden_w5[_root.nivo];
}
_root.l1 = _root.woordnu.charAt(0);
_root.l2 = _root.woordnu.charAt(1);
_root.l3 = _root.woordnu.charAt(2);
_root.l4 = _root.woordnu.charAt(3);
_root.l5 = _root.woordnu.charAt(4);
_root.curletter = _root["l" + _root.whichletter];
if (_root.whichletter == 6) {
_root.message.gotoAndStop(3);
_root.whichletter = 10;
}
if (_root.lives <= 0) {
_root.gotoAndStop("gameover");
}
}
Instance of Symbol 257 MovieClip in Frame 9
onClipEvent (enterFrame) {
X = ((_root.level.letters["letter" + _root.whichletter]._x - _x) + _root.level._x) + _root.level.letters._x;
Y = ((_root.level.letters["letter" + _root.whichletter]._y - _y) + _root.level._y) + _root.level.letters._y;
Z = Math.atan2(Y, X);
_rotation = Math.floor(((Z * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 306 MovieClip "message" in Frame 9
onClipEvent (enterFrame) {
curlevel = "WORD " + _root.nivo;
worldview.curworld = _root.wereld;
}
Frame 10
stop();
Instance of Symbol 13 MovieClip in Frame 10
onClipEvent (enterFrame) {
this.onPress = function () {
getURL ("http://www.armorgames.com", "_blank");
};
}
Frame 11
stop();
Instance of Symbol 13 MovieClip in Frame 11
onClipEvent (enterFrame) {
this.onPress = function () {
getURL ("http://www.armorgames.com", "_blank");
};
}
Frame 12
stop();
Frame 17
leven = 3;
globaltimer = 3;
score = 0;
pausedgame = true;
stop();
var xlimit = 500;
var gamepaused = false;
var faint_godmode_delay = 200;
var faint_d = 0;
var fainted = false;
var enemies = new Array();
var gravity = 0;
var hhog_xspd = 0;
var hhog_yspd = 0;
var onair = false;
var downed = false;
onEnterFrame = function () {
if (pausedgame == false) {
if (Key.isDown(37)) {
level.hhog._xscale = -100;
if ((hhog_xspd > -6) && (level.hhog._x > 20)) {
hhog_xspd = hhog_xspd - 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(39)) {
level.hhog._xscale = 100;
if ((hhog_xspd < 6) && (level.hhog._x < (-20 + level._width))) {
hhog_xspd = hhog_xspd + 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(38) && (!onair)) {
if (hhog_yspd < 2) {
}
}
if (Key.isDown(32)) {
_root.level.hhog._y = _root.level.endpoint._y;
_root.level.hhog._x = _root.level.endpoint._x;
}
if (Key.isDown(16)) {
}
if (hhog_yspd > 5) {
onair = true;
if (level.hhog._currentFrame != 3) {
level.hhog.gotoAndStop("jump");
level.hhog.mesh.gotoAndPlay(7);
}
}
if (Key.isDown(40) && (_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true))) {
downed = true;
}
if ((!_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) && (downed)) {
downed = false;
}
if (((!onair) && (!Key.isDown(37))) && (!Key.isDown(39))) {
level.hhog.gotoAndStop("stand");
}
while (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
if (level.hhog._x < 20) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if (level.hhog._x > (xlimit - 20)) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
while (((_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 83, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + 1) - 1.3) - 90, true) && (onair))) {
hhog_yspd = Math.abs(hhog_yspd / 4);
level.hhog._y = level.hhog._y + 1;
}
while ((_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true) && (!downed)) && (hhog_yspd > 0)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
if (hhog_yspd > 0) {
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
}
level.hhog._y = level.hhog._y + hhog_yspd;
level.hhog._x = level.hhog._x + hhog_xspd;
if (hhog_yspd < 16) {
hhog_yspd = hhog_yspd + gravity;
}
hhog_xspd = hhog_xspd * 0.9;
if (Math.abs(hhog_xspd) < 0.1) {
hhog_xspd = 0;
}
if (level.hhog._y > 100) {
level.hhog._x = level.startpoint._x;
level.hhog._y = level.startpoint._y;
}
destinationdot_x = (-_root.level.hhog._x) + (Stage.width / 2);
destinationdot_y = (-_root.level.hhog._y) + (Stage.height / 2);
if ((destinationdot_x < 0) && (destinationdot_x > (-(_root.level._width - Stage.width)))) {
} else if (destinationdot_x > 0) {
_root.level._x = _root.level._x + ((-_root.level._x) / 10);
} else {
_root.level._x = _root.level._x + (((-(_root.level._width - Stage.width)) - _root.level._x) / 10);
}
if (destinationdot_y > Stage.height) {
_root.level._y = _root.level._y + ((destinationdot_y - _root.level._y) / 10);
} else {
_root.level._y = _root.level._y + ((Stage.height - _root.level._y) / 10);
}
}
};
Instance of Symbol 403 MovieClip "level" in Frame 17
onClipEvent (enterFrame) {
this.gotoAndStop(_root.wereld);
}
Instance of Symbol 404 MovieClip "apple" in Frame 17
onClipEvent (enterFrame) {
if (_root.leven < 0) {
_root.youlose.gotoAndStop(2);
_root.pausedgame = true;
_root.level.hhog.gotoAndStop(1);
}
if (_root.pausedgame == false) {
_root.globaltimer = _root.globaltimer + 0.001;
this._y = this._y + _root.globaltimer;
if (_y > 420) {
this._y = 0;
this._x = random(420) + 40;
_root.leven--;
_root.loseapple.gotoAndPlay(2);
}
}
if (this.hitTest(_root.level.hhog.catcharea)) {
this._y = 0;
this._x = random(420) + 40;
_root.score++;
_root.getapple.gotoAndPlay(2);
}
}
Instance of Symbol 424 MovieClip "youlose" in Frame 17
onClipEvent (enterFrame) {
this.showscore = _root.score;
}
Frame 18
pausedgame = true;
mytimer = 0;
miles = 0;
obspeed = 6;
losethis = false;
obxbegin = obstacles._x;
stop();
var xlimit = 500;
var gamepaused = true;
var faint_godmode_delay = 200;
var faint_d = 0;
var fainted = false;
var enemies = new Array();
var gravity = 0.6;
var hhog_xspd = 0;
var hhog_yspd = 0;
var onair = false;
var downed = false;
onEnterFrame = function () {
if (losethis == true) {
_root.youlose.gotoAndStop(2);
_root.bg.stop();
_root.pausedgame = true;
}
if (pausedgame == false) {
if (_root.obstacles._x < -2800) {
_root.obstacles._x = obxbegin;
_root.obspeed = _root.obspeed + 1;
}
mytimer++;
if (mytimer == 30) {
miles++;
mytimer = 0;
}
if (Key.isDown(37)) {
if ((hhog_xspd > -6) && (level.hhog._x > 20)) {
hhog_xspd = hhog_xspd - 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(39)) {
if ((hhog_xspd < 6) && (level.hhog._x < (-20 + level._width))) {
hhog_xspd = hhog_xspd + 1;
}
if (!onair) {
level.hhog.gotoAndStop("walk");
}
}
if (Key.isDown(38) && (!onair)) {
if (hhog_yspd < 2) {
hhog_yspd = hhog_yspd - 14;
onair = true;
level.hhog.gotoAndStop("jump");
}
}
if (Key.isDown(32)) {
_root.level.hhog._y = _root.level.endpoint._y;
_root.level.hhog._x = _root.level.endpoint._x;
}
if (Key.isDown(16)) {
}
if (hhog_yspd > 5) {
onair = true;
if (level.hhog._currentFrame != 3) {
level.hhog.gotoAndStop("jump");
level.hhog.mesh.gotoAndPlay(7);
}
}
if (Key.isDown(40) && (_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true))) {
downed = true;
}
if ((!_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) && (downed)) {
downed = false;
}
if (((!onair) && (!Key.isDown(37))) && (!Key.isDown(39))) {
level.hhog.gotoAndStop("stand");
}
while (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
if (level.hhog._x < 20) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if ((_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 70, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 40, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 17, (_root.level._y + _root.level.hhog._y) - 20, true))) {
hhog_xspd = Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x + 1;
}
if (level.hhog._x > (xlimit - 20)) {
hhog_xspd = -Math.abs(hhog_xspd / 2);
level.hhog._x = level.hhog._x - 1;
}
while (((_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 83, true) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) - 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest((_root.level.hhog._x + _root.level._x) + 7, (((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3) - 80, true))) || (_root.level.bounds.hitTest(_root.level.hhog._x + _root.level._x, (((_root.level._y + _root.level.hhog._y) + 1) - 1.3) - 90, true) && (onair))) {
hhog_yspd = Math.abs(hhog_yspd / 4);
level.hhog._y = level.hhog._y + 1;
}
while ((_root.level.clouds.hitTest(_root.level.hhog._x + _root.level._x, ((_root.level._y + _root.level.hhog._y) + hhog_yspd) - 1.3, true) && (!downed)) && (hhog_yspd > 0)) {
if (onair) {
if (_root.level.hhog._currentframe == 3) {
_root.level.hhog.gotoAndStop("stand");
}
onair = false;
}
if (hhog_yspd > 0) {
hhog_yspd = Math.abs(hhog_yspd / 2);
level.hhog._y = level.hhog._y - gravity;
}
}
level.hhog._y = level.hhog._y + hhog_yspd;
level.hhog._x = level.hhog._x + hhog_xspd;
if (hhog_yspd < 16) {
hhog_yspd = hhog_yspd + gravity;
}
hhog_xspd = hhog_xspd * 0.9;
if (Math.abs(hhog_xspd) < 0.1) {
hhog_xspd = 0;
}
if (level.hhog._y > 100) {
level.hhog._x = level.startpoint._x;
level.hhog._y = level.startpoint._y;
}
destinationdot_x = (-_root.level.hhog._x) + (Stage.width / 2);
destinationdot_y = (-_root.level.hhog._y) + (Stage.height / 2);
if ((destinationdot_x < 0) && (destinationdot_x > (-(_root.level._width - Stage.width)))) {
} else if (destinationdot_x > 0) {
_root.level._x = _root.level._x + ((-_root.level._x) / 10);
} else {
_root.level._x = _root.level._x + (((-(_root.level._width - Stage.width)) - _root.level._x) / 10);
}
if (destinationdot_y > Stage.height) {
_root.level._y = _root.level._y + ((destinationdot_y - _root.level._y) / 10);
} else {
_root.level._y = _root.level._y + ((Stage.height - _root.level._y) / 10);
}
}
};
Instance of Symbol 434 MovieClip "level" in Frame 18
onClipEvent (enterFrame) {
this.gotoAndStop(_root.wereld);
}
Instance of Symbol 440 MovieClip "obstacles" in Frame 18
onClipEvent (enterFrame) {
if (_root.pausedgame == false) {
this._x = this._x - _root.obspeed;
}
}
Instance of Symbol 446 MovieClip "youlose" in Frame 18
onClipEvent (enterFrame) {
this.showscore = _root.miles;
}
Frame 19
stop();
Instance of Symbol 484 MovieClip in Frame 19
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Symbol 7 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 7 MovieClip Frame 2
gotoAndPlay (1);
Symbol 7 MovieClip Frame 3
stop();
_root.nextFrame();
Symbol 11 Button
on (press) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 16 Button
on (press) {
getURL ("http://www.armorstudios.com", "_blank");
}
Symbol 26 Button
on (press, keyPress "<Space>") {
_root.nextFrame();
}
Symbol 36 MovieClip Frame 135
_root.nextFrame();
Symbol 38 MovieClip Frame 90
_root.nextFrame();
Symbol 45 Button
on (press) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 68 MovieClip Frame 341
stop();
Symbol 72 MovieClip Frame 1
gotoAndPlay (2);
Symbol 72 MovieClip Frame 40
stop();
Symbol 75 MovieClip Frame 1
gotoAndPlay (2);
Symbol 75 MovieClip Frame 25
stop();
Symbol 78 Button
on (press) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 80 Button
on (press, keyPress "<Space>") {
_root.nextFrame();
}
on (press, keyPress "<Right>") {
_root.nextFrame();
}
Symbol 82 MovieClip Frame 35
stop();
Symbol 87 Button
on (press, keyPress "<Left>") {
_root.gotoAndStop("minigames");
}
Symbol 89 MovieClip Frame 40
stop();
Symbol 97 MovieClip Frame 1
gotoAndPlay (2);
Symbol 97 MovieClip Frame 20
stop();
Symbol 102 MovieClip Frame 1
gotoAndPlay (2);
Symbol 102 MovieClip Frame 10
stop();
Symbol 119 Button
on (press, keyPress "<Right>") {
_root.nextFrame();
}
Symbol 120 Button
on (press, keyPress "<Left>") {
_root.prevFrame();
}
Symbol 121 Button
on (press, keyPress "<Space>") {
_root.gotoAndStop("startgame");
}
Symbol 144 Button
on (press, keyPress "<Enter>") {
if (_root.bloomout._currentframe == 1) {
_root.bloomout.gotoAndPlay(1);
}
}
Symbol 145 Button
on (press, keyPress "<Enter>") {
if (_root.bloomout._currentframe == 1) {
_root.bloomout.gotoAndPlay(1);
}
}
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 20
_root.nextFrame();
Symbol 162 MovieClip Frame 1
stop();
Symbol 162 MovieClip Frame 2
stop();
Symbol 162 MovieClip Frame 3
stop();
Symbol 162 MovieClip Frame 4
stop();
Symbol 162 MovieClip Frame 5
stop();
Symbol 169 MovieClip Frame 2
_root.whichletter = _root.whichletter + 1;
Symbol 169 MovieClip Frame 3
stop();
Symbol 170 MovieClip Frame 1
stop();
Symbol 170 MovieClip Frame 2
stop();
Symbol 170 MovieClip Frame 3
stop();
Symbol 187 MovieClip Frame 1
stop();
Instance of Symbol 170 MovieClip "letter1" in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if ((_root.curletter == letternu) && (_root.whichletter == 1)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 1) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter2" in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if ((_root.curletter == letternu) && (_root.whichletter == 2)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 2) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter3" in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter4" in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 187 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 187 MovieClip Frame 2
stop();
Instance of Symbol 172 MovieClip in Symbol 187 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 187 MovieClip Frame 3
stop();
Symbol 187 MovieClip Frame 4
stop();
Instance of Symbol 185 MovieClip in Symbol 187 MovieClip Frame 4
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 187 MovieClip Frame 5
stop();
Instance of Symbol 172 MovieClip in Symbol 187 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 189 MovieClip Frame 1
var dead = false;
stop();
this.onEnterFrame = function () {
if (Math.abs(this._x - _parent.hhog._x) > 450) {
this._visible = false;
} else {
this._visible = true;
if (((_parent.hhog.hitTest((this._x - 12) + _root.level._x, this._y + _root.level._y, true) || (_parent.hhog.hitTest((this._x + 12) + _root.level._x, this._y + _root.level._y, true))) || (_parent.hhog.hitTest(this._x + _root.level._x, (this._y + 12) + _root.level._y, true))) || (_parent.hhog.hitTest(this._x + _root.level._x, (this._y - 12) + _root.level._y, true))) {
if (!dead) {
this.gotoAndStop(2);
_root.coins++;
dead = true;
}
}
}
};
Symbol 198 MovieClip Frame 6
stop();
Symbol 202 MovieClip Frame 61
_root.whichletter = 1;
_root.level.letters.letter1.gotoAndStop(1);
_root.level.letters.letter2.gotoAndStop(1);
_root.level.letters.letter3.gotoAndStop(1);
_root.level.letters.letter4.gotoAndStop(1);
_root.level.letters.letter5.gotoAndStop(1);
_root.level.hhog._y = _root.level.startpoint._y;
_root.level.hhog._x = _root.level.startpoint._x;
_root.lives--;
_root.bloomin.gotoAndPlay(2);
_root.message.gotoAndStop(1);
_root.level.hhog.gotoAndStop(1);
Symbol 203 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 1
stop();
Instance of Symbol 170 MovieClip "letter1" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if ((_root.curletter == letternu) && (_root.whichletter == 1)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 1) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter2" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if ((_root.curletter == letternu) && (_root.whichletter == 2)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 2) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter3" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter4" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 213 MovieClip Frame 2
stop();
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 185 MovieClip in Symbol 213 MovieClip Frame 2
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 213 MovieClip Frame 3
stop();
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 213 MovieClip Frame 4
stop();
Symbol 213 MovieClip Frame 5
stop();
Instance of Symbol 172 MovieClip in Symbol 213 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 220 MovieClip Frame 1
stop();
Instance of Symbol 170 MovieClip "letter1" in Symbol 220 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if ((_root.curletter == letternu) && (_root.whichletter == 1)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 1) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter2" in Symbol 220 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if ((_root.curletter == letternu) && (_root.whichletter == 2)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 2) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter3" in Symbol 220 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter4" in Symbol 220 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 220 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 185 MovieClip in Symbol 220 MovieClip Frame 1
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 220 MovieClip Frame 2
stop();
Symbol 220 MovieClip Frame 3
stop();
Symbol 220 MovieClip Frame 4
stop();
Instance of Symbol 185 MovieClip in Symbol 220 MovieClip Frame 4
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 220 MovieClip Frame 5
stop();
Symbol 231 MovieClip Frame 1
stop();
Instance of Symbol 170 MovieClip "letter1" in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if ((_root.curletter == letternu) && (_root.whichletter == 1)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 1) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter2" in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if ((_root.curletter == letternu) && (_root.whichletter == 2)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 2) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter3" in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter4" in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 231 MovieClip Frame 2
stop();
Instance of Symbol 185 MovieClip in Symbol 231 MovieClip Frame 2
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 231 MovieClip Frame 3
stop();
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 231 MovieClip Frame 4
stop();
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 231 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 231 MovieClip Frame 5
stop();
Instance of Symbol 185 MovieClip in Symbol 231 MovieClip Frame 5
onClipEvent (load) {
movement = "right";
speed = 3;
timer = 0;
realsize = _xscale;
}
onClipEvent (enterFrame) {
timer++;
if (_root.level.hhog.hitTest(this) && (_root.gamepaused == false)) {
_root.message.gotoAndStop(5);
}
if (movement == "right") {
this._x = this._x + speed;
this._xscale = realsize;
} else if (movement == "left") {
this._x = this._x - speed;
this._xscale = -realsize;
}
if (timer == 105) {
if (movement == "right") {
movement = "left";
timer = 0;
} else if (movement == "left") {
movement = "right";
timer = 0;
}
}
}
Symbol 245 MovieClip Frame 1
stop();
Instance of Symbol 170 MovieClip "letter1" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if ((_root.curletter == letternu) && (_root.whichletter == 1)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 1) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter2" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if ((_root.curletter == letternu) && (_root.whichletter == 2)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 2) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter3" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter4" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 245 MovieClip Frame 2
stop();
Symbol 245 MovieClip Frame 3
stop();
Instance of Symbol 170 MovieClip "letter4" in Symbol 245 MovieClip Frame 3
onClipEvent (enterFrame) {
letternu = _root.l4;
if ((_root.curletter == letternu) && (_root.whichletter == 4)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 4) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 170 MovieClip "letter5" in Symbol 245 MovieClip Frame 3
onClipEvent (enterFrame) {
letternu = _root.l5;
if ((_root.curletter == letternu) && (_root.whichletter == 5)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 5) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 245 MovieClip Frame 4
stop();
Symbol 245 MovieClip Frame 5
stop();
Instance of Symbol 170 MovieClip "letter3" in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
letternu = _root.l3;
if ((_root.curletter == letternu) && (_root.whichletter == 3)) {
this.gotoAndStop(2);
}
if (_root.level.hhog.hitTest(this)) {
if (_currentframe == 1) {
_root.message.gotoAndStop(5);
}
if (_root.whichletter == 3) {
this.gotoAndStop(3);
}
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Instance of Symbol 172 MovieClip in Symbol 245 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.level.hhog.hitTest(this)) {
_root.message.gotoAndStop(5);
}
}
Symbol 250 MovieClip Frame 1
stop();
Instance of Symbol 187 MovieClip "letters" in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.nivo);
}
Symbol 250 MovieClip Frame 2
stop();
Instance of Symbol 213 MovieClip "letters" in Symbol 250 MovieClip Frame 2
onClipEvent (enterFrame) {
this.gotoAndStop(_root.nivo);
}
Symbol 250 MovieClip Frame 3
stop();
Instance of Symbol 220 MovieClip "letters" in Symbol 250 MovieClip Frame 3
onClipEvent (enterFrame) {
this.gotoAndStop(_root.nivo);
}
Symbol 250 MovieClip Frame 4
stop();
Instance of Symbol 231 MovieClip "letters" in Symbol 250 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.nivo);
}
Symbol 250 MovieClip Frame 5
stop();
Instance of Symbol 245 MovieClip "letters" in Symbol 250 MovieClip Frame 5
onClipEvent (enterFrame) {
this.gotoAndStop(_root.nivo);
}
Symbol 252 MovieClip Frame 1
stop();
Symbol 252 MovieClip Frame 2
stop();
Symbol 252 MovieClip Frame 3
stop();
Symbol 274 MovieClip Frame 1
stop();
Symbol 274 MovieClip Frame 2
stop();
Symbol 274 MovieClip Frame 3
stop();
Symbol 274 MovieClip Frame 4
stop();
Symbol 274 MovieClip Frame 5
stop();
Symbol 278 Button
on (press, keyPress "<Space>") {
nextFrame();
}
Symbol 285 MovieClip Frame 1
stop();
Symbol 285 MovieClip Frame 2
stop();
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if (_root.whichletter == 2) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if (_root.whichletter == 3) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if (_root.whichletter == 4) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if (_root.whichletter == 5) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if (_root.whichletter == 6) {
this.gotoAndStop(2);
}
}
Symbol 295 Button
on (press, keyPress "<Space>") {
_root.message.gotoAndStop(4);
}
Symbol 299 MovieClip Frame 50
_root.message.gotoAndStop(4);
Symbol 300 MovieClip Frame 10
_root.level.hhog.gotoAndStop(3);
_root.gamepaused = true;
Symbol 300 MovieClip Frame 45
stop();
Symbol 302 MovieClip Frame 20
_root.nivo++;
_root.whichletter = 1;
_root.level.letters.letter1.gotoAndStop(1);
_root.level.letters.letter2.gotoAndStop(1);
_root.level.letters.letter3.gotoAndStop(1);
_root.level.letters.letter4.gotoAndStop(1);
_root.level.letters.letter5.gotoAndStop(1);
_root.level.hhog._y = _root.level.startpoint._y;
_root.level.hhog._x = _root.level.startpoint._x;
_root.bloomin.gotoAndPlay(2);
_root.message.gotoAndStop(1);
Symbol 305 MovieClip Frame 10
stop();
Symbol 306 MovieClip Frame 1
stop();
Instance of Symbol 274 MovieClip "worldview" in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
gotoAndStop(_root.wereld);
}
Instance of Symbol 285 MovieClip in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l1;
if (_root.whichletter == 2) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l2;
if (_root.whichletter == 3) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l3;
if (_root.whichletter == 4) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l4;
if (_root.whichletter == 5) {
this.gotoAndStop(2);
}
}
Instance of Symbol 285 MovieClip in Symbol 306 MovieClip Frame 1
onClipEvent (enterFrame) {
letternu = _root.l5;
if (_root.whichletter == 6) {
this.gotoAndStop(2);
}
}
Symbol 306 MovieClip Frame 2
stop();
_root.gamepaused = false;
Symbol 306 MovieClip Frame 3
stop();
Symbol 306 MovieClip Frame 4
stop();
Symbol 306 MovieClip Frame 5
_root.gamepaused = true;
_root.level.hhog.gotoAndStop(4);
stop();
Symbol 308 MovieClip Frame 1
gotoAndPlay (2);
Symbol 308 MovieClip Frame 10
stop();
Symbol 311 MovieClip Frame 70
stop();
Symbol 316 Button
on (press, keyPress "<Enter>") {
_root.gotoAndStop(4);
}
Symbol 334 MovieClip Frame 20
stop();
Symbol 337 MovieClip Frame 80
stop();
Symbol 353 MovieClip Frame 5
stop();
Symbol 368 Button
on (press, keyPress "1") {
_root.gotoAndStop("appelvanger");
}
Symbol 369 Button
on (press, keyPress "2") {
_root.gotoAndStop("motormuis");
}
Symbol 370 Button
on (press, keyPress "3") {
_root.gotoAndStop("verkleedpartij");
}
Symbol 402 MovieClip Frame 1
stop();
Instance of Symbol 391 MovieClip "catcharea" in Symbol 402 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 403 MovieClip Frame 1
stop();
Symbol 404 MovieClip Frame 1
gotoAndStop (2);
Symbol 413 MovieClip Frame 100
_root.pausedgame = false;
stop();
Symbol 416 MovieClip Frame 1
stop();
Symbol 418 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 2
stop();
Symbol 427 MovieClip Frame 1
gotoAndPlay (2);
Symbol 427 MovieClip Frame 20
stop();
Symbol 433 MovieClip Frame 1
stop();
Symbol 434 MovieClip Frame 1
stop();
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.pausedgame == false) && (this.hitTest(_root.level.hhog))) {
_root.losethis = true;
}
}
Symbol 442 MovieClip Frame 100
_root.pausedgame = false;
stop();
Symbol 446 MovieClip Frame 1
stop();
Symbol 446 MovieClip Frame 2
stop();
Instance of Symbol 453 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 455 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 457 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 459 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 461 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 463 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 465 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 467 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 469 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 471 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 473 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}
Instance of Symbol 475 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) {
this.onPress = function () {
startDrag ("");
};
this.onRelease = function () {
stopDrag();
};
this.onReleaseOutside = function () {
stopDrag();
};
}