Frame 1
percentReady = Math.floor((_root.getBytesLoaded() / getBytesTotal()) * 100);
fscommand ("showmenu", "false");
Instance of Symbol 74 MovieClip in Frame 1
onClipEvent (enterFrame) {
this._xscale = _level0.percentReady;
}
Frame 5
if (percentReady == 100) {
gotoAndStop (11);
} else {
gotoAndPlay (1);
}
Frame 11
fscommand ("showmenu", "false");
var kongregate = _global.kongregate;
kongregate.services.connect();
_root.kongregateServices.connect();
stop();
Instance of Symbol 94 MovieClip in Frame 11
onClipEvent (load) {
_quality = "low";
this.gotoAndPlay(349);
}
Frame 12
function levelProgressTracker() {
if (_root._currentframe < 45) {
this["finishedLevel" + ((_root._currentframe / 2) - 9)] = true;
} else if ((_root._currentframe > 45) && (_root._currentframe < 80)) {
this["finishedLevel" + ((_root._currentframe / 2) - 12.5)] = true;
} else {
this["finishedLevel" + ((_root._currentframe / 2) - 17.5)] = true;
}
if ((((((((((((finishedLevel25 == true) && (finishedLevel26 == true)) && (finishedLevel27 == true)) && (finishedLevel28 == true)) && (finishedLevel29 == true)) && (finishedLevel30 == true)) && (finishedLevel31 == true)) && (finishedLevel32 == true)) && (finishedLevel33 == true)) && (finishedLevel34 == true)) && (finishedLevel35 == true)) && (finishedLevel36 == true)) {
finishWorld3 = 1;
} else if ((((((((((((finishedLevel13 == true) && (finishedLevel114 == true)) && (finishedLeve15 == true)) && (finishedLevel16 == true)) && (finishedLevel17 == true)) && (finishedLevel18 == true)) && (finishedLevel19 == true)) && (finishedLevel20 == true)) && (finishedLevel21 == true)) && (finishedLevel22 == true)) && (finishedLevel23 == true)) && (finishedLevel24 == true)) {
finishWorld2 = 1;
} else if ((((((((((((finishedLevel1 == true) && (finishedLevel2 == true)) && (finishedLevel3 == true)) && (finishedLevel4 == true)) && (finishedLevel5 == true)) && (finishedLevel6 == true)) && (finishedLevel7 == true)) && (finishedLevel8 == true)) && (finishedLevel9 == true)) && (finishedLevel10 == true)) && (finishedLevel11 == true)) && (finishedLevel12 == true)) {
finishWorld1 = 1;
}
if (kongregate.services.isGuest()) {
kongregate.services.showSignInBox();
}
_root.kongregateStats.submit("Complete World 1", finishWorld1);
_root.kongregateStats.submit("Complete World 2", finishWorld2);
_root.kongregateStats.submit("Complete Game", finishWorld3);
}
function everyFrame() {
_level0.dudeLife = 100;
_level0.dead = false;
_level0.haveKey = false;
_level0.allPlatforms = [];
}
function charMove() {
if (_root.myDude._x <= 10) {
_root.myDude._x = 10;
} else if (_root.myDude._x >= 504) {
_root.myDude._x = 504;
}
if (Key.isDown(39) or Key.isDown(dKey)) {
_root.myDude._xscale = 100;
if (_level0.inertia < _level0.topInertia) {
_level0.inertia = _level0.inertia + 1;
}
if ((_level0.jumping == false) && (_level0.dudeLife > 1)) {
_root.myDude.gotoAndStop("run");
}
_root.myDude._x = _root.myDude._x + _level0.inertia;
} else if (Key.isDown(37) or Key.isDown(aKey)) {
_root.myDude._xscale = -100;
if (_level0.inertia > (-_level0.topInertia)) {
_level0.inertia = _level0.inertia - 1;
}
if ((_level0.jumping == false) && (_level0.dudeLife > 1)) {
_root.myDude.gotoAndStop("run");
}
_root.myDude._x = _root.myDude._x + _level0.inertia;
} else {
if (_level0.inertia > 0) {
_level0.inertia = _level0.inertia - 1;
}
if (_level0.inertia < 0) {
_level0.inertia = _level0.inertia + 1;
}
_root.myDude._x = _root.myDude._x + _level0.inertia;
}
if ((((Key.isDown(17) && (!_level0.jumping)) or (Key.isDown(38) && (!_level0.jumping))) or (Key.isDown(32) && (!_level0.jumping))) or (Key.isDown(wKey) && (!_level0.jumping))) {
_level0.j1Sound.start();
if ((_level0.inertia == _level0.topInertia) or (_level0.inertia == (-_level0.topInertia))) {
_level0.jumpheight = _level0.runningJumpheight;
_level0.jumping = true;
}
_level0.gravity = -_level0.jumpheight;
_level0.jumping = true;
if (_level0.dudeLife > 1) {
_root.myDude.gotoAndStop("jump");
}
_level0.jumpheight = 11;
}
if (!_root.ground.hitTest(_x, _y, true)) {
_level0.gravity++;
_root.myDude._y = _root.myDude._y + _level0.gravity;
}
if (_level0.dudeLife <= 0) {
_root.myDude.gotoAndStop("death");
} else if (((((((!Key.isDown(17)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(aKey))) && (!Key.isDown(dKey))) && (_level0.jumping == false)) && (_level0.dudeLife > 1)) {
_root.myDude.gotoAndStop("idle");
}
_level0.myTime = getTimer() / 1000;
}
function groundScript() {
with (_root.myDude) {
if (_root.ground.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (_root.ground.hitTest(_x, _y, true)) {
_level0.jumping = false;
_root.myDude._y--;
}
}
}
function resumeMusic() {
_level0.music1Sound.start();
_level0.music1Sound.setVolume(currentVolume);
}
speed = 8;
gravity = 0;
jumping = false;
jumpheight = 11;
inertia = 0;
topInertia = 8;
runningJumpheight = 14;
dead = false;
dudeLife = 100;
haveKey = false;
bodyCount = 0;
paraStartX = 0;
paraStartY = 0;
currentVolume = 60;
dKey = 68;
aKey = 65;
wKey = 87;
myTime = 0;
finalTime = 0;
finishWorld1 = 0;
finishWorld1 = 0;
finishWorld2 = 0;
finishWorld3 = 0;
finishWorld1Under5deaths = 0;
finishWorld2Under5deaths = 0;
finishWorld3Under5deaths = 0;
finishWorld1withNoDeaths = 0;
finishWorld2withNoDeaths = 0;
finishWorld3withNoDeaths = 0;
completeGamewithNoDeaths = 0;
i = 1;
while (i < 36) {
this["finishedLevel" + i] = false;
i++;
}
var music1Sound = new Sound(_root.musicObjMC);
music1Sound.attachSound("music1Sound");
var cutMusicSound = new Sound(_root.musicObjMC);
cutMusicSound.attachSound("cutmusic");
var outroMusic = new Sound(_root.musicObjMC);
outroMusic.attachSound("outroMusic");
var j1Sound = new Sound();
j1Sound.attachSound("j1Sound");
var pickupSound = new Sound();
pickupSound.attachSound("pickupSound");
var deathSound = new Sound();
deathSound.attachSound("deathSound");
var transportSound = new Sound();
transportSound.attachSound("transportSound");
var keySound = new Sound();
keySound.attachSound("keySound");
var finishSound = new Sound();
finishSound.attachSound("finishSound");
var lameSound = new Sound();
lameSound.attachSound("lameSound");
var lillameSound = new Sound();
lillameSound.attachSound("lillameSound");
var jumpSound = new Sound();
jumpSound.attachSound("j1Sound");
music1Sound.onSoundComplete = resumeMusic;
stop();
Instance of Symbol 97 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gotoAndPlay(64);
}
}
Frame 14
stop();
Instance of Symbol 123 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.gotoAndPlay(_level0.inputCode);
}
}
Frame 17
stopAllSounds();
cutMusicSound.start();
cutMusicSound.setVolume(currentVolume - 30);
stop();
Instance of Symbol 168 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay(_root._currentframe + 1);
}
}
Frame 18
stopAllSounds();
music1Sound.start();
music1Sound.setVolume(currentVolume);
stop();
Frame 19
everyFrame();
stop();
Instance of Symbol 196 MovieClip in Frame 19
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 196 MovieClip in Frame 19
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 199 MovieClip "paralaxin" in Frame 19
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 202 MovieClip "paralaxin" in Frame 19
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.1) + paraStartX;
this._y = (_root.myDude._y * -0.1) + paraStartY;
}
Instance of Symbol 205 MovieClip "ground" in Frame 19
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 69 MovieClip [myPlat1] "plat1" in Frame 19
onClipEvent (load) {
}
onClipEvent (enterFrame) {
}
Instance of Symbol 209 MovieClip in Frame 19
/* no clip actions */
Instance of Symbol 209 MovieClip in Frame 19
/* no clip actions */
Instance of Symbol 214 MovieClip in Frame 19
/* no clip actions */
Instance of Symbol 217 MovieClip in Frame 19
/* no clip actions */
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 19
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 20
levelProgressTracker();
stop();
Frame 21
everyFrame();
stop();
Instance of Symbol 69 MovieClip [myPlat1] in Frame 21
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 21
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 228 MovieClip in Frame 21
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] "plat189hg" in Frame 21
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 21
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 22
levelProgressTracker();
stop();
Frame 23
everyFrame();
stop();
Instance of Symbol 228 MovieClip in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 234 MovieClip in Frame 23
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 23
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 24
levelProgressTracker();
stop();
Frame 25
everyFrame();
stop();
Instance of Symbol 228 MovieClip in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 228 MovieClip in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 234 MovieClip in Frame 25
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 25
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 26
levelProgressTracker();
stop();
Frame 27
everyFrame();
stop();
Instance of Symbol 228 MovieClip in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 228 MovieClip in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 27
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 27
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 28
levelProgressTracker();
stop();
Frame 29
everyFrame();
stop();
Instance of Symbol 205 MovieClip "ground" in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 228 MovieClip in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 265 MovieClip "slopeR" in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 268 MovieClip in Frame 29
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 29
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 30
levelProgressTracker();
stop();
Frame 31
everyFrame();
stop();
Instance of Symbol 205 MovieClip "ground" in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 265 MovieClip "slopeL" in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 272 MovieClip in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 268 MovieClip in Frame 31
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 31
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 32
levelProgressTracker();
stop();
Frame 33
everyFrame();
stop();
Instance of Symbol 205 MovieClip "ground" in Frame 33
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 33
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 33
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 33
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 33
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 34
levelProgressTracker();
stop();
Frame 35
everyFrame();
stop();
Instance of Symbol 265 MovieClip "slopeR" in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 292 MovieClip in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 265 MovieClip "slopeL" in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 35
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 35
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 36
levelProgressTracker();
stop();
Frame 37
everyFrame();
stop();
Instance of Symbol 228 MovieClip "slopeL" in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 265 MovieClip "slopeR" in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 272 MovieClip in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 37
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 37
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 38
levelProgressTracker();
stop();
Frame 39
everyFrame();
stop();
Instance of Symbol 228 MovieClip "slopeL" in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 265 MovieClip "slopeR" in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 39
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 39
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 40
levelProgressTracker();
stop();
Frame 41
everyFrame();
stop();
Instance of Symbol 294 MovieClip in Frame 41
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 41
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 41
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 41
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 277 MovieClip in Frame 41
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 41
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 42
stopAllSounds();
cutMusicSound.start();
cutMusicSound.setVolume(currentVolume - 30);
levelProgressTracker();
stop();
Instance of Symbol 168 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay(_root._currentframe + 1);
}
}
Frame 49
stopAllSounds();
music1Sound.start();
music1Sound.setVolume(currentVolume);
stop();
Frame 50
everyFrame();
stop();
Instance of Symbol 196 MovieClip in Frame 50
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 196 MovieClip in Frame 50
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 199 MovieClip "paralaxin" in Frame 50
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 202 MovieClip "paralaxin" in Frame 50
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.1) + paraStartX;
this._y = (_root.myDude._y * -0.1) + paraStartY;
}
Instance of Symbol 309 MovieClip "ground" in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 294 MovieClip in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 50
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 50
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 51
levelProgressTracker();
stop();
Frame 52
everyFrame();
stop();
Instance of Symbol 309 MovieClip "ground" in Frame 52
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 315 MovieClip "wallL" in Frame 52
/* no clip actions */
Instance of Symbol 294 MovieClip in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 52
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 52
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 53
levelProgressTracker();
stop();
Frame 54
everyFrame();
stop();
Instance of Symbol 213 MovieClip "slopeL" in Frame 54
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 54
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 315 MovieClip "wallL" in Frame 54
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 54
/* no clip actions */
Instance of Symbol 294 MovieClip in Frame 54
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 54
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 54
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 55
levelProgressTracker();
stop();
Frame 56
everyFrame();
stop();
Instance of Symbol 213 MovieClip "slopeL" in Frame 56
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 56
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 315 MovieClip "wallL" in Frame 56
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 56
/* no clip actions */
Instance of Symbol 309 MovieClip "ground" in Frame 56
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 328 MovieClip in Frame 56
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 56
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 57
levelProgressTracker();
stop();
Frame 58
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 58
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 58
/* no clip actions */
Instance of Symbol 309 MovieClip "ground" in Frame 58
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 58
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 58
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 58
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 58
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 59
levelProgressTracker();
stop();
Frame 60
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 60
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 60
/* no clip actions */
Instance of Symbol 228 MovieClip "slopeL" in Frame 60
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 60
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 60
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 61
levelProgressTracker();
stop();
Frame 62
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 62
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 62
/* no clip actions */
Instance of Symbol 309 MovieClip "ground" in Frame 62
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 62
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 63
levelProgressTracker();
stop();
Frame 64
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 64
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 64
/* no clip actions */
Instance of Symbol 234 MovieClip in Frame 64
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 64
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 328 MovieClip in Frame 64
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 64
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 65
levelProgressTracker();
stop();
Frame 66
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 66
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 66
/* no clip actions */
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 265 MovieClip "slopeR" in Frame 66
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 66
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 66
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 66
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 67
levelProgressTracker();
stop();
Frame 68
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 68
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 68
/* no clip actions */
Instance of Symbol 294 MovieClip in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 265 MovieClip "slopeR" in Frame 68
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 68
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 68
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 68
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 69
levelProgressTracker();
stop();
Frame 70
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 70
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 70
/* no clip actions */
Instance of Symbol 228 MovieClip "slopeL" in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 70
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 70
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 277 MovieClip in Frame 70
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 70
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 71
levelProgressTracker();
stop();
Frame 72
everyFrame();
stop();
Instance of Symbol 315 MovieClip "wallL" in Frame 72
/* no clip actions */
Instance of Symbol 315 MovieClip "wallR" in Frame 72
/* no clip actions */
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 72
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
}
}
}
Instance of Symbol 328 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 72
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 73
stopAllSounds();
cutMusicSound.start();
cutMusicSound.setVolume(currentVolume - 30);
levelProgressTracker();
stop();
Instance of Symbol 168 MovieClip in Frame 73
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay(_root._currentframe + 1);
}
}
Frame 83
stopAllSounds();
music1Sound.start();
music1Sound.setVolume(currentVolume);
stop();
Frame 84
everyFrame();
stop();
Instance of Symbol 196 MovieClip in Frame 84
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 196 MovieClip in Frame 84
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 199 MovieClip "paralaxin" in Frame 84
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.05) + paraStartX;
this._y = (_root.myDude._y * -0.05) + paraStartY;
}
Instance of Symbol 202 MovieClip "paralaxin" in Frame 84
onClipEvent (load) {
paraStartX = this._x;
paraStartY = this._y + 30;
}
onClipEvent (enterFrame) {
this._x = (_root.myDude._x * -0.1) + paraStartX;
this._y = (_root.myDude._y * -0.1) + paraStartY;
}
Instance of Symbol 228 MovieClip in Frame 84
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Frame 84
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 84
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 84
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 365 MovieClip "platform" in Frame 84
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 84
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 84
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 85
levelProgressTracker();
stop();
Frame 86
everyFrame();
stop();
Instance of Symbol 365 MovieClip "platform" in Frame 86
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 300;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 86
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 86
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 86
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 86
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 86
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 86
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 86
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 86
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 87
levelProgressTracker();
stop();
Frame 88
everyFrame();
stop();
Instance of Symbol 365 MovieClip "platform" in Frame 88
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 365 MovieClip "platform2" in Frame 88
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 294 MovieClip in Frame 88
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 88
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 88
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 88
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 88
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 88
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 89
levelProgressTracker();
stop();
Frame 90
everyFrame();
stop();
Instance of Symbol 365 MovieClip "platform2" in Frame 90
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 294 MovieClip in Frame 90
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 90
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 90
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 213 MovieClip "slopeL" in Frame 90
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Frame 90
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 372 MovieClip "platform" in Frame 90
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 90
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 91
levelProgressTracker();
stop();
Frame 92
everyFrame();
stop();
Instance of Symbol 294 MovieClip in Frame 92
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 92
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 92
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 375 MovieClip in Frame 92
/* no clip actions */
Instance of Symbol 265 MovieClip "slopeL" in Frame 92
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 372 MovieClip "platform" in Frame 92
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 376 MovieClip "platform2" in Frame 92
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 92
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 93
levelProgressTracker();
stop();
Frame 94
everyFrame();
stop();
Instance of Symbol 376 MovieClip "platform2" in Frame 94
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 294 MovieClip in Frame 94
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 94
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 228 MovieClip in Frame 94
/* no clip actions */
Instance of Symbol 209 MovieClip in Frame 94
onClipEvent (load) {
startY = this._y;
endY = this._y - 150;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Instance of Symbol 372 MovieClip "platform" in Frame 94
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 94
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 95
levelProgressTracker();
stop();
Frame 96
everyFrame();
stop();
Instance of Symbol 376 MovieClip "platform2" in Frame 96
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 372 MovieClip in Frame 96
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 96
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 209 MovieClip in Frame 96
onClipEvent (load) {
startY = this._y;
endY = this._y - 200;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Instance of Symbol 209 MovieClip in Frame 96
/* no clip actions */
Instance of Symbol 234 MovieClip in Frame 96
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 320 MovieClip "transB" in Frame 96
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 450;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 365 MovieClip "platform" in Frame 96
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 300;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 209 MovieClip in Frame 96
/* no clip actions */
Instance of Symbol 209 MovieClip in Frame 96
/* no clip actions */
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 96
onClipEvent (enterFrame) {
_level0.charMove();
}
Instance of Symbol 328 MovieClip in Frame 96
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Frame 97
levelProgressTracker();
stop();
Frame 98
everyFrame();
stop();
Instance of Symbol 376 MovieClip "platform2" in Frame 98
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 372 MovieClip in Frame 98
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 309 MovieClip "ground" in Frame 98
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 209 MovieClip in Frame 98
onClipEvent (load) {
startY = this._y;
endY = this._y - 200;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Instance of Symbol 209 MovieClip in Frame 98
/* no clip actions */
Instance of Symbol 234 MovieClip in Frame 98
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 320 MovieClip "transB" in Frame 98
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 98
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 209 MovieClip in Frame 98
/* no clip actions */
Instance of Symbol 209 MovieClip in Frame 98
/* no clip actions */
Instance of Symbol 365 MovieClip "platform" in Frame 98
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 300;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 318 MovieClip "transA" in Frame 98
onClipEvent (load) {
startY = this._y;
endY = this._y - 100;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 98
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 99
levelProgressTracker();
stop();
Frame 100
everyFrame();
stop();
Instance of Symbol 294 MovieClip in Frame 100
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 100
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 375 MovieClip in Frame 100
/* no clip actions */
Instance of Symbol 265 MovieClip "slopeL" in Frame 100
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 372 MovieClip "platform" in Frame 100
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 318 MovieClip "transA" in Frame 100
onClipEvent (load) {
startY = this._y;
endY = this._y - 150;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Instance of Symbol 328 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 320 MovieClip "transB" in Frame 100
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 100
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 101
levelProgressTracker();
stop();
Frame 102
everyFrame();
stop();
Instance of Symbol 205 MovieClip "ground" in Frame 102
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 375 MovieClip in Frame 102
/* no clip actions */
Instance of Symbol 265 MovieClip "slopeL" in Frame 102
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 381 MovieClip in Frame 102
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 258 MovieClip in Frame 102
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip "yellowLock" in Frame 102
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 328 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 234 MovieClip in Frame 102
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 365 MovieClip "platform" in Frame 102
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 300;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 234 MovieClip in Frame 102
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 234 MovieClip in Frame 102
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 318 MovieClip "transA" in Frame 102
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 400;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 102
onClipEvent (enterFrame) {
_level0.charMove();
}
Instance of Symbol 257 MovieClip in Frame 102
onClipEvent (load) {
randxSpeed = Math.floor((Math.random() * 10) - 5);
randySpeed = Math.floor((Math.random() * 10) - 5);
}
onClipEvent (enterFrame) {
this._x = this._x + randxSpeed;
this._y = this._y + randySpeed;
if (this._x >= 512) {
this._x = 12;
} else if (this._x <= 0) {
this._x = 500;
}
if (this._y <= 0) {
this._y = 385;
} else if (this._y >= 400) {
this._y = 12;
}
}
Instance of Symbol 320 MovieClip "transB" in Frame 102
onClipEvent (load) {
startY = this._y;
endY = this._y - 150;
speed = -2;
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
if ((this._y >= startY) or (this._y <= endY)) {
speed = speed * -1;
}
}
Frame 103
levelProgressTracker();
stop();
Frame 104
everyFrame();
stop();
Instance of Symbol 393 MovieClip in Frame 104
onClipEvent (load) {
moveSpeed = 0.5;
}
onClipEvent (enterFrame) {
if (_root.myDude._x < (this._x - 5)) {
this._x = this._x - moveSpeed;
} else if (_root.myDude._x > (this._x + 5)) {
this._x = this._x + moveSpeed;
}
if ((_root.myDude._y - (_root.myDude._yscale / 2)) < (this._y - 5)) {
this._y = this._y - moveSpeed;
} else if ((_root.myDude._y - (_root.myDude._xscale / 2)) > (this._y + 5)) {
this._y = this._y + moveSpeed;
}
}
Instance of Symbol 294 MovieClip in Frame 104
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 294 MovieClip in Frame 104
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 205 MovieClip "ground" in Frame 104
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 265 MovieClip "slopeL" in Frame 104
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 365 MovieClip "platform2" in Frame 104
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x - 200;
endY = this._y;
speed = -2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x >= startX) or (this._x <= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 375 MovieClip in Frame 104
/* no clip actions */
Instance of Symbol 365 MovieClip "platform" in Frame 104
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 200;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 234 MovieClip in Frame 104
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 234 MovieClip in Frame 104
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 393 MovieClip in Frame 104
onClipEvent (load) {
moveSpeed = 0.8;
}
onClipEvent (enterFrame) {
if (_root.myDude._x < (this._x - 5)) {
this._x = this._x - moveSpeed;
} else if (_root.myDude._x > (this._x + 5)) {
this._x = this._x + moveSpeed;
}
if ((_root.myDude._y - (_root.myDude._yscale / 2)) < (this._y - 5)) {
this._y = this._y - moveSpeed;
} else if ((_root.myDude._y - (_root.myDude._xscale / 2)) > (this._y + 5)) {
this._y = this._y + moveSpeed;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 104
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 105
levelProgressTracker();
stop();
Frame 106
everyFrame();
stop();
Instance of Symbol 309 MovieClip "ground" in Frame 106
onClipEvent (enterFrame) {
_level0.groundScript();
}
Instance of Symbol 396 MovieClip in Frame 106
/* no clip actions */
Instance of Symbol 234 MovieClip in Frame 106
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 234 MovieClip in Frame 106
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 328 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 294 MovieClip in Frame 106
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 209 MovieClip in Frame 106
/* no clip actions */
Instance of Symbol 209 MovieClip in Frame 106
/* no clip actions */
Instance of Symbol 234 MovieClip in Frame 106
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 393 MovieClip in Frame 106
onClipEvent (load) {
moveSpeed = 0.4;
}
onClipEvent (enterFrame) {
if (_root.myDude._x < (this._x - 5)) {
this._x = this._x - moveSpeed;
} else if (_root.myDude._x > (this._x + 5)) {
this._x = this._x + moveSpeed;
}
if ((_root.myDude._y - (_root.myDude._yscale / 2)) < (this._y - 5)) {
this._y = this._y - moveSpeed;
} else if ((_root.myDude._y - (_root.myDude._xscale / 2)) > (this._y + 5)) {
this._y = this._y + moveSpeed;
}
}
Instance of Symbol 234 MovieClip in Frame 106
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 365 MovieClip "platform" in Frame 106
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 300;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 318 MovieClip "transA" in Frame 106
onClipEvent (load) {
startX = this._x;
startY = this._y;
endX = this._x + 300;
endY = this._y;
speed = 2;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
if ((this._x <= startX) or (this._x >= endX)) {
speed = speed * -1;
}
}
Instance of Symbol 66 MovieClip [Player] "myDude" in Frame 106
onClipEvent (enterFrame) {
_level0.charMove();
}
Frame 107
finalTime = currentTimer;
stopAllSounds();
_level0.cutMusicSound.start();
_level0.cutMusicSound.setVolume(currentVolume - 30);
levelProgressTracker();
stop();
Instance of Symbol 168 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay(_root._currentframe + 1);
}
}
Frame 108
stop();
Symbol 43 MovieClip Frame 34
this.gotoAndStop(1);
_root.gotoAndPlay(_root._currentframe - 1);
stop();
Symbol 65 MovieClip Frame 11
stop();
Symbol 66 MovieClip [Player] Frame 1
stop();
Symbol 66 MovieClip [Player] Frame 2
_level0.deathSound.start();
_level0.dead = true;
_level0.bodyCount = _level0.bodyCount + 1;
stop();
Symbol 66 MovieClip [Player] Frame 3
stop();
Symbol 66 MovieClip [Player] Frame 4
stop();
Symbol 94 MovieClip Frame 181
randomSpeak = Math.floor(Math.random() * 10);
Instance of Symbol 90 MovieClip in Symbol 94 MovieClip Frame 181
onClipEvent (enterFrame) {
if ((_level2.percentReady == 100) && (_level10.percentReadyMusic == 100)) {
_root.gotoAndStop(4);
}
}
Symbol 94 MovieClip Frame 196
if (randomSpeak == 0) {
danSpeaks = "You know what I like about video games? They are like the ultimate combination of Art, Music, Animation, Programming, and Story.";
} else if (randomSpeak == 1) {
danSpeaks = "Is the soundtrack loading bar get stuck at 45% again? One of these days I've gotta get that fixed.";
} else if (randomSpeak == 2) {
danSpeaks = "So. Here we are. Um... This is a little akward. It should be starting any second now.";
} else if (randomSpeak == 3) {
danSpeaks = "When I was growing up games were hard. Seriously HARD. If you deviated from the path even a little - BOOM! Game over.";
} else if (randomSpeak == 4) {
danSpeaks = "I hate waiting. Could you do something to move this along a little? I'm getting a little bored.";
} else if (randomSpeak == 5) {
danSpeaks = "I'm hungry. Do you have anything I could munch on? -Sigh- I knew I should have had a snack earlier.";
} else if (randomSpeak == 6) {
danSpeaks = "What's it like out there on the 3rd dimension? Just kidding. I don't believe in other dimentions";
} else if (randomSpeak == 7) {
danSpeaks = "I've got nothing. Give me a couple of days to think of something funny to say, then come back to see the hilarity that insues.";
} else if (randomSpeak == 8) {
danSpeaks = "What's the same between a clock and a duck? They both tell time... Except for the duck.";
} else if (randomSpeak == 9) {
danSpeaks = "I am evil and games are good, so play more games like a player should. If the game is really great, play one more to celebrate.";
}
Symbol 94 MovieClip Frame 350
_root.gotoAndStop(_root._currentframe + 1);
stop();
Symbol 106 Button
on (release) {
_root.gotoAndPlay(17);
}
Symbol 107 Button
on (release) {
gotoAndPlay ("enterCode");
}
Symbol 121 Button
on (release) {
stopAllSounds();
music1Sound.start();
music1Sound.setVolume(currentVolume);
gotoAndPlay(inputCode);
}
Symbol 124 Button
on (release) {
gotoAndPlay ("mainmenu");
}
Symbol 164 MovieClip Frame 450
_root.gotoAndPlay(_root._currentframe + 1);
stop();
Instance of Symbol 166 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(17)) {
_root.gotoAndStop(_root._currentframe + 1);
} else if (Key.isDown(32)) {
_root.gotoAndStop(_root._currentframe + 1);
}
}
Symbol 177 Button
on (release) {
_root.gotoAndStop(_currentframe + 1);
}
Symbol 187 Button
on (release) {
if ((_level0.currentVolume > 0) && (_level0.currentVolume < 101)) {
music1Sound.setVolume((_level0.currentVolume = _level0.currentVolume - 10));
}
}
Symbol 188 Button
on (release) {
if ((_level0.currentVolume > -1) && (_level0.currentVolume < 100)) {
music1Sound.setVolume((_level0.currentVolume = _level0.currentVolume + 10));
}
}
Symbol 199 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 1
stop();
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 1
onClipEvent (load) {
deadDoor = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.myDude) && (_level0.dead == false)) {
_level0.finishSound.start();
_root.gotoAndStop(_root._currentframe + 1);
} else if ((this.hitTest(_root.myDude) && (_level0.dead == true)) && (deadDoor == false)) {
_level0.lillameSound.start();
deadDoor = true;
}
}
Instance of Symbol 69 MovieClip [myPlat1] in Symbol 209 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Symbol 213 MovieClip Frame 1
stop();
Instance of Symbol 213 MovieClip "slopeL" in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 216 MovieClip "slopeR" in Symbol 217 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 227 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 251 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 256 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.keySound.start();
_level0.haveKey = true;
unloadMovie (_root.yellowLock);
unloadMovie (this);
}
}
Instance of Symbol 207 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (load) {
deadDoor = false;
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.myDude) && (_level0.dead == false)) && (_level0.haveKey == true)) {
_level0.finishSound.start();
_root.gotoAndStop(_root._currentframe + 1);
} else if ((this.hitTest(_root.myDude) && (_level0.dead == true)) && (deadDoor == false)) {
_level0.lillameSound.start();
deadDoor = true;
}
}
Instance of Symbol 281 MovieClip in Symbol 287 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.myDude.hitTest(this)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Symbol 303 MovieClip Frame 450
_root.gotoAndPlay(_root._currentframe + 1);
stop();
Instance of Symbol 313 MovieClip in Symbol 318 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.myDude)) {
_level0.transportSound.start();
_root.myDude._x = _root.transB._x + 25;
_root.myDude._y = _root.transB._y + 40;
}
}
Instance of Symbol 315 MovieClip in Symbol 318 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.myDude)) {
_root.myDude._x = _root.myDude._x + 6;
}
}
Instance of Symbol 313 MovieClip "myHole" in Symbol 320 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.myDude)) {
_level0.transportSound.start();
_root.myDude._x = _root.transA._x - 25;
_root.myDude._y = _root.transA._y + 40;
}
}
Instance of Symbol 315 MovieClip in Symbol 320 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.myDude)) {
_root.myDude._x = _root.myDude._x - 6;
}
}
Symbol 360 MovieClip Frame 450
_root.gotoAndPlay(_root._currentframe + 1);
stop();
Instance of Symbol 364 MovieClip in Symbol 365 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
_x = _x + this._parent.speed;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
}
}
}
Instance of Symbol 364 MovieClip in Symbol 372 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
_x = _x + this._parent.speed;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
}
}
}
Instance of Symbol 227 MovieClip in Symbol 375 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
_x++;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 364 MovieClip in Symbol 376 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
_x = _x + this._parent.speed;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 381 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
}
while (this._parent.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
_level0.gravity = 0;
}
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 393 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 393 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 393 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 247 MovieClip "blackBox1" in Symbol 393 MovieClip Frame 1
onClipEvent (enterFrame) {
theXPositionOfThisMC = this._x + this._parent._x;
theYPositionOfThisMC = this._y + this._parent._y;
if (_root.myDude.hitTest(theXPositionOfThisMC, theYPositionOfThisMC, true)) {
_level0.dudeLife = _level0.dudeLife - 100;
}
}
Instance of Symbol 234 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
with (_root.myDude) {
if (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_level0.gravity = 0;
_x = _x + this._parent.speed;
}
while (this.hitTest(_x, _y, true)) {
_level0.jumping = false;
_y--;
intertia = 0;
}
}
}
Symbol 419 MovieClip Frame 515
stopAllSounds();
_level0.outroMusic.start();
_level0.outroMusic.setVolume(_level0.currentVolume);
Symbol 419 MovieClip Frame 937
_root.gotoAndPlay(_root._currentframe + 1);
Symbol 433 MovieClip Frame 160
stop();
Instance of Symbol 168 MovieClip in Symbol 433 MovieClip Frame 160
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay(1);
}
}