Frame 1
volgendFrame = 5;
kwaliteit = 3;
muziekje = true;
Instance of Symbol 16 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.continu();
}
Frame 3
function continu() {
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
gotoAndPlay (2);
} else {
gotoAndPlay (4);
}
geladen = _root.getBytesLoaded();
totaal = _root.getBytesTotal();
gedeeld = geladen / totaal;
percentage = int(100 * gedeeld);
if ((percentage >= volgendFrame) and (_root.preloaderBalk._currentframe < 20)) {
volgendFrame = volgendFrame + 5;
_root.preloaderBalk.nextFrame();
}
}
stop();
Frame 100
gotoAndPlay (101);
Frame 350
gotoAndStop ("menu");
Frame 351
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
stopAllSounds();
if (muziekje) {
menuMuziek.gotoAndPlay(2);
}
gotomenu = "";
Mouse.hide();
Instance of Symbol 119 MovieClip "cursor" in Frame 351
onClipEvent (enterFrame) {
_root.cursorMove();
}
Frame 352
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Frame 353
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Frame 354
function initGame() {
stopAllSounds();
if (_root.muziekje == true) {
_root.timonMuziek.gotoAndPlay(2);
}
bgTimon.gotoAndStop(bgNumber);
timonYoshi.gotoAndStop(kleur);
timonYoshi.snuit.gotoAndStop(kleur);
yWaarde = false;
ei = false;
eiOnStage = false;
eiSchildInterval = 3000;
eiY = 7;
eiStandaardAfwijking = 1;
eiRandomAfwijking = 4;
saves = 0;
misses = 0;
Mouse.hide();
}
function engine() {
x = _root._xmouse;
y = _root._ymouse;
dx = _xmouse - timonYoshi._x;
dy = _ymouse - timonYoshi._y;
cursor._x = x;
cursor._y = y;
angle = Math.atan2(dy, dx);
angleDegrees = ((360 * angle) / (Math.PI*2)) + 90;
timonYoshi.snuit._rotation = angleDegrees;
timonYoshi.rolTong._rotation = angleDegrees;
timonYoshi.tonghit._rotation = angleDegrees;
if ((timonYoshi._x >= _root._xmouse) and (timonYoshi._x > 10)) {
timonYoshi._x = timonYoshi._x - 3;
}
if ((timonYoshi._x <= _root._xmouse) and (timonYoshi._x < 490)) {
timonYoshi._x = timonYoshi._x + 3;
}
if (timonYoshi._y >= 255) {
yWaarde = true;
}
if (timonYoshi._y <= 245) {
yWaarde = false;
}
if (yWaarde == false) {
timonYoshi._y = timonYoshi._y + 0.5;
}
if (yWaarde == true) {
timonYoshi._y = timonYoshi._y - 0.5;
}
i = 0;
while (i < 5) {
if (_root["schild" + i].hitTest(timonYoshi.af)) {
gotoAndStop ("dead");
}
i++;
}
if (misses > saves) {
gotoAndStop ("dead");
}
}
function attack() {
if (timonYoshi.rolTong._currentframe == 1) {
timonYoshi.rolTong.gotoAndPlay(2);
timonYoshi.tonghit.gotoAndPlay(2);
tongLikken.gotoAndPlay(2);
}
}
stop();
Instance of Symbol 16 MovieClip in Frame 354
onClipEvent (load) {
_root.initGame();
}
onClipEvent (enterFrame) {
_root.engine();
}
onClipEvent (mouseDown) {
_root.attack();
}
Instance of Symbol 148 MovieClip "schild3" in Frame 354
onClipEvent (enterFrame) {
if ((getTimer() > _root.blauwSchildTimer) and (_root.blauwOnStage == false)) {
this._x = random(700) - 100;
this._y = -100;
startX = this._x;
_root.blauwSchildTimer = getTimer() + _root.blauwSchildInterval;
xVar = random(_root.blauwRandomAfwijking) + _root.blauwStandaardAfwijking;
_root.blauwOnStage = true;
}
if (_root.blauwOnStage == true) {
this._y = this._y + _root.blauwY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.blauwOnStage = false;
}
}
Instance of Symbol 150 MovieClip "schild4" in Frame 354
onClipEvent (enterFrame) {
if ((getTimer() > _root.geelSchildTimer) and (_root.geelOnStage == false)) {
this._x = random(700) - 100;
this._y = -100;
startX = this._x;
_root.geelSchildTimer = getTimer() + _root.geelSchildInterval;
xVar = random(_root.geelRandomAfwijking) + _root.geelStandaardAfwijking;
_root.geelOnStage = true;
}
if (_root.geelOnStage == true) {
this._y = this._y + _root.geelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.geelOnStage = false;
}
}
Instance of Symbol 144 MovieClip "schild1" in Frame 354
onClipEvent (enterFrame) {
if ((getTimer() > _root.groenSchildTimer) and (_root.groenOnStage == false)) {
this._x = random(700) - 100;
this._y = -100;
startX = this._x;
_root.groenSchildTimer = getTimer() + _root.groenSchildInterval;
xVar = random(_root.groenRandomAfwijking) + _root.groenStandaardAfwijking;
_root.groenOnStage = true;
}
if (_root.groenOnStage == true) {
this._y = this._y + _root.groenY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.groenOnStage = false;
}
}
Instance of Symbol 146 MovieClip "schild2" in Frame 354
onClipEvent (enterFrame) {
if ((getTimer() > _root.roodSchildTimer) and (_root.roodOnStage == false)) {
this._x = random(700) - 100;
this._y = -100;
startX = this._x;
_root.roodSchildTimer = getTimer() + _root.roodSchildInterval;
xVar = random(_root.roodRandomAfwijking) + _root.roodStandaardAfwijking;
_root.roodOnStage = true;
}
if (_root.roodOnStage == true) {
this._y = this._y + _root.roodY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.roodOnStage = false;
}
}
Instance of Symbol 19 MovieClip "ei" in Frame 354
onClipEvent (load) {
eiSchildTimer = getTimer() + 2000;
}
onClipEvent (enterFrame) {
function reset() {
if ((_root.eiOnStage == false) and (getTimer() > eiSchildTimer)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
xVar = random(_root.eiRandomAfwijking) + _root.eiStandaardAfwijking;
_root.eiOnStage = true;
}
}
if (getTimer() > eiSchildTimer) {
reset();
}
if (_root.eiOnStage == true) {
this._y = this._y + _root.eiY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this.hitTest(_root.timonYoshi.tonghit)) {
_root.eiOnStage = false;
_root.ei = true;
this._y = -100;
_root.saves = _root.saves + 1;
eiSchildTimer = getTimer() + random(3000);
reset();
}
if (this._y > 350) {
reset();
_root.misses = _root.misses + 1;
this._y = -100;
_root.eiOnStage = false;
eiSchildTimer = getTimer() + random(3000);
}
}
Frame 355
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stopAllSounds();
_root.gameoverMuziek.gotoAndPlay(2);
score = saves - misses;
stop();
Instance of Symbol 119 MovieClip "cursor" in Frame 355
onClipEvent (enterFrame) {
_root.cursorMove();
}
Frame 356
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Frame 357
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Frame 358
function initGame2() {
stopAllSounds();
if (_root.muziekje == true) {
_root.chrisMuziek.gotoAndPlay(2);
}
lives = 3;
appels = 0;
schilden = 0;
Mouse.hide();
ggroen = false;
ggeel = false;
gblauw = false;
grood = false;
spike = false;
appelr = false;
appelg = false;
ei = false;
eating = false;
eattimer = 0;
bgTimon.gotoAndStop(bgNumber);
timonYoshi.gotoAndStop(kleur);
timonYoshi.snuit.gotoAndStop(kleur);
yWaarde = false;
}
function engine2() {
x = _root._xmouse;
y = _root._ymouse;
dx = _xmouse - timonYoshi._x;
dy = _ymouse - timonYoshi._y;
cursor._x = x;
cursor._y = y;
angle = Math.atan2(dy, dx);
angleDegrees = ((360 * angle) / (Math.PI*2)) + 90;
timonYoshi.snuit._rotation = angleDegrees;
timonYoshi.rolTong._rotation = angleDegrees;
timonYoshi.tonghit._rotation = angleDegrees;
if ((timonYoshi._x >= _root._xmouse) and (timonYoshi._x > 10)) {
timonYoshi._x = timonYoshi._x - 3;
}
if ((timonYoshi._x <= _root._xmouse) and (timonYoshi._x < 490)) {
timonYoshi._x = timonYoshi._x + 3;
}
if (timonYoshi._y >= 255) {
yWaarde = true;
}
if (timonYoshi._y <= 245) {
yWaarde = false;
}
if (yWaarde == false) {
timonYoshi._y = timonYoshi._y + 0.5;
}
if (yWaarde == true) {
timonYoshi._y = timonYoshi._y - 0.5;
}
if (_root.schilden < 0) {
_root.lives = _root.lives + _root.schilden;
_root.schilden = 0;
}
if (_root.appels < 0) {
_root.lives = _root.lives + _root.appels;
_root.appels = 0;
}
if (eating) {
if (eattimer == 0) {
eattimer = getTimer() + 500;
}
if (eattimer < getTimer()) {
eattimer = 0;
eating = false;
}
}
if (lives <= 0) {
_root.gotoAndPlay("deadchris");
}
_root.timerchris = (Math.round((getTimer() - 30000) / 60000) + ":") + (Math.round(getTimer() / 1000) - (Math.round((getTimer() - 30000) / 60000) * 60));
christime = getTimer() / 1000;
}
function attack2() {
if (timonYoshi.rolTong._currentframe == 1) {
timonYoshi.tonghit.gotoAndPlay(2);
timonYoshi.rolTong.gotoAndPlay(2);
tongLikken.gotoAndPlay(2);
}
}
stop();
Instance of Symbol 16 MovieClip in Frame 358
onClipEvent (load) {
_root.initGame2();
}
onClipEvent (enterFrame) {
_root.engine2();
}
onClipEvent (mouseDown) {
_root.attack2();
}
Instance of Symbol 148 MovieClip "gblauw" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.gblauwSchildTimer) and (_root.gblauwOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.gblauwSchildTimer = getTimer() + _root.gblauwSchildInterval;
xVar = random(_root.gblauwRandomAfwijking) + _root.gblauwStandaardAfwijking;
_root.gblauwOnStage = true;
}
if (_root.gblauwOnStage == true) {
this._y = this._y + _root.gblauwY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.schilden = _root.schilden - 3;
this._y = -100;
_root.gblauwOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.gblauwOnStage = false;
_root.gblauw = true;
_root.schilden = _root.schilden + _root.gblauwPunten;
_root.eating = true;
}
if (this.hitTest(_root.timonYoshi.af)) {
_root.gotoAndStop("deadchris");
}
}
Instance of Symbol 150 MovieClip "ggeel" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.ggeelSchildTimer) and (_root.ggeelOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.ggeelSchildTimer = getTimer() + _root.ggeelSchildInterval;
xVar = random(_root.ggeelRandomAfwijking) + _root.ggeelStandaardAfwijking;
_root.ggeelOnStage = true;
}
if (_root.ggeelOnStage == true) {
this._y = this._y + _root.ggeelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.schilden = _root.schilden - 4;
this._y = -100;
_root.ggeelOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.ggeelOnStage = false;
_root.ggeel = true;
_root.schilden = _root.schilden + _root.ggeelPunten;
_root.eating = true;
}
if (this.hitTest(_root.timonYoshi.af)) {
_root.gotoAndStop("deadchris");
}
}
Instance of Symbol 144 MovieClip "ggroen" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.ggroenSchildTimer) and (_root.ggroenOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.ggroenSchildTimer = getTimer() + _root.ggroenSchildInterval;
xVar = random(_root.ggroenRandomAfwijking) + _root.ggroenStandaardAfwijking;
_root.ggroenOnStage = true;
}
if ((_root.ggroenOnStage == true) && (!this.hitTest(_root.timonYoshi.tonghit))) {
this._y = this._y + _root.ggroenY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.schilden = _root.schilden - 1;
this._y = -100;
_root.ggroenOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.ggroenOnStage = false;
_root.ggroen = true;
_root.schilden = _root.schilden + _root.ggroenPunten;
_root.eating = true;
}
if (this.hitTest(_root.timonYoshi.af)) {
_root.gotoAndStop("deadchris");
}
}
Instance of Symbol 146 MovieClip "grood" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.groodSchildTimer) and (_root.groodOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.groodSchildTimer = getTimer() + _root.groodSchildInterval;
xVar = random(_root.groodRandomAfwijking) + _root.groodStandaardAfwijking;
_root.groodOnStage = true;
}
if (_root.groodOnStage == true) {
this._y = this._y + _root.groodY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.schilden = _root.schilden - 2;
this._y = -100;
_root.groodOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.groodOnStage = false;
_root.grood = true;
_root.schilden = _root.schilden + _root.groodPunten;
_root.eating = true;
}
if (this.hitTest(_root.timonYoshi.af)) {
_root.gotoAndStop("deadchris");
}
}
Instance of Symbol 87 MovieClip "appelr" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.roodAppelTimer) and (_root.roodAppelOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.roodAppelTimer = getTimer() + _root.roodAppelInterval;
xVar = random(_root.roodAppelRandomAfwijking) + _root.roodAppelStandaardAfwijking;
_root.roodAppelOnStage = true;
}
if (_root.roodAppelOnStage == true) {
this._y = this._y + _root.roodAppelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.appels = _root.appels - 1;
this._y = -100;
_root.roodAppelOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.roodAppelOnStage = false;
_root.appelr = true;
_root.appels = _root.appels + _root.roodAppelPunten;
_root.eating = true;
}
}
Instance of Symbol 89 MovieClip "appelg" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.geelAppelTimer) and (_root.geelAppelOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.geelAppelTimer = getTimer() + _root.geelAppelInterval;
xVar = random(_root.geelAppelRandomAfwijking) + _root.geelAppelStandaardAfwijking;
_root.geelAppelOnStage = true;
}
if (_root.geelAppelOnStage == true) {
this._y = this._y + _root.geelAppelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.geelAppelOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.geelAppelOnStage = false;
_root.appelg = true;
_root.lives = _root.lives + _root.geelAppelPunten;
_root.eating = true;
_root.geleAppel.gotoAndPlay(2);
}
}
Instance of Symbol 305 MovieClip "spike" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.spikeSchildTimer) and (_root.spikeOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.spikeSchildTimer = getTimer() + _root.spikeSchildInterval;
xVar = random(_root.spikeRandomAfwijking) + _root.spikeStandaardAfwijking;
_root.spikeOnStage = true;
}
if (_root.spikeOnStage == true) {
this._y = this._y + _root.spikeY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.spikeOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.spikeOnStage = false;
_root.spike = true;
_root.lives = _root.lives + _root.spikePunten;
_root.eating = true;
}
if (this.hitTest(_root.timonYoshi.af)) {
_root.gotoAndStop("deadchris");
}
}
Instance of Symbol 19 MovieClip "ei" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.eiTimer) and (_root.eiOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.eiTimer = getTimer() + _root.eiInterval;
xVar = random(_root.eiRandomAfwijking) + _root.eiStandaardAfwijking;
_root.eiOnStage = true;
}
if (_root.eiOnStage == true) {
this._y = this._y + _root.eiY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.eiOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.eiOnStage = false;
_root.ei = true;
_root.lives = _root.lives + _root.eiPunten;
_root.eating = true;
}
}
Instance of Symbol 87 MovieClip "appelr2" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.rood2AppelTimer) and (_root.rood2AppelOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.rood2AppelTimer = getTimer() + _root.rood2AppelInterval;
xVar = random(_root.rood2AppelRandomAfwijking) + _root.rood2AppelStandaardAfwijking;
_root.rood2AppelOnStage = true;
}
if (_root.rood2AppelOnStage == true) {
this._y = this._y + _root.rood2AppelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (((this._y > 350) && (this._x < 600)) && (this._x > -100)) {
_root.appels = _root.appels - 1;
this._y = -100;
_root.rood2AppelOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.rood2AppelOnStage = false;
_root.appelr = true;
_root.appels = _root.appels + _root.rood2AppelPunten;
_root.eating = true;
}
}
Instance of Symbol 89 MovieClip "appelg2" in Frame 358
onClipEvent (enterFrame) {
if ((getTimer() > _root.geel2AppelTimer) and (_root.geel2AppelOnStage == false)) {
this._x = random(300) + 100;
this._y = -100;
startX = this._x;
_root.geel2AppelTimer = getTimer() + _root.geel2AppelInterval;
xVar = random(_root.geel2AppelRandomAfwijking) + _root.geel2AppelStandaardAfwijking;
_root.geel2AppelOnStage = true;
}
if (_root.geelAppelOnStage == true) {
this._y = this._y + _root.geelAppelY;
if (startX >= 250) {
this._x = this._x - xVar;
} else if (startX < 250) {
this._x = this._x + xVar;
}
}
if (this._y > 350) {
this._y = -100;
_root.geel2AppelOnStage = false;
}
if (this.hitTest(_root.timonYoshi.tonghit) && (!_root.eating)) {
this._y = 6.2;
this._x = 539.7;
_root.geel2AppelOnStage = false;
_root.appelg = true;
_root.lives = _root.lives + _root.geel2AppelPunten;
_root.eating = true;
}
}
Frame 359
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stopAllSounds();
_root.gameoverMuziek.gotoAndPlay(2);
score = (appels + (schilden * 2)) + Math.round(christime / 5);
christime = Math.round(christime);
stop();
Instance of Symbol 119 MovieClip "cursor" in Frame 359
onClipEvent (enterFrame) {
_root.cursorMove();
}
Frame 360
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Frame 361
function cursorMove() {
cursor._x = _xmouse;
cursor._y = _ymouse;
}
stop();
Symbol 4 Button [graph_bg_1]
on (release) {
_root.ggroenSchildTimer = getTimer() + 10000;
_root.ggroenOnStage = false;
_root.ggroenSchildInterval = 9000;
_root.ggroenY = 3;
_root.ggroenStandaardAfwijking = 1;
_root.ggroenRandomAfwijking = 3;
_root.ggroenPunten = 2;
_root.groodSchildTimer = getTimer() + 12000;
_root.groodOnStage = false;
_root.groodSchildInterval = 13000;
_root.groodY = 4;
_root.groodStandaardAfwijking = 1;
_root.groodRandomAfwijking = 3;
_root.groodPunten = 4;
_root.gblauwSchildTimer = getTimer() + 20000;
_root.gblauwOnStage = false;
_root.gblauwSchildInterval = 20000;
_root.gblauwY = 5;
_root.gblauwStandaardAfwijking = 3;
_root.gblauwRandomAfwijking = 2;
_root.gblauwPunten = 6;
_root.ggeelSchildTimer = getTimer() + 35000;
_root.ggeelOnStage = false;
_root.ggeelSchildInterval = 30000;
_root.ggeelY = 4;
_root.ggeelStandaardAfwijking = 1;
_root.ggeelRandomAfwijking = 5;
_root.ggeelPunten = 8;
_root.spikeSchildTimer = getTimer() + 15000;
_root.spikeOnStage = false;
_root.spikeSchildInterval = 10000;
_root.spikeY = 3;
_root.spikeStandaardAfwijking = 2;
_root.spikeRandomAfwijking = 3;
_root.spikePunten = -3;
_root.roodAppelTimer = getTimer() + 3000;
_root.roodAppelOnStage = false;
_root.roodAppelInterval = 1000;
_root.roodAppelY = 2.7;
_root.roodAppelStandaardAfwijking = 1;
_root.roodAppelRandomAfwijking = 3;
_root.roodAppelPunten = 2;
_root.rood2AppelTimer = getTimer() + 1200;
_root.rood2AppelOnStage = false;
_root.rood2AppelInterval = 2100;
_root.rood2AppelY = 3.2;
_root.rood2AppelStandaardAfwijking = 1;
_root.rood2AppelRandomAfwijking = 3;
_root.rood2AppelPunten = 2;
_root.geelAppelTimer = getTimer() + 1000;
_root.geelAppelOnStage = false;
_root.geelAppelInterval = 1500;
_root.geelAppelY = 2.6;
_root.geelAppelStandaardAfwijking = 2;
_root.geelAppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.geel2AppelTimer = getTimer() + 3300;
_root.geel2AppelOnStage = false;
_root.geel2AppelInterval = 3000;
_root.geel2AppelY = 2.4;
_root.geel2AppelStandaardAfwijking = 2;
_root.geel2AppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.eiTimer = getTimer() + 60000;
_root.eiOnStage = false;
_root.eiInterval = 70000 /* 0x011170 */;
_root.eiY = 5;
_root.eiStandaardAfwijking = 1;
_root.eiRandomAfwijking = 2;
_root.eiPunten = 1;
_root.bgNumber = 1;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Fantasy Land";
_root.diff = "Easy";
}
Symbol 5 Button [graph_bg_1]
on (release) {
_root.bgNumber = 1;
_root.groenSchildTimer = getTimer() + 3000;
_root.groenOnStage = false;
_root.groenSchildInterval = 2000;
_root.groenY = 5;
_root.groenStandaardAfwijking = 2;
_root.groenRandomAfwijking = 3;
_root.roodSchildTimer = getTimer() + 10000;
_root.roodOnStage = false;
_root.roodSchildInterval = 5000;
_root.roodY = 6;
_root.roodStandaardAfwijking = 3;
_root.roodRandomAfwijking = 4;
_root.blauwSchildTimer = getTimer() + 20000;
_root.blauwOnStage = false;
_root.blauwSchildInterval = 6000;
_root.blauwY = 0;
_root.blauwStandaardAfwijking = 0;
_root.blauwRandomAfwijking = 0;
_root.geelSchildTimer = getTimer() + 30000;
_root.geelOnStage = false;
_root.geelSchildInterval = 7000;
_root.geelY = 0;
_root.geelStandaardAfwijking = 0;
_root.geelRandomAfwijking = 0;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Fantasy Land";
_root.diff = "Easy";
}
Symbol 20 MovieClip Frame 1
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 1
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
gotoAndStop (2);
}
}
Symbol 20 MovieClip Frame 2
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 2
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 5;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 3
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 3
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 10;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 4
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 4
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 15;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 5
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 5
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 20;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 6
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 6
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 25;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 7
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 7
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 30;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 8
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 8
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 35;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 9
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 9
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 40;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 10
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 10
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 45;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 11
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 11
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 50;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 12
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 12
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 55;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 13
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 13
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 60;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 14
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 14
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 65;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 15
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 15
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 70;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 16
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 16
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 75;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 17
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 17
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 80;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 18
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 18
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 85;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 19
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 19
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 90;
this._alpha = 16 * loadProgress;
if (loadProgress >= 5) {
nextFrame();
}
}
Symbol 20 MovieClip Frame 20
stop();
Instance of Symbol 19 MovieClip in Symbol 20 MovieClip Frame 20
onClipEvent (enterFrame) {
loadProgress = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) - 95;
this._alpha = 16 * loadProgress;
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
_root.gotoAndPlay("loaded");
}
}
Symbol 26 Button
on (release) {
gotoAndPlay (101);
}
Symbol 31 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 34 MovieClip Frame 25
stop();
Symbol 74 Button
on (release) {
gotoAndPlay ("menu");
}
Symbol 83 MovieClip Frame 75
stop();
Symbol 105 Button
on (release) {
_root.gotomenu = "gameTimon";
_root.menumov.gotoAndPlay("exit");
}
Symbol 108 Button
on (release) {
_root.gotomenu = "gameChris";
_root.menumov.gotoAndPlay("exit");
}
Symbol 111 Button
on (release) {
_root.gotomenu = "options";
_root.menumov.gotoAndPlay("exit");
}
Symbol 114 Button
on (release) {
_root.gotomenu = "credits";
_root.menumov.gotoAndPlay("exit");
}
Symbol 117 MovieClip Frame 23
stop();
Symbol 117 MovieClip Frame 46
stop();
Instance of Symbol 107 MovieClip in Symbol 117 MovieClip Frame 46
onClipEvent (enterFrame) {
_root.gotoAndStop(_root.gotomenu);
}
Symbol 122 MovieClip Frame 1
stop();
Symbol 136 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 138 Button
on (release) {
gotoAndPlay ("exitmenu");
}
Symbol 141 Button
on (release) {
gotoAndStop ("instructions1");
}
Symbol 142 Button
on (release) {
gotoAndStop ("instructions3");
}
Symbol 158 Button
on (release) {
gotoAndPlay ("exit");
}
Symbol 159 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 164 MovieClip Frame 23
stop();
Symbol 164 MovieClip Frame 24
stop();
Symbol 164 MovieClip Frame 25
stop();
Instance of Symbol 16 MovieClip in Symbol 164 MovieClip Frame 38
onClipEvent (load) {
_root.gotoAndStop("timonSelect");
}
Instance of Symbol 16 MovieClip in Symbol 164 MovieClip Frame 51
onClipEvent (load) {
_root.gotoAndStop("menu");
}
Symbol 175 MovieClip Frame 1
_root.kleur = 1;
stop();
Symbol 175 MovieClip Frame 2
_root.kleur = 2;
stop();
Symbol 175 MovieClip Frame 3
_root.kleur = 3;
stop();
Symbol 175 MovieClip Frame 4
_root.kleur = 4;
stop();
Symbol 177 Button
on (release) {
if (_root.colour._currentframe >= 1) {
_root.colour.prevFrame();
}
}
Symbol 178 Button
on (release) {
if (_root.colour._currentframe <= 4) {
_root.colour.nextFrame();
}
}
Symbol 183 Button
on (release) {
_root.bgNumber = 3;
_root.groenSchildTimer = getTimer() + 3000;
_root.groenOnStage = false;
_root.groenSchildInterval = 2000;
_root.groenY = 5;
_root.groenStandaardAfwijking = 2;
_root.groenRandomAfwijking = 3;
_root.roodSchildTimer = getTimer() + 10000;
_root.roodOnStage = false;
_root.roodSchildInterval = 5000;
_root.roodY = 6;
_root.roodStandaardAfwijking = 3;
_root.roodRandomAfwijking = 4;
_root.blauwSchildTimer = getTimer() + 20000;
_root.blauwOnStage = false;
_root.blauwSchildInterval = 6000;
_root.blauwY = 7;
_root.blauwStandaardAfwijking = 4;
_root.blauwRandomAfwijking = 5;
_root.geelSchildTimer = getTimer() + 30000;
_root.geelOnStage = false;
_root.geelSchildInterval = 7000;
_root.geelY = 8;
_root.geelStandaardAfwijking = 5;
_root.geelRandomAfwijking = 6;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Donut Pass";
_root.diff = "Hard";
}
Symbol 184 Button
on (release) {
_root.bgNumber = 2;
_root.groenSchildTimer = getTimer() + 3000;
_root.groenOnStage = false;
_root.groenSchildInterval = 2000;
_root.groenY = 5;
_root.groenStandaardAfwijking = 2;
_root.groenRandomAfwijking = 3;
_root.roodSchildTimer = getTimer() + 10000;
_root.roodOnStage = false;
_root.roodSchildInterval = 5000;
_root.roodY = 6;
_root.roodStandaardAfwijking = 3;
_root.roodRandomAfwijking = 4;
_root.blauwSchildTimer = getTimer() + 20000;
_root.blauwOnStage = false;
_root.blauwSchildInterval = 6000;
_root.blauwY = 7;
_root.blauwStandaardAfwijking = 4;
_root.blauwRandomAfwijking = 5;
_root.geelSchildTimer = getTimer() + 30000;
_root.geelOnStage = false;
_root.geelSchildInterval = 7000;
_root.geelY = 0;
_root.geelStandaardAfwijking = 0;
_root.geelRandomAfwijking = 0;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Cliffy Rocks";
_root.diff = "Medium";
}
Symbol 185 MovieClip Frame 18
stop();
Symbol 185 MovieClip Frame 42
stop();
Instance of Symbol 16 MovieClip in Symbol 185 MovieClip Frame 60
onClipEvent (load) {
_root.gotoAndStop("playTimon");
}
Symbol 198 MovieClip Frame 1
stop();
Instance of Symbol 190 MovieClip in Symbol 198 MovieClip Frame 1
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Instance of Symbol 191 MovieClip in Symbol 198 MovieClip Frame 1
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Instance of Symbol 192 MovieClip in Symbol 198 MovieClip Frame 1
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Symbol 198 MovieClip Frame 2
stop();
Instance of Symbol 195 MovieClip in Symbol 198 MovieClip Frame 2
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Instance of Symbol 197 MovieClip in Symbol 198 MovieClip Frame 2
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Symbol 198 MovieClip Frame 3
stop();
Instance of Symbol 195 MovieClip in Symbol 198 MovieClip Frame 3
onClipEvent (load) {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
onClipEvent (enterFrame) {
function reset() {
vliegwaarde = random(1) + 0.5;
this._x = random(100) + 550;
this._y = random(100) + 30;
}
this._x = this._x - vliegwaarde;
if (this._x < -150) {
reset();
}
}
Symbol 199 Button
on (keyPress "q") {
gotoAndStop ("dead");
}
Symbol 208 MovieClip Frame 13
stop();
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 2
stop();
Symbol 217 MovieClip Frame 3
stop();
Symbol 217 MovieClip Frame 4
stop();
Symbol 219 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 2
stop();
Symbol 237 MovieClip Frame 3
stop();
Symbol 237 MovieClip Frame 4
stop();
Symbol 237 MovieClip Frame 5
stop();
Symbol 237 MovieClip Frame 6
stop();
Symbol 237 MovieClip Frame 7
stop();
Symbol 237 MovieClip Frame 8
stop();
Symbol 237 MovieClip Frame 9
stop();
Symbol 238 MovieClip Frame 1
stop();
Instance of Symbol 237 MovieClip "tonghit" in Symbol 238 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.ggroen) {
this.gotoAndStop("groen");
_root.ggroen = false;
}
if (_root.ggeel) {
this.gotoAndStop("geel");
_root.ggeel = false;
}
if (_root.grood) {
this.gotoAndStop("rood");
_root.grood = false;
}
if (_root.gblauw) {
this.gotoAndStop("blauw");
_root.gblauw = false;
}
if (_root.appelr) {
this.gotoAndStop("appelr");
_root.appelr = false;
}
if (_root.appelg) {
this.gotoAndStop("appelg");
_root.appelg = false;
}
if (_root.spike) {
this.gotoAndStop("spike");
_root.spike = false;
}
if (_root.ei) {
this.gotoAndStop("ei");
_root.ei = false;
}
}
Instance of Symbol 237 MovieClip "tonghit" in Symbol 238 MovieClip Frame 19
onClipEvent (enterFrame) {
if (_root.ggroen) {
this.gotoAndStop("groen");
_root.ggroen = false;
_root.eating = false;
}
if (_root.ggeel) {
this.gotoAndStop("geel");
_root.ggeel = false;
_root.eating = false;
}
if (_root.grood) {
this.gotoAndStop("rood");
_root.grood = false;
_root.eating = false;
}
if (_root.gblauw) {
this.gotoAndStop("blauw");
_root.gblauw = false;
_root.eating = false;
}
if (_root.appelr) {
this.gotoAndStop("appelr");
_root.appelr = false;
_root.eating = false;
}
if (_root.appelg) {
this.gotoAndStop("appelg");
_root.appelg = false;
_root.eating = false;
}
if (_root.spike) {
this.gotoAndStop("spike");
_root.spike = false;
_root.eating = false;
}
if (_root.ei) {
this.gotoAndStop("ei");
_root.ei = false;
_root.eating = false;
}
}
Symbol 247 MovieClip Frame 1
stop();
Symbol 247 MovieClip Frame 2
stop();
Symbol 247 MovieClip Frame 3
stop();
Symbol 247 MovieClip Frame 4
stop();
Symbol 250 MovieClip Frame 1
stop();
Symbol 253 MovieClip Frame 1
stop();
Symbol 255 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 256 Button
on (release) {
gotoAndStop ("timonSelect");
}
Symbol 274 MovieClip Frame 44
gotoAndPlay (30);
Symbol 279 MovieClip Frame 56
stop();
Symbol 291 MovieClip Frame 1
stop();
Symbol 300 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 301 Button
on (release) {
gotoAndPlay ("exitmenu");
}
Symbol 306 Button
on (release) {
gotoAndStop ("instructions1");
}
Symbol 309 Button
on (release) {
gotoAndStop ("instructions3");
}
Symbol 312 Button
on (release) {
gotoAndPlay ("exit");
}
Symbol 313 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 318 MovieClip Frame 23
stop();
Symbol 318 MovieClip Frame 24
stop();
Symbol 318 MovieClip Frame 25
stop();
Instance of Symbol 16 MovieClip in Symbol 318 MovieClip Frame 38
onClipEvent (load) {
_root.gotoAndStop("sceneSelect");
}
Instance of Symbol 16 MovieClip in Symbol 318 MovieClip Frame 51
onClipEvent (load) {
_root.gotoAndStop("menu");
}
Symbol 321 Button
on (release) {
_root.ggroenSchildTimer = getTimer() + 8000;
_root.ggroenOnStage = false;
_root.ggroenSchildInterval = 7000;
_root.ggroenY = 6;
_root.ggroenStandaardAfwijking = 1;
_root.ggroenRandomAfwijking = 3;
_root.ggroenPunten = 2;
_root.groodSchildTimer = getTimer() + 10000;
_root.groodOnStage = false;
_root.groodSchildInterval = 10000;
_root.groodY = 7;
_root.groodStandaardAfwijking = 1;
_root.groodRandomAfwijking = 3;
_root.groodPunten = 4;
_root.gblauwSchildTimer = getTimer() + 18000;
_root.gblauwOnStage = false;
_root.gblauwSchildInterval = 18000;
_root.gblauwY = 8;
_root.gblauwStandaardAfwijking = 3;
_root.gblauwRandomAfwijking = 2;
_root.gblauwPunten = 6;
_root.ggeelSchildTimer = getTimer() + 25000;
_root.ggeelOnStage = false;
_root.ggeelSchildInterval = 20000;
_root.ggeelY = 6;
_root.ggeelStandaardAfwijking = 1;
_root.ggeelRandomAfwijking = 5;
_root.ggeelPunten = 8;
_root.spikeSchildTimer = getTimer() + 12000;
_root.spikeOnStage = false;
_root.spikeSchildInterval = 7000;
_root.spikeY = 4;
_root.spikeStandaardAfwijking = 2;
_root.spikeRandomAfwijking = 3;
_root.spikePunten = -3;
_root.roodAppelTimer = getTimer() + 3000;
_root.roodAppelOnStage = false;
_root.roodAppelInterval = 1000;
_root.roodAppelY = 4.5;
_root.roodAppelStandaardAfwijking = 1;
_root.roodAppelRandomAfwijking = 3;
_root.roodAppelPunten = 2;
_root.rood2AppelTimer = getTimer() + 1200;
_root.rood2AppelOnStage = false;
_root.rood2AppelInterval = 2100;
_root.rood2AppelY = 5.5;
_root.rood2AppelStandaardAfwijking = 1;
_root.rood2AppelRandomAfwijking = 3;
_root.rood2AppelPunten = 2;
_root.geelAppelTimer = getTimer() + 1000;
_root.geelAppelOnStage = false;
_root.geelAppelInterval = 1500;
_root.geelAppelY = 4.5;
_root.geelAppelStandaardAfwijking = 2;
_root.geelAppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.geel2AppelTimer = getTimer() + 3300;
_root.geel2AppelOnStage = false;
_root.geel2AppelInterval = 3000;
_root.geel2AppelY = 5;
_root.geel2AppelStandaardAfwijking = 2;
_root.geel2AppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.eiTimer = getTimer() + 90000;
_root.eiOnStage = false;
_root.eiInterval = 90000 /* 0x015F90 */;
_root.eiY = 6;
_root.eiStandaardAfwijking = 1;
_root.eiRandomAfwijking = 2;
_root.eiPunten = 1;
_root.bgNumber = 3;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Donut Pass";
_root.diff = "Hard";
}
Symbol 322 Button
on (release) {
_root.ggroenSchildTimer = getTimer() + 8000;
_root.ggroenOnStage = false;
_root.ggroenSchildInterval = 7000;
_root.ggroenY = 5;
_root.ggroenStandaardAfwijking = 1;
_root.ggroenRandomAfwijking = 3;
_root.ggroenPunten = 2;
_root.groodSchildTimer = getTimer() + 10000;
_root.groodOnStage = false;
_root.groodSchildInterval = 10000;
_root.groodY = 6;
_root.groodStandaardAfwijking = 1;
_root.groodRandomAfwijking = 3;
_root.groodPunten = 4;
_root.gblauwSchildTimer = getTimer() + 18000;
_root.gblauwOnStage = false;
_root.gblauwSchildInterval = 18000;
_root.gblauwY = 5;
_root.gblauwStandaardAfwijking = 3;
_root.gblauwRandomAfwijking = 2;
_root.gblauwPunten = 6;
_root.ggeelSchildTimer = getTimer() + 25000;
_root.ggeelOnStage = false;
_root.ggeelSchildInterval = 20000;
_root.ggeelY = 4;
_root.ggeelStandaardAfwijking = 1;
_root.ggeelRandomAfwijking = 5;
_root.ggeelPunten = 8;
_root.spikeSchildTimer = getTimer() + 12000;
_root.spikeOnStage = false;
_root.spikeSchildInterval = 7000;
_root.spikeY = 4;
_root.spikeStandaardAfwijking = 2;
_root.spikeRandomAfwijking = 3;
_root.spikePunten = -3;
_root.roodAppelTimer = getTimer() + 3000;
_root.roodAppelOnStage = false;
_root.roodAppelInterval = 1000;
_root.roodAppelY = 3.8;
_root.roodAppelStandaardAfwijking = 1;
_root.roodAppelRandomAfwijking = 3;
_root.roodAppelPunten = 2;
_root.rood2AppelTimer = getTimer() + 1200;
_root.rood2AppelOnStage = false;
_root.rood2AppelInterval = 2100;
_root.rood2AppelY = 4.5;
_root.rood2AppelStandaardAfwijking = 1;
_root.rood2AppelRandomAfwijking = 3;
_root.rood2AppelPunten = 2;
_root.geelAppelTimer = getTimer() + 1000;
_root.geelAppelOnStage = false;
_root.geelAppelInterval = 1500;
_root.geelAppelY = 3.5;
_root.geelAppelStandaardAfwijking = 2;
_root.geelAppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.geel2AppelTimer = getTimer() + 3300;
_root.geel2AppelOnStage = false;
_root.geel2AppelInterval = 3000;
_root.geel2AppelY = 3.8;
_root.geel2AppelStandaardAfwijking = 2;
_root.geel2AppelRandomAfwijking = 2;
_root.geelAppelPunten = -1;
_root.eiTimer = getTimer() + 60000;
_root.eiOnStage = false;
_root.eiInterval = 70000 /* 0x011170 */;
_root.eiY = 5;
_root.eiStandaardAfwijking = 1;
_root.eiRandomAfwijking = 2;
_root.eiPunten = 1;
_root.bgNumber = 2;
gotoAndPlay ("exit");
}
on (rollOver) {
_root.lvl = "Cliffy Rocks";
_root.diff = "Medium";
}
Symbol 323 MovieClip Frame 18
stop();
Instance of Symbol 16 MovieClip in Symbol 323 MovieClip Frame 36
onClipEvent (load) {
_root.gotoAndStop("playChris");
}
Symbol 327 Button
on (keyPress "q") {
gotoAndStop ("deadchris");
}
Symbol 344 MovieClip Frame 14
stop();
Symbol 347 MovieClip Frame 1
stop();
Symbol 350 MovieClip Frame 1
stop();
Symbol 351 Button
on (release) {
gotoAndStop ("sceneSelect");
}
Symbol 363 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 364 Button
on (release) {
gotoAndPlay ("exit");
}
Symbol 369 Button
on (release) {
gotoAndStop ("instructions1");
}
Symbol 370 Button
on (release) {
gotoAndStop ("instructions3");
}
Symbol 373 Button
on (release) {
gotoAndPlay ("exit");
}
Symbol 374 Button
on (release) {
gotoAndStop ("instructions2");
}
Symbol 377 MovieClip Frame 23
stop();
Symbol 377 MovieClip Frame 24
stop();
Symbol 377 MovieClip Frame 25
stop();
Instance of Symbol 16 MovieClip in Symbol 377 MovieClip Frame 38
onClipEvent (load) {
_root.gotoAndStop("menu");
}
Symbol 381 Button
on (release) {
gotoAndPlay ("exit");
}
Symbol 382 Button
on (release) {
_root.kwaliteit++;
if (_root.kwaliteit == 5) {
_parent.kwaliteit = 1;
}
if (_root.kwaliteit == 1) {
_quality = "LOW";
_root.optionsScreen.helpText = "Low";
}
if (_root.kwaliteit == 2) {
_quality = "MEDIUM";
_root.optionsScreen.helpText = "Medium";
}
if (_root.kwaliteit == 3) {
_quality = "HIGH";
_root.optionsScreen.helpText = "High";
}
if (_root.kwaliteit == 4) {
_quality = "BEST";
_root.optionsScreen.helpText = "Best";
}
}
Symbol 385 Button
on (release) {
if (_root.muziekje == false) {
_root.muziekje = true;
_root.optionsScreen.mmm = "On";
} else if (_root.muziekje == true) {
_root.muziekje = false;
_root.optionsScreen.mmm = "Off";
stopAllSounds();
}
}
Symbol 389 MovieClip Frame 23
if (_root.muziekje == true) {
_root.optionsScreen.mmm = "On";
} else if (_root.muziekje == false) {
_root.optionsScreen.mmm = "Off";
}
stop();
Symbol 389 MovieClip Frame 24
stop();
Symbol 389 MovieClip Frame 25
stop();
Instance of Symbol 16 MovieClip in Symbol 389 MovieClip Frame 38
onClipEvent (load) {
_root.gotoAndStop("menu");
}