Frame 1
function button1(obj, item) {
_root._quality = "LOW";
Mouse.hide();
}
function button2(obj, item) {
_root._quality = "MEDIUM";
Mouse.hide();
}
function button3(obj, item) {
_root._quality = "HIGH";
Mouse.hide();
}
function button4(obj, item) {
sfx1 = new Sound();
sfx1.attachSound("sfx1");
sfx1.start();
sfx1.setVolume(0);
Mouse.hide();
}
function button5(obj, item) {
sfx1 = new Sound();
sfx1.attachSound("sfx1");
sfx1.start();
sfx1.setVolume(100);
Mouse.hide();
}
function button6(obj, item) {
getURL ("http://www.armorgames.com/", "_blank");
Mouse.hide();
}
function button7(obj, item) {
getURL ("http://www.eviludy.net/", "_blank");
Mouse.hide();
}
cm = new ContextMenu();
cm.hideBuiltInItems();
cm.customItems.push(new ContextMenuItem("Low Quality", button1));
cm.customItems.push(new ContextMenuItem("Medium Quality", button2));
cm.customItems.push(new ContextMenuItem("High Quality", button3));
cm.customItems.push(new ContextMenuItem("Turn sound off", button4));
cm.customItems.push(new ContextMenuItem("Turn sound on", button5));
cm.customItems.push(new ContextMenuItem("Play more games!", button6));
cm.customItems.push(new ContextMenuItem("Author's Site", button7));
cm.customItems[3].separatorBefore = true;
cm.customItems[5].separatorBefore = true;
_root.menu = cm;
stop();
Instance of Symbol 20 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.b_loaded = _root.getBytesLoaded();
_root.b_total = _root.getBytesTotal();
_root.percent = Math.round((_root.b_loaded / _root.b_total) * 100);
_width = (_root.percent * 3);
if (_root.percent == 100) {
_root.nextFrame();
}
}
Instance of Symbol 30 MovieClip in Frame 1
onClipEvent (enterFrame) {
_x = (209.3 + (_root.percent * 3));
_rotation = (_rotation+1);
}
Instance of Symbol 69 MovieClip "cursor" in Frame 2
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
this.startDrag();
Mouse.hide();
}
onClipEvent (mouseDown) {
Mouse.hide();
}
Frame 3
stop();
Frame 6
function swapBack() {
_root.player._x = _root.player._x + 715;
_root.swapper_back.play();
}
function swapNext() {
_root.player._x = _root.player._x - 715;
_root.swapper_next.play();
}
function playerHurtA() {
_root.player.hurt = true;
_root.player.hurtgo = 2;
}
function playerHurtB() {
_root.player.hurt = true;
_root.player.hurtgo = 1;
}
stop();
_root._quality = "MEDIUM";
stars = 0;
health = 450;
maxhealth = 450;
startgravity = 9.8;
gravity = startgravity;
supershoe = false;
turboshoe = false;
slot1 = 0;
slot2 = 0;
slot3 = 0;
slot4 = 0;
slot5 = 0;
slot6 = 0;
slot7 = 0;
area = 1;
_root.objective = "Collect all 70 power stars!";
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
itemer = new Array();
i = 1;
while (i < 5000) {
itemer[i] = 1;
i++;
}
enemyer = new Array();
i = 1;
while (i < 5000) {
enemyer[i] = 1;
i++;
}
Instance of Symbol 156 MovieClip "bg2" in Frame 6
onClipEvent (load) {
this.cacheAsBitmap = true;
}
Instance of Symbol 228 MovieClip "bg1" in Frame 6
onClipEvent (load) {
this.cacheAsBitmap = true;
}
Instance of Symbol 232 MovieClip "ground" in Frame 6
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 555 MovieClip "player" in Frame 6
onClipEvent (enterFrame) {
if (xSpeed < 2) {
xSpeed = 2;
}
if (Key.isDown(39)) {
_xscale = 100;
}
if (Key.isDown(37)) {
_xscale = -100;
}
if (walk_now == true) {
if (Key.isDown(39) && (hurt == false)) {
if (jumping) {
_x = (_x + xSpeed);
}
if (((_root.curFram == 3) && (_xscale == -100)) && (!jumping)) {
this.gotoAndStop(4);
}
if (_root.curFram == 1) {
_xscale = 100;
}
} else if (Key.isDown(37) && (hurt == false)) {
if (jumping) {
_x = (_x - xSpeed);
}
if (((_root.curFram == 3) && (_xscale == 100)) && (!jumping)) {
this.gotoAndStop(4);
}
if (_root.curFram == 1) {
_xscale = -100;
}
}
if (Key.isDown(38) && (!jumping)) {
if (!Key.isDown(16)) {
vel_y = 37;
} else if (Key.isDown(16)) {
if (_root.turboshoe == true) {
vel_y = 45;
} else if (_root.supershoe == true) {
vel_y = 42;
} else if ((_root.supershoe != true) && (_root.turboshoe != true)) {
vel_y = 37;
}
}
jumping = true;
stopjump = false;
if (Key.isDown(37) || (Key.isDown(39))) {
this.gotoAndStop(6);
} else {
this.gotoAndStop(8);
}
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -10) {
vel_y = -10;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y, true) && (jumping == true)) {
vel_y = 0;
this.gotoAndStop(7);
jumping = false;
xSpeed = 2;
}
this._y = this._y + 15;
if ((jumping == false) && (!_root.ground.hitTest(this._x, this._y, true))) {
jumping = true;
vel_y = -10;
}
if (_root.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 15;
}
if (_root.health < 0) {
_root.health = 0;
}
if (_x < 0) {
if (_root.area == 1) {
_x = 0;
} else {
_root.area--;
_root.swapBack();
}
}
if (_x > 720) {
if (_root.area == 75) {
_x = 720;
} else if ((_root.area == 69) && (_root.stars < 70)) {
_x = 720;
} else if (_root.area == 71) {
if (_root.enemyer[114] == 1) {
_x = 720;
} else {
_root.area++;
_root.swapNext();
}
} else if (_root.area == 72) {
if (_root.enemyer[115] == 1) {
_x = 720;
} else {
_root.area++;
_root.swapNext();
}
} else if (_root.area == 73) {
if (_root.enemyer[116] == 1) {
_x = 720;
} else {
_root.area++;
_root.swapNext();
}
} else if (_root.area == 74) {
if (_root.enemyer[116] == 1) {
_x = 720;
} else {
_root.area++;
_root.swapNext();
}
} else {
_root.area++;
_root.swapNext();
}
}
if (hurt == true) {
_root.undermessage = "Ouch!";
hurtsound.play();
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_alpha = 75;
if (hurtgo == 1) {
_x = (_x + hurt_subtract);
hurt_subtract--;
if (hurt_subtract == 0) {
hurt = false;
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
_alpha = 100;
hurt_subtract = 15;
}
}
if (hurtgo == 2) {
_x = (_x - hurt_subtract);
hurt_subtract--;
if (hurt_subtract == 0) {
hurt = false;
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
_alpha = 100;
hurt_subtract = 15;
}
}
}
if (((((((_root.slot1 == 1) || (_root.slot2 == 1)) || (_root.slot3 == 1)) || (_root.slot4 == 1)) || (_root.slot5 == 1)) || (_root.slot6 == 1)) || (_root.slot7 == 1)) {
_root.supershoe = true;
} else if (((((((_root.slot1 != 1) && (_root.slot2 != 1)) && (_root.slot3 != 1)) && (_root.slot4 != 1)) && (_root.slot5 != 1)) && (_root.slot6 != 1)) && (_root.slot7 != 1)) {
_root.supershoe = false;
}
if (((((((_root.slot1 == 4) || (_root.slot2 == 4)) || (_root.slot3 == 4)) || (_root.slot4 == 4)) || (_root.slot5 == 4)) || (_root.slot6 == 4)) || (_root.slot7 == 4)) {
_root.turboshoe = true;
} else if (((((((_root.slot1 != 4) && (_root.slot2 != 4)) && (_root.slot3 != 4)) && (_root.slot4 != 4)) && (_root.slot5 != 4)) && (_root.slot6 != 4)) && (_root.slot7 != 4)) {
_root.turboshoe = false;
}
if (((_y > 430) && (_y < 450)) && (jumping == false)) {
_y = 450;
}
if (((jumping == true) && (vel_y < 0)) && (stopjump == false)) {
falling = true;
} else {
falling = false;
}
}
if (_root.health > _root.maxhealth) {
_root.health = _root.maxhealth;
}
if (_root.stars == 70) {
_root.objective = "Rescue the Girl!";
}
if (_root.health < 1) {
stopAllSounds();
_root.fer.play();
}
}
onClipEvent (load) {
walk_now = true;
stopjump = false;
falling = false;
hurt_subtract = 15;
hurt = false;
damagestyle = false;
xSpeed = 2;
grav_y = 0;
jumping = false;
}
Instance of Symbol 643 MovieClip "foreground" in Frame 6
onClipEvent (load) {
this.cacheAsBitmap = true;
}
Frame 8
stopAllSounds();
Instance of Symbol 742 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gotoAndStop(_root._currentframe - 6);
}
}
Symbol 38 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 41 Button
on (release) {
getURL ("http://www.eviludy.net", "_blank");
}
Symbol 57 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 64 MovieClip Frame 121
_root.play();
_root.nextFrame();
Symbol 80 Button
on (release) {
stopAllSounds();
gotoAndStop (5);
}
Symbol 81 Button
on (release) {
nextFrame();
}
Symbol 82 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 83 Button
on (release) {
getURL ("http://www.eviludy.net", "_blank");
}
Symbol 98 Button
on (release) {
_root.prevFrame();
}
Symbol 125 Button
on (release) {
_root.nextFrame();
}
Symbol 156 MovieClip Frame 1
_root.lelocation = "Spring area - Daytime";
stop();
Symbol 156 MovieClip Frame 7
_root.lelocation = "Spring area - Daytime";
Symbol 156 MovieClip Frame 8
_root.lelocation = "Spring area - Evening";
Symbol 156 MovieClip Frame 15
_root.lelocation = "Spring area - Evening";
Symbol 156 MovieClip Frame 16
_root.lelocation = "Spring area - Nighttime";
Symbol 156 MovieClip Frame 20
_root.lelocation = "Spring area - Nighttime";
Symbol 156 MovieClip Frame 21
_root.lelocation = "Summer area - Overflow";
Symbol 156 MovieClip Frame 22
_root.lelocation = "Summer area - Daytime";
Symbol 156 MovieClip Frame 28
_root.lelocation = "Summer area - Daytime";
Symbol 156 MovieClip Frame 29
_root.lelocation = "Summer area - Twilight";
Symbol 156 MovieClip Frame 35
_root.lelocation = "Summer area - Twilight";
Symbol 156 MovieClip Frame 36
_root.lelocation = "Summer area - Nighttime";
Symbol 156 MovieClip Frame 45
_root.lelocation = "Summer area - Nighttime";
Symbol 156 MovieClip Frame 46
_root.lelocation = "Autumn area - Overflow";
Symbol 156 MovieClip Frame 47
_root.lelocation = "Autumn area - Daytime";
Symbol 156 MovieClip Frame 49
_root.lelocation = "Autumn area - Daytime";
Symbol 156 MovieClip Frame 50
_root.lelocation = "Autumn area - Evening";
Symbol 156 MovieClip Frame 54
_root.lelocation = "Autumn area - Evening";
Symbol 156 MovieClip Frame 55
_root.lelocation = "Autumn area - Nighttime";
Symbol 156 MovieClip Frame 59
_root.lelocation = "Autumn area - Nighttime";
Symbol 156 MovieClip Frame 60
_root.lelocation = "Winter area - Overflow";
Symbol 156 MovieClip Frame 61
_root.lelocation = "Winter area - Daytime";
Symbol 156 MovieClip Frame 63
_root.lelocation = "Winter area - Daytime";
Symbol 156 MovieClip Frame 64
_root.lelocation = "Winter area - Evening";
Symbol 156 MovieClip Frame 70
_root.lelocation = "Winter area - Evening";
Symbol 156 MovieClip Frame 71
_root.lelocation = "The Clouds";
Symbol 228 MovieClip Frame 1
stop();
Symbol 232 MovieClip Frame 1
stop();
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 42
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 42
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 43
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 44
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 44
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 48
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 61
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 61
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 65
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Instance of Symbol 230 MovieClip in Symbol 232 MovieClip Frame 65
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.head)) {
_root.player.vel_y = 0;
}
}
Symbol 238 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 61
stop();
Symbol 248 MovieClip Frame 1
_parent.qx = 1;
Symbol 248 MovieClip Frame 4
_parent.qx = 2;
Symbol 248 MovieClip Frame 7
_parent.qx = 3;
Symbol 248 MovieClip Frame 10
_parent.qx = 4;
Symbol 248 MovieClip Frame 13
_parent.qx = 5;
Symbol 248 MovieClip Frame 16
_parent.qx = 6;
Symbol 248 MovieClip Frame 19
_parent.qx = 7;
Symbol 248 MovieClip Frame 22
_parent.qx = 8;
Symbol 248 MovieClip Frame 25
_parent.qx = 9;
Symbol 272 MovieClip Frame 57
stop();
Symbol 273 MovieClip Frame 1
stop();
Instance of Symbol 272 MovieClip in Symbol 273 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 282 MovieClip Frame 35
stop();
Symbol 283 MovieClip Frame 1
stop();
Symbol 284 MovieClip Frame 1
stop();
Symbol 284 MovieClip Frame 48
stop();
Symbol 291 MovieClip Frame 32
_root.stars++;
Symbol 291 MovieClip Frame 62
_root.stars++;
Symbol 291 MovieClip Frame 92
_root.stars++;
Symbol 291 MovieClip Frame 122
_root.stars++;
Symbol 291 MovieClip Frame 152
_root.stars++;
Symbol 291 MovieClip Frame 170
_root.player.walk_now = true;
_parent.gotoAndStop(3);
Symbol 292 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 1
stop();
Instance of Symbol 238 MovieClip in Symbol 296 MovieClip Frame 51
onClipEvent (load) {
itemnum = 5;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Symbol 296 MovieClip Frame 68
stop();
Instance of Symbol 238 MovieClip in Symbol 296 MovieClip Frame 68
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
_root.enemyer[_parent._parent.enemynum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 5;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Symbol 296 MovieClip Frame 69
prevFrame();
Instance of Symbol 296 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (_parent.living == 1)) {
this.play();
_parent.stop();
}
}
Symbol 297 MovieClip Frame 39
stop();
Symbol 307 MovieClip Frame 1
_parent.qx = 1;
Symbol 307 MovieClip Frame 5
_parent.qx = 2;
Symbol 307 MovieClip Frame 9
_parent.qx = 3;
Symbol 307 MovieClip Frame 13
_parent.qx = 4;
Symbol 307 MovieClip Frame 17
_parent.qx = 5;
Symbol 307 MovieClip Frame 21
_parent.qx = 6;
Symbol 307 MovieClip Frame 25
_parent.qx = 7;
Symbol 307 MovieClip Frame 29
_parent.qx = 8;
Symbol 307 MovieClip Frame 33
_parent.qx = 9;
Symbol 307 MovieClip Frame 37
_parent.qx = 10;
Symbol 307 MovieClip Frame 41
_parent.qx = 11;
Symbol 307 MovieClip Frame 45
_parent.qx = 12;
Symbol 309 MovieClip Frame 35
stop();
Symbol 310 MovieClip Frame 1
stop();
Instance of Symbol 309 MovieClip in Symbol 310 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 311 MovieClip Frame 1
stop();
Symbol 311 MovieClip Frame 48
stop();
Symbol 312 MovieClip Frame 1
stop();
Symbol 312 MovieClip Frame 48
stop();
Symbol 317 MovieClip Frame 1
_parent.qx = 1;
Symbol 317 MovieClip Frame 4
_parent.qx = 2;
Symbol 317 MovieClip Frame 7
_parent.qx = 3;
Symbol 317 MovieClip Frame 10
_parent.qx = 4;
Symbol 317 MovieClip Frame 19
_parent.qx = 5;
Symbol 318 MovieClip Frame 4
_root.stars++;
Symbol 318 MovieClip Frame 41
stop();
Symbol 319 MovieClip Frame 1
stop();
Instance of Symbol 313 MovieClip "hitter" in Symbol 319 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 318 MovieClip in Symbol 319 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 329 MovieClip Frame 1
_parent.qx = 1;
Symbol 329 MovieClip Frame 4
_parent.qx = 2;
Symbol 329 MovieClip Frame 7
_parent.qx = 3;
Symbol 329 MovieClip Frame 10
_parent.qx = 4;
Symbol 329 MovieClip Frame 13
_parent.qx = 5;
Symbol 329 MovieClip Frame 16
_parent.qx = 6;
Symbol 329 MovieClip Frame 19
_parent.qx = 7;
Symbol 329 MovieClip Frame 22
_parent.qx = 8;
Symbol 329 MovieClip Frame 25
_parent.qx = 9;
Symbol 350 MovieClip Frame 57
stop();
Symbol 351 MovieClip Frame 1
stop();
Instance of Symbol 350 MovieClip in Symbol 351 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 354 MovieClip Frame 1
stop();
Symbol 354 MovieClip Frame 48
stop();
Symbol 355 MovieClip Frame 1
stop();
Instance of Symbol 350 MovieClip in Symbol 355 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 356 MovieClip Frame 1
stop();
Instance of Symbol 238 MovieClip in Symbol 356 MovieClip Frame 51
onClipEvent (load) {
itemnum = 251;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Symbol 356 MovieClip Frame 68
stop();
Instance of Symbol 238 MovieClip in Symbol 356 MovieClip Frame 68
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
_root.enemyer[_parent._parent.enemynum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 251;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Symbol 356 MovieClip Frame 69
prevFrame();
Instance of Symbol 356 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (_parent.living == 1)) {
this.play();
_parent.stop();
}
}
Symbol 357 MovieClip Frame 39
stop();
Symbol 439 MovieClip Frame 81
stop();
Symbol 440 MovieClip Frame 1
stop();
Instance of Symbol 313 MovieClip "hitter" in Symbol 440 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 446 MovieClip Frame 1
_parent.qx = 1;
Symbol 446 MovieClip Frame 4
_parent.qx = 2;
Symbol 446 MovieClip Frame 7
_parent.qx = 3;
Symbol 446 MovieClip Frame 10
_parent.qx = 4;
Symbol 446 MovieClip Frame 19
_parent.qx = 5;
Symbol 447 MovieClip Frame 41
stop();
Symbol 448 MovieClip Frame 1
stop();
Instance of Symbol 313 MovieClip "hitter" in Symbol 448 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 447 MovieClip in Symbol 448 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 501 MovieClip Frame 36
stop();
Symbol 502 MovieClip Frame 1
stop();
Instance of Symbol 465 MovieClip in Symbol 502 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
_parent.gotoAndStop(4);
}
if (Key.isDown(39)) {
if (Key.isDown(16)) {
if ((_root.supershoe == false) && (_root.turboshoe == false)) {
_parent._x = _parent._x + _parent.xSpeed;
} else if (_root.supershoe == true) {
_parent._x = _parent._x + (_parent.xSpeed * 1.5);
} else if (_root.turboshoe == true) {
_parent._x = _parent._x + (_parent.xSpeed * 1.7);
}
} else {
_parent._x = _parent._x + _parent.xSpeed;
}
} else if (Key.isDown(37)) {
if (Key.isDown(16)) {
if ((_root.supershoe == false) && (_root.turboshoe == false)) {
_parent._x = _parent._x - _parent.xSpeed;
} else if (_root.supershoe == true) {
_parent._x = _parent._x - (_parent.xSpeed * 1.5);
} else if (_root.turboshoe == true) {
_parent._x = _parent._x - (_parent.xSpeed * 1.7);
}
} else {
_parent._x = _parent._x - _parent.xSpeed;
}
}
}
}
Instance of Symbol 313 MovieClip "hitter" in Symbol 502 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 502 MovieClip Frame 40
gotoAndStop (1);
Instance of Symbol 501 MovieClip in Symbol 502 MovieClip Frame 41
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
_parent.xSpeed = _parent.xSpeed + 2;
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
_parent.gotoAndStop(4);
}
if (Key.isDown(39)) {
_parent._x = _parent._x + _parent.xSpeed;
} else if (Key.isDown(37)) {
_parent._x = _parent._x - _parent.xSpeed;
}
}
}
Symbol 511 MovieClip Frame 1
_parent.qx = 1;
Symbol 511 MovieClip Frame 4
_parent.qx = 2;
Symbol 511 MovieClip Frame 7
_parent.qx = 3;
Symbol 511 MovieClip Frame 10
_parent.qx = 4;
Symbol 511 MovieClip Frame 19
_parent.qx = 5;
Symbol 512 MovieClip Frame 41
stop();
Symbol 513 MovieClip Frame 1
stop();
Instance of Symbol 313 MovieClip "hitter" in Symbol 513 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 512 MovieClip in Symbol 513 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(_parent.qx);
}
Symbol 514 MovieClip Frame 1
stop();
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 1;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 3;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 2
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 150;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 1;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 2
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 150;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 2;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 4;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 3
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 72;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4000;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 6;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 7;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 4
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 220;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 284 MovieClip in Symbol 514 MovieClip Frame 5
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found Activity stimulation pills!";
live = 0;
this.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 1;
_root.reciever.play();
} else if (_root.slot2 == 0) {
_root.slot2 = 1;
_root.reciever.play();
} else if (_root.slot3 == 0) {
_root.slot3 = 1;
_root.reciever.play();
} else if (_root.slot4 == 0) {
_root.slot4 = 1;
_root.reciever.play();
} else if (_root.slot5 == 0) {
_root.slot5 = 1;
_root.reciever.play();
} else if (_root.slot6 == 0) {
_root.slot6 = 1;
_root.reciever.play();
} else if (_root.slot7 == 0) {
_root.slot7 = 1;
_root.reciever.play();
}
}
}
}
onClipEvent (load) {
itemnum = 2;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 9;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 5;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 6;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 7;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 8;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 9;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 6
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 10;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 8;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 10;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 11;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 12;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 13;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 14;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 15;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 8
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 16;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 292 MovieClip in Symbol 514 MovieClip Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
if (Key.isDown(32)) {
if (_root.slot1 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot1 = 0;
} else if (_root.slot2 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot2 = 0;
} else if (_root.slot3 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot3 = 0;
} else if (_root.slot4 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot4 = 0;
} else if (_root.slot5 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot5 = 0;
} else if (_root.slot6 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot6 = 0;
} else if (_root.slot7 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot7 = 0;
}
}
}
}
onClipEvent (load) {
itemnum = 13;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
this.gotoAndStop(3);
}
}
Instance of Symbol 297 MovieClip in Symbol 514 MovieClip Frame 10
onClipEvent (load) {
enemynum = 3;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 15;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 11
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 230;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 9;
enemynum = 41;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 11
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 230;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 9;
enemynum = 41;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 16;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 12
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 230;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 9;
enemynum = 42;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 12
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 230;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 9;
enemynum = 43;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 13
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 40;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 13
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 17;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 13
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 18;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 13
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 19;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 11;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 20;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 23;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 21;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 22;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 15
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 24;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 15
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 27;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 15
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 25;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 15
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 26;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 14;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 16
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 28;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 16
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 31;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 16
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 29;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 16
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 30;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 311 MovieClip in Symbol 514 MovieClip Frame 17
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a golden key!";
live = 0;
this.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 2;
_root.reciever.play();
} else if (_root.slot2 == 0) {
_root.slot2 = 2;
_root.reciever.play();
} else if (_root.slot3 == 0) {
_root.slot3 = 2;
_root.reciever.play();
} else if (_root.slot4 == 0) {
_root.slot4 = 2;
_root.reciever.play();
} else if (_root.slot5 == 0) {
_root.slot5 = 2;
_root.reciever.play();
} else if (_root.slot6 == 0) {
_root.slot6 = 2;
_root.reciever.play();
} else if (_root.slot7 == 0) {
_root.slot7 = 2;
_root.reciever.play();
}
}
}
}
onClipEvent (load) {
itemnum = 12;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 17
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 32;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 17
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 35;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 17
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 33;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 17
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 34;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 18
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 36;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 18
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 39;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 18
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 37;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 18
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 38;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 19
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 17;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 319 MovieClip in Symbol 514 MovieClip Frame 20
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 4;
distance = 150;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter2.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter3.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
healthx--;
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_root.player.vel_y = 36;
_root.player.falling = false;
if (healthx == 0) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
} else {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
}
}
}
onClipEvent (load) {
damager = 10;
enemynum = 44;
healthx = 10;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 18;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 22
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 72;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4002;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 22
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 33;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4001;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 41;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 42;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 81;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 84;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 82;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 23
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 83;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 19;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 25
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 85;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 25
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 250;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 88;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 25
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 86;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 25
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 87;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 20;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 26
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 46;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 26
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 47;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 26
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 54;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 27
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 55;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 43;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 28
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 56;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 40;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 30
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 44;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 31
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 47;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 21;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 22;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 32
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 48;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 32
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 49;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 23;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 33
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 50;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 33
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 51;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 34
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 48;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 34
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 52;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 34
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 6;
enemynum = 53;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 72;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 68;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 69;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 70;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 71;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 72;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 36
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 73;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 30;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 37
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 57;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 38
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 24;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 38
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 58;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 38
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 59;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 39
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 175;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 10;
enemynum = 61;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 40
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 25;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 40
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 68;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 310 MovieClip in Symbol 514 MovieClip Frame 40
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 1;
distance = 175;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 10;
enemynum = 62;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 41
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 67;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 42
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 29;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 42
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 4;
distance = 60;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 63;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 42
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 4;
distance = 60;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 64;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 43
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 71;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 43
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 65;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 65;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 43
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 65;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 66;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 44
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 27;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 44
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 26;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 44
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 28;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 354 MovieClip in Symbol 514 MovieClip Frame 44
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 1) || (_root.slot2 == 1)) || (_root.slot3 == 1)) || (_root.slot4 == 1)) || (_root.slot5 == 1)) || (_root.slot6 == 1)) || (_root.slot7 == 1)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found Super Activity stimulation pills!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 1) {
_root.slot1 = 4;
} else if (_root.slot2 == 1) {
_root.slot2 = 4;
} else if (_root.slot3 == 1) {
_root.slot3 = 4;
} else if (_root.slot4 == 1) {
_root.slot4 = 4;
} else if (_root.slot5 == 1) {
_root.slot5 = 4;
} else if (_root.slot6 == 1) {
_root.slot6 = 4;
} else if (_root.slot7 == 1) {
_root.slot7 = 4;
}
}
}
}
onClipEvent (load) {
itemnum = 46;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 351 MovieClip in Symbol 514 MovieClip Frame 44
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 140;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 60;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 292 MovieClip in Symbol 514 MovieClip Frame 46
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
if (Key.isDown(32)) {
if (_root.slot1 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot1 = 0;
} else if (_root.slot2 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot2 = 0;
} else if (_root.slot3 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot3 = 0;
} else if (_root.slot4 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot4 = 0;
} else if (_root.slot5 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot5 = 0;
} else if (_root.slot6 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot6 = 0;
} else if (_root.slot7 == 2) {
_root.player.walk_now = false;
_root.player.gotoAndStop(1);
_root.undermessage = "Opening chest...";
live = 0;
_root.itemer[itemnum] = 0;
this.gotoAndStop(2);
_root.slot7 = 0;
}
}
}
}
onClipEvent (load) {
itemnum = 260;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
this.gotoAndStop(3);
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 66;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 47
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 74;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 48
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 67;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 48
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 48
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 70;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 77;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 49
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 74;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 49
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 75;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 49
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 72;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4003;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 49;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 50;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 73;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 110;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 78;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 110;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 79;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 110;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 80;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 50
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 81;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 51
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 51;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 51
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 70;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 90;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 52;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 52
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 70;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 91;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 53;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 53
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 75;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 53
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 35;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4006;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 54
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 54;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 54
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 72;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4005;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 55
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 55;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 55
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 40;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 92;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 357 MovieClip in Symbol 514 MovieClip Frame 56
onClipEvent (load) {
enemynum = 250;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 56;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 58
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 70;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 58
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 93;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 59
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 57;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 286 MovieClip in Symbol 514 MovieClip Frame 59
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
}
}
onClipEvent (load) {
damager = 6;
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 61
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 58;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 62
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 69;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 62
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 95;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 62
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 96;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 62
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 97;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 62
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 98;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 63
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 59;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 63
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 60;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 63
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 70;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 100;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 355 MovieClip in Symbol 514 MovieClip Frame 63
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6.4;
distance = 70;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 11;
enemynum = 101;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 311 MovieClip in Symbol 514 MovieClip Frame 63
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a golden key!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 2;
} else if (_root.slot2 == 0) {
_root.slot2 = 2;
} else if (_root.slot3 == 0) {
_root.slot3 = 2;
} else if (_root.slot4 == 0) {
_root.slot4 = 2;
} else if (_root.slot5 == 0) {
_root.slot5 = 2;
} else if (_root.slot6 == 0) {
_root.slot6 = 2;
} else if (_root.slot7 == 0) {
_root.slot7 = 2;
}
}
}
}
onClipEvent (load) {
itemnum = 261;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 64
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 262;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 65
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 61;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 65
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 103;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 65
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 104;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 65
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 105;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 65
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 106;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 66
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 62;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 66
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 662;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 66
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 107;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 66
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 108;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 66
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 55;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4009;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 67
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 63;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 312 MovieClip in Symbol 514 MovieClip Frame 67
onClipEvent (enterFrame) {
if (((((((_root.slot1 == 0) || (_root.slot2 == 0)) || (_root.slot3 == 0)) || (_root.slot4 == 0)) || (_root.slot5 == 0)) || (_root.slot6 == 0)) || (_root.slot7 == 0)) {
if (this.hitTest(_root.player.hitpoint) && (live == 1)) {
_root.undermessage = "You found a health vial!";
live = 0;
this.play();
_root.reciever.play();
_root.itemer[itemnum] = 0;
if (_root.slot1 == 0) {
_root.slot1 = 3;
} else if (_root.slot2 == 0) {
_root.slot2 = 3;
} else if (_root.slot3 == 0) {
_root.slot3 = 3;
} else if (_root.slot4 == 0) {
_root.slot4 = 3;
} else if (_root.slot5 == 0) {
_root.slot5 = 3;
} else if (_root.slot6 == 0) {
_root.slot6 = 3;
} else if (_root.slot7 == 0) {
_root.slot7 = 3;
}
}
}
}
onClipEvent (load) {
itemnum = 562;
if (_root.itemer[itemnum] == 1) {
live = 1;
} else {
live = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 67
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 110;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 67
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 109;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 67
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 55;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4008;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 68
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 64;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 68
onClipEvent (load) {
startdirection = 1;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 111;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 514 MovieClip Frame 68
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 2;
distance = 80;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 112;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 283 MovieClip in Symbol 514 MovieClip Frame 68
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 9;
distance = 55;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
}
}
onClipEvent (load) {
damager = 5;
enemynum = 4010;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 238 MovieClip in Symbol 514 MovieClip Frame 69
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint) && (starlive == 1)) {
_root.undermessage = "Congratulations! You recovered one of the power stars!";
_root.stars++;
starlive = 0;
_root.itemer[itemnum] = 0;
this.play();
}
}
onClipEvent (load) {
itemnum = 65;
if (_root.itemer[itemnum] == 1) {
starlive = 1;
} else {
starlive = 0;
_visible = false;
}
}
Instance of Symbol 440 MovieClip in Symbol 514 MovieClip Frame 71
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 5;
distance = 120;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter2.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter3.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
healthx--;
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_root.player.vel_y = 36;
_root.player.falling = false;
if (healthx == 0) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
} else {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
}
}
}
onClipEvent (load) {
damager = 13;
enemynum = 114;
healthx = 10;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 448 MovieClip in Symbol 514 MovieClip Frame 72
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 6;
distance = 100;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter2.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter3.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
healthx--;
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_root.player.vel_y = 36;
_root.player.falling = false;
if (healthx == 0) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
} else {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
}
}
}
onClipEvent (load) {
damager = 16;
enemynum = 115;
healthx = 15;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 502 MovieClip in Symbol 514 MovieClip Frame 73
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 15;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
dice = Math.round(Math.random() * 250);
if (dice == 100) {
this.play();
}
if (curdir == 1) {
if (_x > -160) {
randur = Math.round((Math.random() * 55) + 1);
}
_xscale = 100;
_x = (_x + speed);
if (_x >= 350) {
curdir = 2;
}
if (randur == 30) {
curdir = 2;
randur = 0;
}
}
if (curdir == 2) {
if (_x < 220) {
randur = Math.round((Math.random() * 55) + 1);
}
_xscale = -100;
_x = (_x - speed);
if (_x <= -290) {
curdir = 1;
}
if (randur == 30) {
curdir = 2;
randur = 0;
}
}
if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter2.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter3.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
healthx--;
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_root.player.vel_y = 36;
_root.player.falling = false;
hurtingx = true;
if (healthx == 0) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(41);
}
} else {
if (hurtingx == false) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
}
if (hurtingx == true) {
countU--;
if (countU == 0) {
hurtingx = false;
countU = 15;
}
}
}
}
}
onClipEvent (load) {
countU = 15;
damager = 12;
enemynum = 116;
healthx = 11;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Instance of Symbol 508 MovieClip in Symbol 514 MovieClip Frame 74
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.hitpoint)) {
stopAllSounds();
_root.nextFrame();
}
}
Instance of Symbol 513 MovieClip in Symbol 514 MovieClip Frame 75
onClipEvent (load) {
startdirection = 2;
if (startdirection == 1) {
_xscale = 100;
} else if (startdirection == 2) {
_xscale = -100;
}
speed = 4;
distance = 150;
went = 0;
curdir = startdirection;
}
onClipEvent (enterFrame) {
if (living == 1) {
if (curdir == 1) {
_xscale = 100;
_x = (_x + speed);
went++;
if (went == distance) {
curdir = 2;
went = 0;
}
}
if (curdir == 2) {
_xscale = -100;
_x = (_x - speed);
went++;
if (went == distance) {
curdir = 1;
went = 0;
}
}
if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter2.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter3.hitTest(_root.player.hitpoint) && (_root.player.falling == false)) {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
if (_root.player._xscale == 100) {
_root.health = _root.health - damager;
_root.playerHurtA();
} else if (_root.player._xscale == -100) {
_root.health = _root.health - damager;
_root.playerHurtB();
}
} else if (this.hitter.hitTest(_root.player.hitpoint) && (_root.player.falling == true)) {
healthx--;
my_color = new Color(this);
myColorTransform = {ra:255, rb:100, ga:65, gb:0, ba:65, bb:0};
my_color.setTransform(myColorTransform);
_root.player.vel_y = 36;
_root.player.falling = false;
if (healthx == 0) {
_root.enemyer[enemynum] = 0;
living = 0;
this.gotoAndStop(2);
}
} else {
my_color = new Color(this);
myColorTransform = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0};
my_color.setTransform(myColorTransform);
}
}
}
onClipEvent (load) {
damager = 10;
enemynum = 113;
healthx = 8;
if (_root.enemyer[enemynum] == 1) {
living = 1;
} else {
living = 0;
_visible = false;
}
}
Symbol 529 MovieClip Frame 1
stop();
Symbol 532 MovieClip Frame 5
_parent.gotoAndStop(3);
Symbol 549 MovieClip Frame 5
_parent.gotoAndStop(1);
Symbol 551 MovieClip Frame 5
_parent.gotoAndStop(5);
Symbol 553 MovieClip Frame 19
_parent.gotoAndStop(1);
Symbol 554 MovieClip Frame 5
_parent.gotoAndStop(5);
Symbol 555 MovieClip Frame 1
_root.curFram = 1;
stop();
Instance of Symbol 313 MovieClip "hitpoint" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 527 MovieClip in Symbol 555 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
if (Key.isDown(39)) {
_parent.gotoAndStop(2);
} else if (Key.isDown(37)) {
_parent.gotoAndStop(2);
}
}
}
Instance of Symbol 531 MovieClip "head" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 555 MovieClip Frame 2
_root.curFram = 2;
Instance of Symbol 532 MovieClip in Symbol 555 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
_parent.xSpeed = _parent.xSpeed + 2;
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
_parent.gotoAndStop(4);
}
if (Key.isDown(39)) {
_parent._x = _parent._x + _parent.xSpeed;
} else if (Key.isDown(37)) {
_parent._x = _parent._x - _parent.xSpeed;
}
}
}
Symbol 555 MovieClip Frame 3
_root.curFram = 3;
Instance of Symbol 548 MovieClip in Symbol 555 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
if ((!Key.isDown(39)) && (!Key.isDown(37))) {
_parent.gotoAndStop(4);
}
if (Key.isDown(39)) {
if (Key.isDown(16)) {
if ((_root.supershoe == false) && (_root.turboshoe == false)) {
_parent._x = _parent._x + _parent.xSpeed;
} else if (_root.supershoe == true) {
_parent._x = _parent._x + (_parent.xSpeed * 1.5);
} else if (_root.turboshoe == true) {
_parent._x = _parent._x + (_parent.xSpeed * 1.7);
}
} else {
_parent._x = _parent._x + _parent.xSpeed;
}
} else if (Key.isDown(37)) {
if (Key.isDown(16)) {
if ((_root.supershoe == false) && (_root.turboshoe == false)) {
_parent._x = _parent._x - _parent.xSpeed;
} else if (_root.supershoe == true) {
_parent._x = _parent._x - (_parent.xSpeed * 1.5);
} else if (_root.turboshoe == true) {
_parent._x = _parent._x - (_parent.xSpeed * 1.7);
}
} else {
_parent._x = _parent._x - _parent.xSpeed;
}
}
}
}
Symbol 555 MovieClip Frame 4
_root.curFram = 4;
Instance of Symbol 549 MovieClip in Symbol 555 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_parent.walk_now == true) {
_parent.xSpeed = _parent.xSpeed - 2;
if (_parent._xscale == 100) {
_parent._x = _parent._x + _parent.xSpeed;
} else if (_parent._xscale == -100) {
_parent._x = _parent._x - _parent.xSpeed;
}
}
}
Symbol 555 MovieClip Frame 5
_root.curFram = 5;
Symbol 555 MovieClip Frame 6
_root.curFram = 6;
Symbol 555 MovieClip Frame 7
_root.curFram = 7;
_parent.stopjump = true;
Symbol 555 MovieClip Frame 8
_root.curFram = 8;
Symbol 643 MovieClip Frame 1
stop();
Symbol 643 MovieClip Frame 60
amount = 80;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
Symbol 643 MovieClip Frame 61
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 62
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 63
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 64
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 65
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 66
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 67
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 68
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 69
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 70
amount = 80;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 71
amount = 30;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < (amount * 3)) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake2", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake._rotation = Math.random() * 360;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 72
amount = 30;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake2", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake._rotation = Math.random() * 360;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 73
amount = 30;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake2", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake._rotation = Math.random() * 360;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 74
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake2", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 1.8) + 0.5;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake._rotation = Math.random() * 360;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Symbol 643 MovieClip Frame 75
amount = 150;
var i = 0;
while (i < amount) {
removeMovieClip("flake" + i);
i++;
}
Symbol 644 MovieClip Frame 1
stop();
Symbol 644 MovieClip Frame 2
_root.ground.prevFrame();
_root.bg1.prevFrame();
_root.bg2.prevFrame();
_root.actives.prevFrame();
_root.walls.prevFrame();
_root.foreground.prevFrame();
Symbol 645 MovieClip Frame 1
stop();
Symbol 645 MovieClip Frame 2
_root.ground.nextFrame();
_root.bg1.nextFrame();
_root.bg2.nextFrame();
_root.actives.nextFrame();
_root.walls.nextFrame();
_root.foreground.nextFrame();
Instance of Symbol 657 MovieClip in Symbol 661 MovieClip Frame 1
onClipEvent (load) {
_width = ((_root.health / _root.maxhealth) * 450);
}
onClipEvent (enterFrame) {
_width = ((_root.health / _root.maxhealth) * 450);
}
Instance of Symbol 660 MovieClip in Symbol 661 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = _root.health;
if (_x > 450) {
_x = 450;
}
if (_x < 0) {
_x = 0;
}
}
onClipEvent (load) {
_x = _root.health;
if (_x > 450) {
_x = 450;
}
if (_x < 0) {
_x = 0;
}
}
Symbol 667 MovieClip Frame 1
stop();
Symbol 673 Button
on (rollOver) {
if (s_fr < 25) {
play();
} else if (s_fr == 36) {
gotoAndPlay (34);
} else if (s_fr == 37) {
gotoAndPlay (33);
} else if (s_fr == 38) {
gotoAndPlay (32);
} else if (s_fr == 39) {
gotoAndPlay (31);
} else if (s_fr == 40) {
gotoAndPlay (30);
} else if (s_fr == 41) {
gotoAndPlay (29);
} else if (s_fr == 42) {
gotoAndPlay (28);
} else if (s_fr == 43) {
gotoAndPlay (27);
} else if (s_fr == 44) {
gotoAndPlay (26);
} else if (s_fr == 45) {
gotoAndPlay (25);
} else if (s_fr == 46) {
gotoAndPlay (24);
} else if (s_fr == 47) {
gotoAndPlay (23);
} else if (s_fr == 48) {
gotoAndPlay (22);
} else if (s_fr == 49) {
gotoAndPlay (21);
} else if (s_fr == 50) {
gotoAndPlay (20);
} else if (s_fr == 51) {
gotoAndPlay (19);
} else if (s_fr == 52) {
gotoAndPlay (18);
} else if (s_fr == 53) {
gotoAndPlay (17);
} else if (s_fr == 54) {
gotoAndPlay (16);
} else if (s_fr == 55) {
gotoAndPlay (15);
} else if (s_fr == 56) {
gotoAndPlay (14);
} else if (s_fr == 57) {
gotoAndPlay (13);
} else if (s_fr == 58) {
gotoAndPlay (12);
} else if (s_fr == 59) {
gotoAndPlay (11);
} else if (s_fr == 60) {
gotoAndPlay (10);
} else if (s_fr == 61) {
gotoAndPlay (9);
} else if (s_fr == 62) {
gotoAndPlay (8);
} else if (s_fr == 63) {
gotoAndPlay (7);
} else if (s_fr == 64) {
gotoAndPlay (6);
} else if (s_fr == 65) {
gotoAndPlay (5);
} else if (s_fr == 66) {
gotoAndPlay (4);
} else if (s_fr == 67) {
gotoAndPlay (3);
} else if (s_fr == 68) {
gotoAndPlay (2);
} else if (s_fr == 69) {
gotoAndPlay (2);
} else if (s_fr == 70) {
gotoAndPlay (2);
}
}
on (rollOut) {
if (s_fr >= 35) {
play();
} else if (s_fr == 2) {
gotoAndPlay (69);
} else if (s_fr == 3) {
gotoAndPlay (68);
} else if (s_fr == 4) {
gotoAndPlay (67);
} else if (s_fr == 5) {
gotoAndPlay (66);
} else if (s_fr == 6) {
gotoAndPlay (65);
} else if (s_fr == 7) {
gotoAndPlay (64);
} else if (s_fr == 8) {
gotoAndPlay (63);
} else if (s_fr == 9) {
gotoAndPlay (62);
} else if (s_fr == 10) {
gotoAndPlay (61);
} else if (s_fr == 11) {
gotoAndPlay (60);
} else if (s_fr == 12) {
gotoAndPlay (59);
} else if (s_fr == 13) {
gotoAndPlay (58);
} else if (s_fr == 14) {
gotoAndPlay (57);
} else if (s_fr == 15) {
gotoAndPlay (56);
} else if (s_fr == 16) {
gotoAndPlay (55);
} else if (s_fr == 17) {
gotoAndPlay (54);
} else if (s_fr == 18) {
gotoAndPlay (53);
} else if (s_fr == 19) {
gotoAndPlay (52);
} else if (s_fr == 20) {
gotoAndPlay (51);
} else if (s_fr == 21) {
gotoAndPlay (50);
} else if (s_fr == 22) {
gotoAndPlay (49);
} else if (s_fr == 23) {
gotoAndPlay (48);
} else if (s_fr == 24) {
gotoAndPlay (47);
} else if (s_fr == 25) {
gotoAndPlay (46);
} else if (s_fr == 26) {
gotoAndPlay (45);
} else if (s_fr == 27) {
gotoAndPlay (44);
} else if (s_fr == 28) {
gotoAndPlay (43);
} else if (s_fr == 29) {
gotoAndPlay (42);
} else if (s_fr == 30) {
gotoAndPlay (41);
} else if (s_fr == 31) {
gotoAndPlay (40);
} else if (s_fr == 32) {
gotoAndPlay (39);
} else if (s_fr == 33) {
gotoAndPlay (38);
} else if (s_fr == 34) {
gotoAndPlay (37);
}
}
Symbol 676 MovieClip Frame 1
s_fr = 1;
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
stop();
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot1 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot1 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot1 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.health = _root.health + 150;
_root.slot1 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot2 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot2 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot2 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.health = _root.health + 150;
_root.slot2 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot3 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot3 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot3 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.health = _root.health + 150;
_root.slot3 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot4 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot4 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot4 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.health = _root.health + 150;
_root.slot4 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot5 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot5 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot5 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.health = _root.health + 150;
_root.slot5 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.slot6 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot6 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot6 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.health = _root.health + 150;
_root.slot6 = 0;
}
}
}
Symbol 676 MovieClip Frame 2
s_fr = 2;
Symbol 676 MovieClip Frame 3
s_fr = 3;
Symbol 676 MovieClip Frame 4
s_fr = 4;
Symbol 676 MovieClip Frame 5
s_fr = 5;
Symbol 676 MovieClip Frame 6
s_fr = 6;
Symbol 676 MovieClip Frame 7
s_fr = 7;
Symbol 676 MovieClip Frame 8
s_fr = 8;
Symbol 676 MovieClip Frame 9
s_fr = 9;
Symbol 676 MovieClip Frame 10
s_fr = 10;
Symbol 676 MovieClip Frame 11
s_fr = 11;
Symbol 676 MovieClip Frame 12
s_fr = 12;
Symbol 676 MovieClip Frame 13
s_fr = 13;
Symbol 676 MovieClip Frame 14
s_fr = 14;
Symbol 676 MovieClip Frame 15
s_fr = 15;
Symbol 676 MovieClip Frame 16
s_fr = 16;
Symbol 676 MovieClip Frame 17
s_fr = 17;
Symbol 676 MovieClip Frame 18
s_fr = 18;
Symbol 676 MovieClip Frame 19
s_fr = 19;
Symbol 676 MovieClip Frame 20
s_fr = 20;
Symbol 676 MovieClip Frame 21
s_fr = 21;
Symbol 676 MovieClip Frame 22
s_fr = 22;
Symbol 676 MovieClip Frame 23
s_fr = 23;
Symbol 676 MovieClip Frame 24
s_fr = 24;
Symbol 676 MovieClip Frame 25
s_fr = 25;
Symbol 676 MovieClip Frame 26
s_fr = 26;
Symbol 676 MovieClip Frame 27
s_fr = 27;
Symbol 676 MovieClip Frame 28
s_fr = 28;
Symbol 676 MovieClip Frame 29
s_fr = 29;
Symbol 676 MovieClip Frame 30
s_fr = 30;
Symbol 676 MovieClip Frame 31
s_fr = 31;
Symbol 676 MovieClip Frame 32
s_fr = 32;
Symbol 676 MovieClip Frame 33
s_fr = 33;
Symbol 676 MovieClip Frame 34
s_fr = 34;
Symbol 676 MovieClip Frame 35
s_fr = 35;
stop();
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot1 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot1 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot1 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.health = _root.health + 150;
_root.slot1 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot2 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot2 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot2 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.health = _root.health + 150;
_root.slot2 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot3 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot3 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot3 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.health = _root.health + 150;
_root.slot3 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot4 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot4 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot4 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.health = _root.health + 150;
_root.slot4 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot5 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot5 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot5 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.health = _root.health + 150;
_root.slot5 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 35
onClipEvent (load) {
this.gotoAndStop(_root.slot6 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot6 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot6 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.health = _root.health + 150;
_root.slot6 = 0;
}
}
}
Symbol 676 MovieClip Frame 36
s_fr = 36;
Symbol 676 MovieClip Frame 37
s_fr = 37;
Symbol 676 MovieClip Frame 38
s_fr = 38;
Symbol 676 MovieClip Frame 39
s_fr = 39;
Symbol 676 MovieClip Frame 40
s_fr = 40;
Symbol 676 MovieClip Frame 41
s_fr = 41;
Symbol 676 MovieClip Frame 42
s_fr = 42;
Symbol 676 MovieClip Frame 43
s_fr = 43;
Symbol 676 MovieClip Frame 44
s_fr = 44;
Symbol 676 MovieClip Frame 45
s_fr = 45;
Symbol 676 MovieClip Frame 46
s_fr = 46;
Symbol 676 MovieClip Frame 47
s_fr = 47;
Symbol 676 MovieClip Frame 48
s_fr = 48;
Symbol 676 MovieClip Frame 49
s_fr = 49;
Symbol 676 MovieClip Frame 50
s_fr = 50;
Symbol 676 MovieClip Frame 51
s_fr = 51;
Symbol 676 MovieClip Frame 52
s_fr = 52;
Symbol 676 MovieClip Frame 53
s_fr = 53;
Symbol 676 MovieClip Frame 54
s_fr = 54;
Symbol 676 MovieClip Frame 55
s_fr = 55;
Symbol 676 MovieClip Frame 56
s_fr = 56;
Symbol 676 MovieClip Frame 57
s_fr = 57;
Symbol 676 MovieClip Frame 58
s_fr = 58;
Symbol 676 MovieClip Frame 59
s_fr = 59;
Symbol 676 MovieClip Frame 60
s_fr = 60;
Symbol 676 MovieClip Frame 61
s_fr = 61;
Symbol 676 MovieClip Frame 62
s_fr = 62;
Symbol 676 MovieClip Frame 63
s_fr = 63;
Symbol 676 MovieClip Frame 64
s_fr = 64;
Symbol 676 MovieClip Frame 65
s_fr = 65;
Symbol 676 MovieClip Frame 66
s_fr = 66;
Symbol 676 MovieClip Frame 67
s_fr = 67;
Symbol 676 MovieClip Frame 68
s_fr = 68;
Symbol 676 MovieClip Frame 69
s_fr = 69;
Symbol 676 MovieClip Frame 70
s_fr = 70;
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
stop();
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot1 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot1 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot1 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot1 == 3) {
_root.health = _root.health + 150;
_root.slot1 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot2 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot2 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot2 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot2 == 3) {
_root.health = _root.health + 150;
_root.slot2 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot3 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot3 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot3 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot3 == 3) {
_root.health = _root.health + 150;
_root.slot3 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot4 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot4 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot4 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot4 == 3) {
_root.health = _root.health + 150;
_root.slot4 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot5 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot5 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot5 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot5 == 3) {
_root.health = _root.health + 150;
_root.slot5 = 0;
}
}
}
Instance of Symbol 667 MovieClip in Symbol 676 MovieClip Frame 70
onClipEvent (load) {
this.gotoAndStop(_root.slot6 + 1);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.slot6 + 1);
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 1) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Activity stimulation pills.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 2) {
_root.hoverdesc = "Will open a chest... Space to use.";
_root.hovername = "Golden Key.";
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.hoverdesc = "Using will recover some of your lost health. \nClick to use.";
_root.hovername = "Health Vial.";
if (Key.isDown(46)) {
_root.hoverdesc = "Hover over an item to print it's description here.";
_root.hovername = "No item.";
_root.slot6 = 0;
}
}
}
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 4) {
_root.hoverdesc = "Keep this in your inventory. Then hold the SHIFT button to increase running speed and jumping height.";
_root.hovername = "Super Activity stimulation pills.";
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root.cursor.tops)) {
if (_root.slot6 == 3) {
_root.health = _root.health + 150;
_root.slot6 = 0;
}
}
}
Symbol 681 MovieClip Frame 1
stop();
Symbol 683 MovieClip Frame 1
stop();
Symbol 683 MovieClip Frame 21
stop();
_root.gotoAndStop(_root._currentframe + 2);
Symbol 735 MovieClip Frame 1506
stopAllSounds();
_root.gotoAndStop(9);
Symbol 746 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 748 MovieClip Frame 21
stop();
Symbol 753 Button
on (release) {
_root.gotoAndStop(2);
}
Symbol 764 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}