STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228137
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5122

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/35407879?noj=FRM35407879-17DC" width="1" height="1"></div>

Spell Racer.swf

This is the info page for
Flash #26297

(Click the ID number above for more basic data on this flash file.)


Text
%

Loaded

Beginner

Beginner

Advanced

Advanced

Select a difficulty level

Spell Racer designed and built by Message © Message 2001

High Score

High Score

Instructions

Instructions

The Witch needs to get back to her castle and fast! She must collect the
magic potion and key on route and complete all three levels. Shoot or dodge
the ghastly ghouls but look out for magic charms to help you on your way.

more games and
screensavers by

The Witch:
Arrow keys to move up and down.
Space bar to shoot fire-balls

SHOOT THESE:

Pumpkin - 100 points

Ghost - 300 points
Needs 3 shots to kill,
tracks your movement

Bat - 500 points
Needs 2 shots to kill, tracks
your movement aggressively!

COLLECT THESE

Ammunition - gives
you 30 more fireballs

Shield - 10 seconds
of protection

Spell Book - Makes your
fire-balls super powerfull (kill
Ghosts and Bats with one shot)

Potion - Must collect to
win the game

Key - You need this
to enter the castle

Loading Scores

High Scores

Sorry,
but the high scores failed to load.
Please try again!

Ready

Set

Go

Lives

Score

5

Level

30

Fire-balls

0

Quality:

Low

high

Press Q to change quality

Time

100

300

1000

Time

Congratulations!

on completing

Level

2

Hubble Bubble
You’re in Trouble!
You’ve just lost your last life but our
magic is strong and we grant you the
power to play again.
Be careful this time - it's a graveyard
out there!

Submit Score

Submit Score

Play Again

Play Again

Magic!
You’ve beaten off the undead
but forgotten the Key.
Play again you zombie!

Magic!
You’ve beaten off the undead
but forgotten the Potion
Play again you zombie!

Congratulations !
You’ve made it.
Even evil witches have to feed the cat.
A very spooky Halloween to you

Name

Email

ActionScript [AS1/AS2]

Frame 1
stop(); fscommand ("fullscreen", "true"); fscommand ("allowscale", "false");
Instance of Symbol 13 MovieClip "loading_movie" in Frame 1
onClipEvent (load) { totalKb = _root.getBytesTotal(); } onClipEvent (enterFrame) { if (_root._currentframe == 1) { ifFrameLoaded (5) { _root.gotoAndStop(2); } } loadedKb = _root.getBytesLoaded(); percent = Math.round((loadedKb / totalKB) * 100); if (percent >= 100) { gotoAndStop (2); } }
Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Frame 5
stop();
Instance of Symbol 79 MovieClip "highScores" in Frame 5
onClipEvent (load) { timeOut = 4000; timeStart = getTimer(); if (_root.submit) { _root.submit = false; action = "INSERT"; winname = _root.name; winscore = _root.highscore; _root.emailMovie.name = winname; _root.emailMovie.score = winscore; } else { action = "VIEW"; } filename = "scores/demo.sco"; scoresize = 10; viewtype = "FLASH"; _root.highscore = null; loadVariables ("http://cgi.message.force9.co.uk/scores.php", "", "GET"); } onClipEvent (enterFrame) { timeNow = getTimer(); if ((_currentframe == 1) & ((timeNow - timeStart) >= timeOut)) { gotoAndStop (3); } } onClipEvent (data) { gotoAndStop (2); if (action == "INSERT") { action = "VIEW"; _root.emailMovie.loadVariables("http://cgi.message.force9.co.uk/cgi-bin/formmail.cgi", "GET"); } }
Instance of Symbol 80 MovieClip "emailMovie" in Frame 5
onClipEvent (load) { recipient = "info@message.uk.com"; subject = "SpellRacer"; email = _root.email; }
Frame 6
stop(); _quality = "high"; maxWidth = 550; minWidth = 0; maxHeight = 35; minHeight = 315; shots = 30; shootPower = 1; _root.level++; bgModule.bgBackModule.bg1.gotoAndStop(_root.level); bgModule.bgFrontModule.bg1.gotoAndStop(_root.level); bgModule.bgBackModule.bg2.gotoAndStop(_root.level); bgModule.bgFrontModule.bg2.gotoAndStop(_root.level); _root.witchMovie.gotoAndStop(1); _root.score.potionHit = false; _root.score.keyHit = false; if (((key.isDown(66) and key.isDown(85)) and key.isDown(68)) || (bud)) { shots = 1000; bud = true; }
Instance of Symbol 102 MovieClip "bgModule" in Frame 6
onClipEvent (load) { function moveBg(movieName, bgSpeed) { movieName._x = movieName._x - bgSpeed; if (-550 >= movieName._x) { movieName._x = 0; } } } onClipEvent (enterFrame) { if (_root._currentframe < 30) { moveBg(bgBackModule, 2); moveBg(bgFrontModule, 6); } }
Instance of Symbol 113 MovieClip "witchMovie" in Frame 6
onClipEvent (load) { function moveWitch() { if (key.isDown(39)) { x = x + thespeed; } if (key.isDown(37)) { x = x - thespeed; } if (key.isDown(40)) { y = y + thespeed; } if (key.isDown(38)) { y = y - thespeed; } if (xMax < this._x) { this._x = xMax; x = xMax; } else if (this._x < xMin) { this._x = xMin; x = xMin; } if (yMax < this._y) { this._y = yMax; y = yMax; } else if (this._y < yMin) { this._y = yMin; y = yMin; } xmov = (x - this._x) / glide; ymov = (y - this._y) / glide; this._x = this._x + xmov; this._y = this._y + ymov; } function shoot() { if (key.isDown(32) and (0 < _parent.shots)) { shootCount++; _parent.shots--; if (_root.shootPower == 3) { duplicateMovieClip (_parent.shootModule, "shoot" + shootCount, shootCount); _parent["shoot" + shootCount].gotoAndStop(2); _parent["shoot" + shootCount]._visible = true; _parent["shoot" + shootCount]._x = this._x + 40; _parent["shoot" + shootCount]._y = this._y + 30; shootCount++; duplicateMovieClip (_parent.shootModule, "shoot" + shootCount, shootCount); _parent["shoot" + shootCount].gotoAndStop(2); _parent["shoot" + shootCount]._visible = true; _parent["shoot" + shootCount]._x = this._x + 60; _parent["shoot" + shootCount]._y = this._y + 10; shootCount++; duplicateMovieClip (_parent.shootModule, "shoot" + shootCount, shootCount); _parent["shoot" + shootCount].gotoAndStop(2); _parent["shoot" + shootCount]._visible = true; _parent["shoot" + shootCount]._x = this._x + 40; _parent["shoot" + shootCount]._y = this._y - 10; } else { duplicateMovieClip (_parent.shootModule, "shoot" + shootCount, shootCount); _parent["shoot" + shootCount]._visible = true; _parent["shoot" + shootCount]._x = this._x + 60; _parent["shoot" + shootCount]._y = this._y + 10; } } } x = this._x; y = this._y; xMax = _root.maxWidth - (this._width / 2); xMin = _root.minWidth + (this._width / 2); yMin = _root.maxHeight + (this._height / 2); yMax = _root.minHeight - (this._height / 2); thespeed = 30; glide = 5; shootCount = 0; _parent.shootModule._visible = false; } onClipEvent (enterFrame) { moveWitch(); if (_parent._currentframe == 15) { shoot(); } }
Instance of Symbol 151 MovieClip "score" in Frame 6
onClipEvent (load) { ghostScore = 300; pumpkinScore = 100; batScore = 500; specialScore = 1000; potion._visible = false; key._visible = false; } onClipEvent (enterFrame) { points = (((ghostScore * ghosts) + (pumpkinScore * pumpkins)) + (batScore * bats)) + (specialScore * special); if (0 >= lives) { _root.gotoAndStop("end"); } }
Instance of Symbol 159 MovieClip "qualityMovie" in Frame 6
onClipEvent (enterFrame) { if (key.isDown(81)) { play(); } }
Frame 15
stop(); if (_root.qualityMovie._currentframe == 1) { _quality = "low"; } else { _quality = "medium"; }
Instance of Symbol 272 MovieClip "baddiesModule" in Frame 15
onClipEvent (load) { function moveGhost() { var n = 1; while (maxGhosts >= n) { this["ghost" + n]._x = this["ghost" + n]._x - ghostSpeed; if ((this["ghost" + n]._y < _parent.witchMovie._y) and (_parent.witchMovie._x < this["ghost" + n]._x)) { this["ghost" + n]._y = this["ghost" + n]._y + ghostYSpeed; } else if ((_parent.witchMovie._y < this["ghost" + n]._y) and (_parent.witchMovie._x < this["ghost" + n]._x)) { this["ghost" + n]._y = this["ghost" + n]._y - ghostYSpeed; } if (this["ghost" + n]._x < offLeft) { this["ghost" + n]._x = offRight + random(_root.maxWidth / maxGhosts); this["ghost" + n]._y = (random((_root.minHeight - ghostHeight) - _parent.maxHeight) + (ghostHeight / 2)) + _parent.maxHeight; this["ghost" + n]._visible = true; this["ghost" + n].hitCount = 0; this["ghost" + n].hitState = false; this["ghost" + n].hitWitch = false; } n++; } } function movePumpkin() { var n = 1; while (maxPumpkins >= n) { this["pumpkin" + n]._x = this["pumpkin" + n]._x - pumpkinSpeed; if (this["pumpkin" + n]._x < offLeft) { this["pumpkin" + n]._x = offRight + random(_root.maxWidth / maxPumpkins); this["pumpkin" + n]._y = (random((_root.minHeight - pumpkinHeight) - _parent.maxHeight) + (pumpkinHeight / 2)) + _parent.maxHeight; this["pumpkin" + n]._visible = true; this["pumpkin" + n].hitCount = 0; this["pumpkin" + n].hitState = false; this["pumpkin" + n].hitWitch = false; } n++; } } function moveBat() { var n = 1; while (maxBats >= n) { if ((((this["bat" + n]._x < _parent.witchMovie._x) and ((_parent.witchMovie._x - batZone) < this["bat" + n]._x)) and (this["bat" + n].hitState == false)) and (this["bat" + n].hitWitch == false)) { this["bat" + n]._x = this["bat" + n]._x + (batSpeed - 4); } else { this["bat" + n]._x = this["bat" + n]._x - batSpeed; } if ((this["bat" + n]._y < _parent.witchMovie._y) and (_parent.witchMovie._x < (this["bat" + n]._x + batZone))) { this["bat" + n]._y = this["bat" + n]._y + batYSpeed; } else if ((_parent.witchMovie._y < this["bat" + n]._y) and (_parent.witchMovie._x < (this["bat" + n]._x + batZone))) { this["bat" + n]._y = this["bat" + n]._y - batYSpeed; } if (this["bat" + n]._x < offLeft) { this["bat" + n]._x = offRight + random(_root.maxWidth / maxBats); this["bat" + n]._y = (random((_root.minHeight - batHeight) - _parent.maxHeight) + (batHeight / 2)) + _parent.maxHeight; this["bat" + n]._visible = true; this["bat" + n].hitCount = 0; this["bat" + n].hitState = false; this["bat" + n].hitWitch = false; } n++; } } if (_root.level == 1) { if (_root.beginner) { maxGhosts = 1; ghostSpeed = 5; ghostYSpeed = 2; maxBats = 0; maxPumpkins = 2; pumpkinSpeed = 10; } else { maxGhosts = 2; ghostSpeed = 5; ghostYSpeed = 2; maxBats = 0; maxPumpkins = 3; pumpkinSpeed = 10; } } else if (_root.level == 2) { if (_root.beginner) { maxGhosts = 1; ghostSpeed = 5; ghostYSpeed = 2; maxBats = 1; batSpeed = 7; batYSpeed = 3; batZone = 150; maxPumpkins = 2; pumpkinSpeed = 10; } else { maxGhosts = 2; ghostSpeed = 6; ghostYSpeed = 3; maxBats = 1; batSpeed = 7; batYSpeed = 3; batZone = 150; maxPumpkins = 4; pumpkinSpeed = 12; } } else if (_root.beginner) { maxGhosts = 2; ghostSpeed = 6; ghostYSpeed = 2; maxBats = 2; batSpeed = 7; batYSpeed = 3; batZone = 200; maxPumpkins = 2; pumpkinSpeed = 10; } else { maxGhosts = 3; ghostSpeed = 7; ghostYSpeed = 4; maxBats = 2; batSpeed = 8; batYSpeed = 4; batZone = 200; maxPumpkins = 4; pumpkinSpeed = 14; } ghostHeight = ghost1._height; pumpkinHeight = pumpkin1._height; batHeight = bat._height; offRight = 600; offLeft = -50; var n = 2; while (maxGhosts >= n) { duplicateMovieClip (ghost1, "ghost" + n, n); this["ghost" + n]._y = (random((_root.minHeight - ghostHeight) - _parent.maxHeight) + (ghostHeight / 2)) + _parent.maxHeight; this["ghost" + n]._x = this["ghost" + n]._x + (((n * _root.maxWidth) / maxGhosts) - random(_root.maxWidth / maxGhosts)); n++; } var n = 2; while (maxPumpkins >= n) { duplicateMovieClip (pumpkin1, "pumpkin" + n, n); this["pumpkin" + n]._y = (random((_root.minHeight - pumpkinHeight) - _parent.maxHeight) + (pumpkinHeight / 2)) + _parent.maxHeight; this["pumpkin" + n]._x = this["pumpkin" + n]._x + (((n * _root.maxWidth) / maxPumpkins) - random(_root.maxWidth / maxPumpkins)); n++; } var n = 1; while (maxBats >= n) { duplicateMovieClip (bat, "bat" + n, n); this["bat" + n]._y = (random((_root.minHeight - batHeight) - _parent.maxHeight) + (batHeight / 2)) + _parent.maxHeight; this["bat" + n]._x = this["bat" + n]._x + (((n * _root.maxWidth) / maxBats) - random(_root.maxWidth / maxBats)); n++; } } onClipEvent (enterFrame) { moveGhost(); movePumpkin(); moveBat(); }
Instance of Symbol 278 MovieClip "ammo" in Frame 15
onClipEvent (load) { function movePotion() { if (((playing == true) || (start1 == _root.time.time)) || (start2 == _root.time.time)) { playing = true; this._x = this._x - speed; } if (this._x < offLeft) { playing = false; this._x = offRight; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; this._visible = true; hitCount = 0; hitState = false; hitWitch = false; } if ((hitCount >= maxHit) and (hitWitch == false)) { this._visible = false; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); } if (((this.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.shots = _root.shots + 30; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(6); } } speed = 6; height = this._height; offRight = 600; offLeft = -50; hitCount = 0; hitState = false; hitWitch = false; playing = false; maxHit = 1; start1 = random(15) + 20; start2 = random(15) + 60; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; } onClipEvent (enterFrame) { movePotion(); }
Instance of Symbol 290 MovieClip "shield" in Frame 15
onClipEvent (load) { function movePotion() { if (((playing == true) || (start1 == _root.time.time)) || (start2 == _root.time.time)) { playing = true; this._x = this._x - speed; } if (this._x < offLeft) { playing = false; this._x = offRight; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; this._visible = true; hitCount = 0; hitState = false; hitWitch = false; } if ((hitCount >= maxHit) and (hitWitch == false)) { this._visible = false; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); } if (((this.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.witchMovie.gotoAndStop(2); timeStart = int(getTimer() / 1000); shieldOn = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(6); } if (shieldOn) { timeNow = int(getTimer() / 1000); if ((timeNow - timeStart) >= shieldTime) { _root.witchMovie.gotoAndStop(1); shieldOn = false; } else if ((timeNow - timeStart) >= (shieldTime - 1)) { _root.witchMovie.gotoAndStop(3); } } } speed = 6; height = this._height; shieldOn = false; shieldTime = 10; offRight = 600; offLeft = -50; hitCount = 0; hitState = false; hitWitch = false; playing = false; maxHit = 1; start1 = random(15) + 30; start2 = random(15) + 70; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; } onClipEvent (enterFrame) { movePotion(); }
Instance of Symbol 303 MovieClip "weapon" in Frame 15
onClipEvent (load) { function movePotion() { if (((playing == true) || (start1 == _root.time.time)) || (start2 == _root.time.time)) { playing = true; this._x = this._x - speed; } if (this._x < offLeft) { playing = false; this._x = offRight; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; this._visible = true; hitCount = 0; hitState = false; hitWitch = false; } if ((hitCount >= maxHit) and (hitWitch == false)) { this._visible = false; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); } if (((this.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.shootPower = 3; weaponOn = true; timeStart = int(getTimer() / 1000); _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(6); } if (weaponOn) { timeNow = int(getTimer() / 1000); if ((timeNow - timeStart) >= weaponTime) { _root.shootPower = 1; weaponOn = false; } } } speed = 6; height = this._height; weaponOn = false; weaponTime = 10; offRight = 600; offLeft = -50; hitCount = 0; hitState = false; hitWitch = false; playing = false; maxHit = 1; start1 = random(15) + 10; start2 = random(15) + 50; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; } onClipEvent (enterFrame) { movePotion(); }
Instance of Symbol 304 MovieClip "potion" in Frame 15
onClipEvent (load) { function movePotion() { if ((playing == true) || (start1 == _root.time.time)) { playing = true; this._x = this._x - speed; } if ((hitCount >= maxHit) and (hitWitch == false)) { this._visible = false; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); } if (((this.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.score.potion._visible = true; _root.score.potionHit = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(7); _root.score.special++; } } speed = 6; height = this._height; offRight = 600; offLeft = -50; hitCount = 0; hitState = false; hitWitch = false; playing = false; maxHit = 1; start1 = random(10) + 80; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; } onClipEvent (enterFrame) { if (_root.level == 3) { movePotion(); } }
Instance of Symbol 305 MovieClip "key" in Frame 15
onClipEvent (load) { function moveKey() { if ((playing == true) || (start1 == _root.time.time)) { playing = true; this._x = this._x - speed; } if ((hitCount >= maxHit) and (hitWitch == false)) { this._visible = false; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); } if (((this.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.score.key._visible = true; _root.score.keyHit = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(7); _root.score.special++; } } speed = 6; height = this._height; offRight = 600; offLeft = -50; hitCount = 0; hitState = false; hitWitch = false; playing = false; maxHit = 1; start1 = random(10) + 80; this._y = (random((_root.minHeight - height) - _parent.maxHeight) + (height / 2)) + _parent.maxHeight; } onClipEvent (enterFrame) { if (_root.level == 2) { moveKey(); } }
Instance of Symbol 310 MovieClip "shootModule" in Frame 15
onClipEvent (load) { function shoot() { this._x = this._x + shootSpeed; if ((_parent.maxWidth + 10) < this._x) { this.removeMovieClip(); } var n = 1; while (_parent.baddiesModule.maxGhosts >= n) { if ((_parent.baddiesModule["ghost" + n].hitTest(this._x, this._y, true) and (_parent.baddiesModule["ghost" + n].hitState == false)) and (_parent.baddiesModule["ghost" + n].hitWitch == false)) { _parent.baddiesModule["ghost" + n].hitCount = _parent.baddiesModule["ghost" + n].hitCount + _root.shootPower; this.removeMovieClip(); } n++; } var n = 1; while (_parent.baddiesModule.maxPumpkins >= n) { if ((_parent.baddiesModule["pumpkin" + n].hitTest(this._x, this._y, true) and (_parent.baddiesModule["pumpkin" + n].hitState == false)) and (_parent.baddiesModule["pumpkin" + n].hitWitch == false)) { _parent.baddiesModule["pumpkin" + n].hitCount = _parent.baddiesModule["pumpkin" + n].hitCount + _root.shootPower; this.removeMovieClip(); } n++; } var n = 1; while (_parent.baddiesModule.maxBats >= n) { if ((_parent.baddiesModule["bat" + n].hitTest(this._x, this._y, true) and (_parent.baddiesModule["bat" + n].hitState == false)) and (_parent.baddiesModule["bat" + n].hitWitch == false)) { _parent.baddiesModule["bat" + n].hitCount = _parent.baddiesModule["bat" + n].hitCount + _root.shootPower; this.removeMovieClip(); } n++; } if ((_parent.weapon.hitTest(this._x, this._y, true) and (_parent.weapon.hitState == false)) and (_parent.weapon.hitWitch == false)) { _parent.weapon.hitCount = _parent.weapon.hitCount + _root.shootPower; this.removeMovieClip(); } if ((_parent.ammo.hitTest(this._x, this._y, true) and (_parent.ammo.hitState == false)) and (_parent.ammo.hitWitch == false)) { _parent.ammo.hitCount = _parent.ammo.hitCount + _root.shootPower; this.removeMovieClip(); } if ((_parent.shield.hitTest(this._x, this._y, true) and (_parent.shield.hitState == false)) and (_parent.shield.hitWitch == false)) { _parent.shield.hitCount = _parent.shield.hitCount + _root.shootPower; this.removeMovieClip(); } if ((_parent.potion.hitTest(this._x, this._y, true) and (_parent.potion.hitState == false)) and (_parent.potion.hitWitch == false)) { _parent.potion.hitCount = _parent.potion.hitCount + _root.shootPower; this.removeMovieClip(); } if ((_parent.key.hitTest(this._x, this._y, true) and (_parent.key.hitState == false)) and (_parent.key.hitWitch == false)) { _parent.key.hitCount = _parent.key.hitCount + _root.shootPower; this.removeMovieClip(); } } shootSpeed = 30; weaponStart = false; weaponOn = false; } onClipEvent (enterFrame) { shoot(); }
Instance of Symbol 326 MovieClip "explosion" in Frame 15
onClipEvent (load) { explosionCount = 0; }
Instance of Symbol 327 MovieClip "time" in Frame 15
onClipEvent (load) { time = 0; maxTime = 90; timeStart = int(getTimer() / 1000); } onClipEvent (enterFrame) { timeNow = int(getTimer() / 1000); time = int(100 - (((maxTime - (timeNow - timeStart)) * 100) / maxTime)); time_bar._xscale = time; if (100 < time) { time = 100; if (_root.level == 3) { _root.gotoAndStop("end"); } else { _root.gotoAndStop("next_level"); } } }
Frame 25
stop(); _root._quality = "high";
Frame 35
stop(); _root._quality = "high";
Instance of Symbol 389 MovieClip "end" in Frame 35
onClipEvent (load) { if (0 < _root.score.lives) { this.gotoAndStop("win"); } }
Symbol 8 Button
on (release) { _root.beginner = true; _root.gotoAndStop(6); }
Symbol 11 Button
on (release) { _root.beginner = false; _root.gotoAndStop(6); }
Symbol 13 MovieClip Frame 1
stop();
Symbol 13 MovieClip Frame 2
stop();
Symbol 18 MovieClip Frame 30
stop(); _parent.gotoAndStop(3);
Symbol 21 Button
on (release) { gotoAndStop (5); }
Symbol 24 Button
on (release) { gotoAndStop (4); }
Symbol 31 Button
on (release) { getURL ("http://www.message.uk.com", "_blank"); }
Symbol 79 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 2
stop();
Symbol 79 MovieClip Frame 3
stop();
Symbol 90 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 2
stop();
Symbol 90 MovieClip Frame 3
stop();
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 2
stop();
Symbol 100 MovieClip Frame 3
stop();
Instance of Symbol 103 MovieClip "hitArea" in Symbol 107 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 108 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Symbol 112 MovieClip Frame 5
_parent.gotoAndStop(1);
Symbol 113 MovieClip Frame 1
stop();
Symbol 113 MovieClip Frame 2
stop();
Symbol 113 MovieClip Frame 4
stop();
Symbol 118 MovieClip Frame 30
_parent.gotoAndStop("playing");
Symbol 159 MovieClip Frame 1
stop(); _quality = "low";
Symbol 159 MovieClip Frame 2
stop(); _quality = "medium";
Instance of Symbol 103 MovieClip "hitArea" in Symbol 224 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 225 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 257 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 258 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 269 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 103 MovieClip "hitArea" in Symbol 270 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 227 MovieClip "ghost1" in Symbol 272 MovieClip Frame 1
onClipEvent (load) { hitCount = 0; hitState = false; hitWitch = false; maxHit = 3; } onClipEvent (enterFrame) { if ((hitCount >= maxHit) || ((((ghost_mov.ghost_anim.hitArea.hitTest(_root.witchMovie) == true) and (hitWitch == false)) and (hitState == false)) and (_root.witchMovie._currentframe != 1))) { this._visible = false; _root.score.ghosts++; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(3); } else if (((ghost_mov.ghost_anim.hitArea.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.score.lives--; _root.witchMovie.hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); _root.witchMovie.gotoAndStop(4); } }
Instance of Symbol 259 MovieClip "pumpkin1" in Symbol 272 MovieClip Frame 1
onClipEvent (load) { hitCount = 0; hitState = false; hitWitch = false; maxHit = 1; } onClipEvent (enterFrame) { if ((hitCount >= maxHit) || ((((pumpin_anim.hitArea.hitTest(_root.witchMovie) == true) and (hitWitch == false)) and (hitState == false)) and (_root.witchMovie._currentframe != 1))) { this._visible = false; _root.score.pumpkins++; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(2); } else if (((pumpin_anim.hitArea.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.score.lives--; _root.witchMovie.hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); _root.witchMovie.gotoAndStop(4); } }
Instance of Symbol 271 MovieClip "bat" in Symbol 272 MovieClip Frame 1
onClipEvent (load) { hitCount = 0; hitState = false; hitWitch = false; maxHit = 2; } onClipEvent (enterFrame) { if ((hitCount >= maxHit) || ((((bat_flap.hitArea.hitTest(_root.witchMovie) == true) and (hitWitch == false)) and (hitState == false)) and (_root.witchMovie._currentframe != 1))) { this._visible = false; _root.score.bats++; hitCount = 0; hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(4); } else if (((bat_flap.hitArea.hitTest(_root.witchMovie.witch_anim.witch_graphic.hitArea) == true) and (hitWitch == false)) and (hitState == false)) { hitWitch = true; this._visible = false; _root.score.lives--; _root.witchMovie.hitState = true; _root.explosion.explosionCount++; duplicateMovieClip (_root.explosion, "explosion" + _root.explosion.explosionCount, _root.explosion.explosionCount); _root["explosion" + _root.explosion.explosionCount]._x = this._x; _root["explosion" + _root.explosion.explosionCount]._y = this._y; _root["explosion" + _root.explosion.explosionCount].gotoAndStop(5); _root.witchMovie.gotoAndStop(4); } }
Symbol 308 MovieClip Frame 24
stop();
Symbol 309 MovieClip Frame 24
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 2
stop();
Symbol 313 MovieClip Frame 16
_parent.removeMovieClip();
Symbol 315 MovieClip Frame 6
stop();
Symbol 316 MovieClip Frame 6
stop();
Symbol 320 MovieClip Frame 16
_parent.removeMovieClip();
Symbol 324 MovieClip Frame 16
_parent.removeMovieClip();
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 2
stop();
Symbol 326 MovieClip Frame 3
stop();
Symbol 326 MovieClip Frame 4
stop();
Symbol 326 MovieClip Frame 5
stop();
Symbol 326 MovieClip Frame 6
stop();
Symbol 326 MovieClip Frame 7
stop();
Symbol 334 MovieClip Frame 35
_parent.gotoAndStop("start");
Symbol 338 Button
on (release) { gotoAndStop (20); }
Symbol 341 Button
on (release) { _root.bud = false; _root.level = 0; _root.score.lives = 5; _root.score.bats = 0; _root.score.pumpkins = 0; _root.score.ghosts = 0; _root.score.specials = 0; _root.score.potion._visible = false; _root.score.key._visible = false; _root.gotoAndStop(3); }
Symbol 348 MovieClip Frame 1
stop();
Symbol 348 MovieClip Frame 24
stop();
Symbol 355 MovieClip Frame 1
stop();
Symbol 355 MovieClip Frame 2
stop();
Symbol 355 MovieClip Frame 3
stop();
Symbol 355 MovieClip Frame 4
stop();
Symbol 356 MovieClip Frame 1
stop();
Symbol 366 MovieClip Frame 20
stop();
Symbol 383 MovieClip Frame 55
if (_root.score.key._visible != true) { stop(); win_text.gotoAndStop(2); } else { castle.door.play(); }
Symbol 383 MovieClip Frame 90
if (_root.score.potion._visible != true) { stop(); win_text.gotoAndStop(3); }
Symbol 383 MovieClip Frame 145
stop(); if (_root.score.potion._visible == true) { win_text.gotoAndStop(4); }
Symbol 386 Button
on (release) { _root.highscore = _root.score.points; _root.bud = false; _root.level = 0; _root.score.lives = 5; _root.score.bats = 0; _root.score.pumpkins = 0; _root.score.ghosts = 0; _root.score.specials = 0; _root.score.potion._visible = false; _root.score.key._visible = false; _root.submit = true; _root.gotoAndStop(5); }
Symbol 389 MovieClip Frame 1
stop();
Symbol 389 MovieClip Frame 10
stop();
Symbol 389 MovieClip Frame 20
stop();

Library Items

Symbol 1 FontUsed by:2 3 4 5 6 9 10 12 19 20 22 23 25 37 38 39 40 41 42 43 44 45 46 47 54 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 114 116 117 120 121 122 123 152 153 154 155 156 157 158 160 163 328 329 331 332 333 335 336 337 339 340 352 353 354 384 385 387 388
Symbol 2 EditableTextUses:1Used by:13
Symbol 3 TextUses:1Used by:13
Symbol 4 TextUses:1Used by:13
Symbol 5 TextUses:1Used by:8
Symbol 6 TextUses:1Used by:8
Symbol 7 GraphicUsed by:8 11 21 24 103 162 338 341 383 386
Symbol 8 ButtonUses:5 6 7Used by:13
Symbol 9 TextUses:1Used by:11
Symbol 10 TextUses:1Used by:11
Symbol 11 ButtonUses:9 10 7Used by:13
Symbol 12 TextUses:1Used by:13
Symbol 13 MovieClipUses:2 3 4 8 11 12Used by:Timeline
Symbol 14 FontUsed by:15
Symbol 15 TextUses:14Used by:Timeline
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:18
Symbol 18 MovieClipUses:17Used by:Timeline
Symbol 19 TextUses:1Used by:21
Symbol 20 TextUses:1Used by:21  Timeline
Symbol 21 ButtonUses:19 20 7Used by:Timeline
Symbol 22 TextUses:1Used by:24
Symbol 23 TextUses:1Used by:24  Timeline
Symbol 24 ButtonUses:22 23 7Used by:Timeline
Symbol 25 TextUses:1Used by:Timeline
Symbol 26 GraphicUsed by:31
Symbol 27 GraphicUsed by:31
Symbol 28 FontUsed by:29
Symbol 29 TextUses:28Used by:31
Symbol 30 GraphicUsed by:31
Symbol 31 ButtonUses:26 27 29 30Used by:Timeline
Symbol 32 BitmapUsed by:36 106
Symbol 33 BitmapUsed by:36 291
Symbol 34 BitmapUsed by:36 228
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:32 33 34 35Used by:Timeline
Symbol 37 TextUses:1Used by:Timeline
Symbol 38 TextUses:1Used by:Timeline
Symbol 39 TextUses:1Used by:Timeline
Symbol 40 TextUses:1Used by:Timeline
Symbol 41 TextUses:1Used by:Timeline
Symbol 42 TextUses:1Used by:Timeline
Symbol 43 TextUses:1Used by:Timeline
Symbol 44 TextUses:1Used by:Timeline
Symbol 45 TextUses:1Used by:Timeline
Symbol 46 TextUses:1Used by:Timeline
Symbol 47 TextUses:1Used by:Timeline
Symbol 48 BitmapUsed by:53 279
Symbol 49 BitmapUsed by:53 260
Symbol 50 BitmapUsed by:53 273
Symbol 51 BitmapUsed by:53 124
Symbol 52 BitmapUsed by:53 166
Symbol 53 GraphicUses:48 49 50 51 52Used by:Timeline
Symbol 54 TextUses:1Used by:79
Symbol 55 GraphicUsed by:79
Symbol 56 TextUses:1Used by:79
Symbol 57 GraphicUsed by:79
Symbol 58 EditableTextUses:1Used by:79
Symbol 59 EditableTextUses:1Used by:79
Symbol 60 EditableTextUses:1Used by:79
Symbol 61 EditableTextUses:1Used by:79
Symbol 62 EditableTextUses:1Used by:79
Symbol 63 EditableTextUses:1Used by:79
Symbol 64 EditableTextUses:1Used by:79
Symbol 65 EditableTextUses:1Used by:79
Symbol 66 EditableTextUses:1Used by:79
Symbol 67 EditableTextUses:1Used by:79
Symbol 68 EditableTextUses:1Used by:79
Symbol 69 EditableTextUses:1Used by:79
Symbol 70 EditableTextUses:1Used by:79
Symbol 71 EditableTextUses:1Used by:79
Symbol 72 EditableTextUses:1Used by:79
Symbol 73 EditableTextUses:1Used by:79
Symbol 74 EditableTextUses:1Used by:79
Symbol 75 EditableTextUses:1Used by:79
Symbol 76 EditableTextUses:1Used by:79
Symbol 77 EditableTextUses:1Used by:79
Symbol 78 TextUses:1Used by:79
Symbol 79 MovieClipUses:54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78Used by:Timeline
Symbol 80 MovieClipUsed by:Timeline
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:102
Symbol 83 GraphicUsed by:90
Symbol 84 GraphicUsed by:90
Symbol 85 GraphicUsed by:90
Symbol 86 GraphicUsed by:90 100
Symbol 87 GraphicUsed by:90
Symbol 88 GraphicUsed by:90 100
Symbol 89 GraphicUsed by:90 100
Symbol 90 MovieClipUses:83 84 85 86 87 88 89Used by:91
Symbol 91 MovieClipUses:90Used by:102
Symbol 92 GraphicUsed by:100
Symbol 93 GraphicUsed by:100
Symbol 94 GraphicUsed by:100
Symbol 95 GraphicUsed by:100
Symbol 96 GraphicUsed by:100
Symbol 97 GraphicUsed by:100
Symbol 98 GraphicUsed by:100
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:92 93 94 95 96 97 98 99 86 88 89Used by:101
Symbol 101 MovieClipUses:100Used by:102
Symbol 102 MovieClipUses:82 91 101Used by:Timeline
Symbol 103 MovieClipUses:7Used by:107 108 224 225 257 258 269 270
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:107 108
Symbol 106 GraphicUses:32Used by:107 108
Symbol 107 MovieClipUses:103 105 106Used by:109
Symbol 108 MovieClipUses:103 105 106Used by:109
Symbol 109 MovieClipUses:107 108Used by:112 113
Symbol 110 GraphicUsed by:111 113
Symbol 111 MovieClipUses:110Used by:113
Symbol 112 MovieClipUses:109Used by:113
Symbol 113 MovieClipUses:109 110 111 112Used by:Timeline
Symbol 114 TextUses:1Used by:118
Symbol 115 SoundUsed by:118
Symbol 116 TextUses:1Used by:118
Symbol 117 TextUses:1Used by:118
Symbol 118 MovieClipUses:114 115 116 117Used by:Timeline
Symbol 119 GraphicUsed by:Timeline
Symbol 120 TextUses:1Used by:151
Symbol 121 TextUses:1Used by:151
Symbol 122 EditableTextUses:1Used by:151
Symbol 123 EditableTextUses:1Used by:151
Symbol 124 GraphicUses:51Used by:147 305
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:147 305
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:147 305
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:147 305
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:147 305
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:147 305
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:147 305
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:147 305
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:147 305
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:147 305
Symbol 143 BitmapUsed by:144
Symbol 144 GraphicUses:143Used by:147 305
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:147 305
Symbol 147 MovieClipUses:124 126 128 130 132 134 136 138 140 142 144 146Used by:151
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:150 304
Symbol 150 MovieClipUses:149Used by:151
Symbol 151 MovieClipUses:120 121 122 123 147 150Used by:Timeline
Symbol 152 TextUses:1Used by:Timeline
Symbol 153 EditableTextUses:1Used by:Timeline
Symbol 154 TextUses:1Used by:Timeline
Symbol 155 EditableTextUses:1Used by:Timeline
Symbol 156 TextUses:1Used by:159
Symbol 157 TextUses:1Used by:159
Symbol 158 TextUses:1Used by:159
Symbol 159 MovieClipUses:156 157 158Used by:Timeline
Symbol 160 TextUses:1Used by:Timeline
Symbol 161 GraphicUsed by:327  Timeline
Symbol 162 MovieClipUses:7Used by:327  Timeline
Symbol 163 TextUses:1Used by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:224 225
Symbol 166 GraphicUses:52Used by:224 225
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:224 225
Symbol 169 GraphicUsed by:224 225
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:224 225
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:224 225
Symbol 174 GraphicUsed by:224 225
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:224 225
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:224 225
Symbol 179 GraphicUsed by:224 225
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:224 225
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:224 225
Symbol 184 GraphicUsed by:224 225
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:224 225
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:224 225
Symbol 189 GraphicUsed by:224 225
Symbol 190 BitmapUsed by:191
Symbol 191 GraphicUses:190Used by:224 225
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:224 225
Symbol 194 GraphicUsed by:224 225
Symbol 195 BitmapUsed by:196
Symbol 196 GraphicUses:195Used by:224 225
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:224 225
Symbol 199 GraphicUsed by:224 225
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:224 225
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:224 225
Symbol 204 GraphicUsed by:224 225
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:224 225
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:224 225
Symbol 209 GraphicUsed by:224 225
Symbol 210 BitmapUsed by:211
Symbol 211 GraphicUses:210Used by:224 225
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:224 225
Symbol 214 GraphicUsed by:224 225
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:224 225
Symbol 217 BitmapUsed by:218
Symbol 218 GraphicUses:217Used by:224 225
Symbol 219 GraphicUsed by:224 225
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:224 225
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:224 225
Symbol 224 MovieClipUses:103 165 166 168 169 171 173 174 176 178 179 181 183 184 186 188 189 191 193 194 196 198 199 201 203 204 206 208 209 211 213 214 216 218 219 221 223Used by:226
Symbol 225 MovieClipUses:103 165 166 168 169 171 173 174 176 178 179 181 183 184 186 188 189 191 193 194 196 198 199 201 203 204 206 208 209 211 213 214 216 218 219 221 223Used by:226
Symbol 226 MovieClipUses:224 225Used by:227
Symbol 227 MovieClipUses:226Used by:272
Symbol 228 GraphicUses:34Used by:257 258
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:257 258
Symbol 231 BitmapUsed by:232
Symbol 232 GraphicUses:231Used by:257 258
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:257 258
Symbol 235 BitmapUsed by:236
Symbol 236 GraphicUses:235Used by:257 258
Symbol 237 BitmapUsed by:238
Symbol 238 GraphicUses:237Used by:257 258
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:257 258
Symbol 241 BitmapUsed by:242
Symbol 242 GraphicUses:241Used by:257 258
Symbol 243 BitmapUsed by:244
Symbol 244 GraphicUses:243Used by:257 258
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:257 258
Symbol 247 BitmapUsed by:248
Symbol 248 GraphicUses:247Used by:257 258
Symbol 249 BitmapUsed by:250
Symbol 250 GraphicUses:249Used by:257 258
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:257 258
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:257 258
Symbol 255 BitmapUsed by:256
Symbol 256 GraphicUses:255Used by:257 258
Symbol 257 MovieClipUses:103 228 230 232 234 236 238 240 242 244 246 248 250 252 254 256Used by:259
Symbol 258 MovieClipUses:103 228 230 232 234 236 238 240 242 244 246 248 250 252 254 256Used by:259
Symbol 259 MovieClipUses:257 258Used by:272
Symbol 260 GraphicUses:49Used by:269 270
Symbol 261 BitmapUsed by:262
Symbol 262 GraphicUses:261Used by:269 270
Symbol 263 BitmapUsed by:264
Symbol 264 GraphicUses:263Used by:269 270
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:269 270
Symbol 267 BitmapUsed by:268
Symbol 268 GraphicUses:267Used by:269 270
Symbol 269 MovieClipUses:103 260 262 264 266 268Used by:271
Symbol 270 MovieClipUses:103 260 262 264 266 268Used by:271
Symbol 271 MovieClipUses:269 270Used by:272
Symbol 272 MovieClipUses:227 259 271Used by:Timeline
Symbol 273 GraphicUses:50Used by:278
Symbol 274 GraphicUsed by:278
Symbol 275 GraphicUsed by:278 308 309
Symbol 276 BitmapUsed by:277
Symbol 277 GraphicUses:276Used by:278
Symbol 278 MovieClipUses:273 274 275 277Used by:Timeline
Symbol 279 GraphicUses:48Used by:290
Symbol 280 BitmapUsed by:281
Symbol 281 GraphicUses:280Used by:290
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:290
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:290
Symbol 286 BitmapUsed by:287
Symbol 287 GraphicUses:286Used by:290
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:290
Symbol 290 MovieClipUses:279 281 283 285 287 289Used by:Timeline
Symbol 291 GraphicUses:33Used by:302
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:302
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:302
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:302
Symbol 298 BitmapUsed by:299
Symbol 299 GraphicUses:298Used by:302
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:302
Symbol 302 MovieClipUses:291 293 295 297 299 301Used by:303
Symbol 303 MovieClipUses:302Used by:Timeline
Symbol 304 MovieClipUses:149Used by:Timeline
Symbol 305 MovieClipUses:124 126 128 130 132 134 136 138 140 142 144 146Used by:Timeline
Symbol 306 SoundUsed by:308 309
Symbol 307 GraphicUsed by:308 309
Symbol 308 MovieClipUses:275 306 307Used by:310
Symbol 309 MovieClipUses:275 306 307Used by:310
Symbol 310 MovieClipUses:308 309Used by:Timeline
Symbol 311 FontUsed by:312 319 323
Symbol 312 TextUses:311Used by:313
Symbol 313 MovieClipUses:312Used by:326
Symbol 314 GraphicUsed by:315 316
Symbol 315 MovieClipUses:314Used by:317
Symbol 316 MovieClipUses:314Used by:317
Symbol 317 MovieClipUses:315 316Used by:326
Symbol 318 SoundUsed by:326
Symbol 319 TextUses:311Used by:320
Symbol 320 MovieClipUses:319Used by:326
Symbol 321 SoundUsed by:326
Symbol 322 SoundUsed by:326
Symbol 323 TextUses:311Used by:324
Symbol 324 MovieClipUses:323Used by:326
Symbol 325 SoundUsed by:326
Symbol 326 MovieClipUses:313 317 318 320 321 322 324 325Used by:Timeline
Symbol 327 MovieClipUses:161 162Used by:Timeline
Symbol 328 TextUses:1Used by:Timeline
Symbol 329 TextUses:1Used by:334
Symbol 330 SoundUsed by:334
Symbol 331 TextUses:1Used by:334
Symbol 332 TextUses:1Used by:334
Symbol 333 EditableTextUses:1Used by:334
Symbol 334 MovieClipUses:329 330 331 332 333Used by:Timeline
Symbol 335 TextUses:1Used by:389
Symbol 336 TextUses:1Used by:338 386
Symbol 337 TextUses:1Used by:338 386
Symbol 338 ButtonUses:336 337 7Used by:389
Symbol 339 TextUses:1Used by:341
Symbol 340 TextUses:1Used by:341
Symbol 341 ButtonUses:339 340 7Used by:389
Symbol 342 BitmapUsed by:343 350
Symbol 343 GraphicUses:342Used by:356 383
Symbol 344 GraphicUsed by:348
Symbol 345 GraphicUsed by:348
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:348
Symbol 348 MovieClipUses:344 345 347 SS1Used by:356 383
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:342 349Used by:356 383
Symbol 351 GraphicUsed by:356 383
Symbol 352 TextUses:1Used by:355
Symbol 353 TextUses:1Used by:355
Symbol 354 TextUses:1Used by:355
Symbol 355 MovieClipUses:352 353 354Used by:383
Symbol 356 MovieClipUses:343 348 350 351Used by:383
Symbol 357 SoundUsed by:383
Symbol 358 BitmapUsed by:359
Symbol 359 GraphicUses:358Used by:366
Symbol 360 BitmapUsed by:361
Symbol 361 GraphicUses:360Used by:366
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:366
Symbol 364 BitmapUsed by:365
Symbol 365 GraphicUses:364Used by:366
Symbol 366 MovieClipUses:359 361 363 365Used by:383
Symbol 367 GraphicUsed by:382
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:368Used by:382
Symbol 370 BitmapUsed by:371
Symbol 371 GraphicUses:370Used by:374
Symbol 372 BitmapUsed by:373
Symbol 373 GraphicUses:372Used by:374
Symbol 374 MovieClipUses:371 373Used by:382
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:379 380
Symbol 377 BitmapUsed by:378
Symbol 378 GraphicUses:377Used by:379 380
Symbol 379 MovieClipUses:376 378Used by:381
Symbol 380 MovieClipUses:376 378Used by:381
Symbol 381 MovieClipUses:379 380Used by:382
Symbol 382 MovieClipUses:367 369 374 381Used by:383
Symbol 383 MovieClipUses:343 348 350 351 355 356 357 7 366 382Used by:389
Symbol 384 TextUses:1Used by:389
Symbol 385 EditableTextUses:1Used by:389
Symbol 386 ButtonUses:336 337 7Used by:389
Symbol 387 TextUses:1Used by:389
Symbol 388 EditableTextUses:1Used by:389
Symbol 389 MovieClipUses:335 338 341 383 384 385 386 387 388Used by:Timeline
Streaming Sound 1Used by:Symbol 348 MovieClip

Instance Names

"loading_movie"Frame 1Symbol 13 MovieClip
"highScores"Frame 5Symbol 79 MovieClip
"emailMovie"Frame 5Symbol 80 MovieClip
"bgModule"Frame 6Symbol 102 MovieClip
"witchMovie"Frame 6Symbol 113 MovieClip
"score"Frame 6Symbol 151 MovieClip
"qualityMovie"Frame 6Symbol 159 MovieClip
"time_bar"Frame 6Symbol 162 MovieClip
"baddiesModule"Frame 15Symbol 272 MovieClip
"ammo"Frame 15Symbol 278 MovieClip
"shield"Frame 15Symbol 290 MovieClip
"weapon"Frame 15Symbol 303 MovieClip
"potion"Frame 15Symbol 304 MovieClip
"key"Frame 15Symbol 305 MovieClip
"shootModule"Frame 15Symbol 310 MovieClip
"explosion"Frame 15Symbol 326 MovieClip
"time"Frame 15Symbol 327 MovieClip
"time_bar"Frame 25Symbol 162 MovieClip
"end"Frame 35Symbol 389 MovieClip
"bg1"Symbol 91 MovieClip Frame 1Symbol 90 MovieClip
"bg2"Symbol 91 MovieClip Frame 1Symbol 90 MovieClip
"bg1"Symbol 101 MovieClip Frame 1Symbol 100 MovieClip
"bg2"Symbol 101 MovieClip Frame 1Symbol 100 MovieClip
"bgBackModule"Symbol 102 MovieClip Frame 1Symbol 91 MovieClip
"bgFrontModule"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip
"hitArea"Symbol 107 MovieClip Frame 1Symbol 103 MovieClip
"hitArea"Symbol 108 MovieClip Frame 1Symbol 103 MovieClip
"witch_graphic"Symbol 109 MovieClip Frame 1Symbol 107 MovieClip
"witch_graphic"Symbol 109 MovieClip Frame 14Symbol 108 MovieClip
"witch_anim"Symbol 112 MovieClip Frame 1Symbol 109 MovieClip
"witch_anim"Symbol 113 MovieClip Frame 1Symbol 109 MovieClip
"key"Symbol 151 MovieClip Frame 1Symbol 147 MovieClip
"potion"Symbol 151 MovieClip Frame 1Symbol 150 MovieClip
"hitArea"Symbol 224 MovieClip Frame 1Symbol 103 MovieClip
"hitArea"Symbol 225 MovieClip Frame 1Symbol 103 MovieClip
"ghost_anim"Symbol 226 MovieClip Frame 1Symbol 224 MovieClip
"ghost_mov"Symbol 227 MovieClip Frame 1Symbol 226 MovieClip
"hitArea"Symbol 257 MovieClip Frame 1Symbol 103 MovieClip
"hitArea"Symbol 258 MovieClip Frame 1Symbol 103 MovieClip
"pumpin_anim"Symbol 259 MovieClip Frame 1Symbol 257 MovieClip
"pumpin_anim"Symbol 259 MovieClip Frame 4Symbol 258 MovieClip
"pumpin_anim"Symbol 259 MovieClip Frame 8Symbol 257 MovieClip
"hitArea"Symbol 269 MovieClip Frame 1Symbol 103 MovieClip
"hitArea"Symbol 270 MovieClip Frame 1Symbol 103 MovieClip
"bat_flap"Symbol 271 MovieClip Frame 10Symbol 270 MovieClip
"bat_flap"Symbol 271 MovieClip Frame 35Symbol 269 MovieClip
"ghost1"Symbol 272 MovieClip Frame 1Symbol 227 MovieClip
"pumpkin1"Symbol 272 MovieClip Frame 1Symbol 259 MovieClip
"bat"Symbol 272 MovieClip Frame 1Symbol 271 MovieClip
"fireball"Symbol 310 MovieClip Frame 1Symbol 308 MovieClip
"fireball"Symbol 310 MovieClip Frame 2Symbol 309 MovieClip
"time_bar"Symbol 327 MovieClip Frame 1Symbol 162 MovieClip
"door"Symbol 356 MovieClip Frame 1Symbol 348 MovieClip
"door"Symbol 383 MovieClip Frame 1Symbol 348 MovieClip
"win_text"Symbol 383 MovieClip Frame 1Symbol 355 MovieClip
"castle"Symbol 383 MovieClip Frame 30Symbol 356 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""

Labels

"start"Frame 6
"playing"Frame 15
"next_level"Frame 25
"end"Frame 35
"win"Symbol 389 MovieClip Frame 10
"submit"Symbol 389 MovieClip Frame 20

Dynamic Text Variables

percentSymbol 2 EditableText""
score4Symbol 58 EditableText""
score9Symbol 59 EditableText""
name4Symbol 60 EditableText""
name9Symbol 61 EditableText""
score3Symbol 62 EditableText""
score8Symbol 63 EditableText""
name3Symbol 64 EditableText""
name8Symbol 65 EditableText""
score2Symbol 66 EditableText""
score7Symbol 67 EditableText""
name2Symbol 68 EditableText""
name7Symbol 69 EditableText""
score1Symbol 70 EditableText""
score6Symbol 71 EditableText""
name1Symbol 72 EditableText""
name6Symbol 73 EditableText""
name0Symbol 74 EditableText""
score0Symbol 75 EditableText""
score5Symbol 76 EditableText""
name5Symbol 77 EditableText""
livesSymbol 122 EditableText"5"
pointsSymbol 123 EditableText""
shotsSymbol 153 EditableText"30"
levelSymbol 155 EditableText"0"
_root.levelSymbol 333 EditableText"2"
_root.nameSymbol 385 EditableText""
_root.emailSymbol 388 EditableText""




http://swfchan.com/6/26297/info.shtml
Created: 22/5 -2019 19:55:17 Last modified: 22/5 -2019 19:55:17 Server time: 17/05 -2024 12:04:07