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

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

Witchcraft.swf

This is the info page for
Flash #63416

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


Text
K W I N G

P L A Y

This ring
marks the
end of
the level.

Attack through walls to obtain
Magic without actually touching it.

Use A and D to move left and right. Use W to jump.

Use the Spacebar to activate your
broom. Be careful-it uses up Magic!
If you run out, simply touch the
ball below to refill your Magic.

Click and hold to attack.

MAGIC

HEALTH

SCORE:

0000

CAUTION: You can't aerial attack!

YOU WIN!

Game by Kwing
Song by Marilyn  Manson
Inspiration from FazzleMan
Help from FeindishDemon
Right-Click to Replay

ActionScript [AS1/AS2]

Frame 1
function fun() { getURL ("http://www.freewebs.com/hork-bajir/"); } var con = new ContextMenu(); con.hideBuiltInItems(); var new_menu = new ContextMenuItem("Kwing's Site", fun); con.customItems.push(new_menu); _root.menu = con;
Frame 2
magic = 100; health = 100; enemyhp = 10; stop();
Frame 3
vcam.score = 0;
Instance of Symbol 52 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Instance of Symbol 68 MovieClip "player" in Frame 3
onClipEvent (enterFrame) { if (this._y > 300) { this._x = 18; this._y = 148; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; _root.magic = _root.magic - 1; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 73 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 73 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 98 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nextFrame(); } }
Instance of Symbol 100 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 111 MovieClip "vcam" in Frame 3
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 68 MovieClip "player" in Frame 4
onClipEvent (load) { this._x = -37; this._y = -800; } onClipEvent (enterFrame) { if (_root.health < 1) { _root.health = 100; this._x = -37; this._y = -800; } if (this._y > 130) { this._x = -37; this._y = -800; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; _root.magic = _root.magic - 1; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.health = _root.health - 1; } if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Instance of Symbol 68 MovieClip "player" in Frame 5
onClipEvent (load) { this._x = -25; this._y = -7; } onClipEvent (enterFrame) { if (_root.health < 1) { _root.health = 100; this._x = -25; this._y = -7; } if (this._y > 300) { this._x = -25; this._y = -7; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; _root.magic = _root.magic - 1; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 98 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nextFrame(); } }
Instance of Symbol 73 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 73 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 73 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 114 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.health = _root.health - 1; } if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Instance of Symbol 114 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.health = _root.health - 1; } if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Instance of Symbol 114 MovieClip in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.health = _root.health - 1; } if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Instance of Symbol 68 MovieClip "player" in Frame 6
onClipEvent (load) { this._x = 2145; this._y = 50; } onClipEvent (enterFrame) { if (_root.health < 1) { _root.health = 100; this._x = 2145; this._y = 50; } if (this._y > 530) { this._x = 2145; this._y = 50; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; _root.magic = _root.magic - 1; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 98 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nextFrame(); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 100 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.vcam.score = _root.vcam.score + 1; unloadMovie (this); } }
Instance of Symbol 68 MovieClip "player" in Frame 7
onClipEvent (load) { this._x = -300; this._y = -570; } onClipEvent (enterFrame) { if (_root.health < 1) { _root.health = 100; this._x = -300; this._y = -570; } if (this._y > -300) { this._x = -300; this._y = -570; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; _root.magic = _root.magic - 1; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 73 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.magic = 100; } }
Instance of Symbol 52 MovieClip in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.health = _root.health - 1; } if (this.hitTest(_root.player.attack.lightning)) { this._x = 1156; } this._x = this._x - 10; if (this._x < -700) { this._x = 1156; } }
Instance of Symbol 123 MovieClip in Frame 8
onClipEvent (enterFrame) { if (_root.player._x > this._x) { this._x = this._x + 5; this.gotoAndStop(2); } if (_root.player._y > this._y) { this._y = this._y + 5; } if (_root.player._x < this._x) { this._x = this._x - 5; this.gotoAndStop(1); } if (_root.player._y < this._y) { this._y = this._y - 5; } if (this.hitTest(_root.player)) { _root.health = _root.health - 2; } }
Instance of Symbol 68 MovieClip "player" in Frame 8
onClipEvent (load) { _root.magic = 100; this._x = 1177; this._y = -566; } onClipEvent (enterFrame) { if (_root.health < 1) { _root.health = 100; this._x = 1177; this._y = -566; } if (this._y > -300) { this._x = 1177; this._y = -566; } } onClipEvent (load) { var grav = 0; var speed = 10; var jumpHeight = 15; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(1))) && (!Key.isDown(32))) { this.gotoAndStop(3); } if ((((Key.isDown(1) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(32))) { this.gotoAndStop(5); } if (((Key.isDown(32) && (_root.magic > 0)) && (!Key.isDown(87))) && (!Key.isDown(1))) { this.gotoAndStop(4); grav = grav - 2; } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Instance of Symbol 132 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { nextFrame(); _root.enemyhp = _root.enemyhp - 1; } if (_root.enemyhp < 1) { _root.nextFrame(); } }
Instance of Symbol 68 MovieClip in Frame 9
onClipEvent (enterFrame) { if (Key.isDown(2)) { _root.gotoAndStop(2); } }
Symbol 25 MovieClip Frame 40
stop();
Symbol 36 Button
on (release) { _root.play(); }
Symbol 37 MovieClip Frame 1
function onEnterFrame() { if (!loaded) { var _local3 = _root.getBytesLoaded() / _root.getBytesTotal(); if (_local3 >= 1) { play(); bar._x = initX; loaded = true; } else { bar._x = initX + ((_local3 - 1) * bar._width); } } var _local4 = getTimer() - time; timeAccum = timeAccum + _local4; while (timeAccum >= FRAME_TIME) { var _local2 = 0; while (_local2 < timeClips.length) { if (timeClips[_local2]._currentframe < timeClips[_local2]._totalframes) { timeClips[_local2].nextFrame(); } else { timeClips[_local2].gotoAndStop(1); } _local2++; } if (loaded && (_currentframe < _totalframes)) { nextFrame(); } timeAccum = timeAccum - FRAME_TIME; } time = time + _local4; } stop(); _root.stop(); var initX = bar._x; var time = getTimer(); var FRAME_TIME = 33.3333333333333; var timeAccum = 0; var loaded = false; timeClips = [bargfx, tank.mc0, tank.mc1, tank.mc2, tank.mc3, tank.mc4, tank.mc4.mc0, tank.mc4.mc1, tank.mc4.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc0.mc2, tank.mc4.mc0.mc0.mc0.mc3, tank.mc4.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc2, tank.mc5.mc0]; var i = 0; while (i < timeClips.length) { timeClips[i].stop(); i++; }
Symbol 37 MovieClip Frame 51
Symbol 42 Button
on (release) { nextFrame(); }
Symbol 111 MovieClip Frame 1
function camControl() { parentColor.setTransform(camColor.getTransform()); var _local4 = sX / this._width; var _local3 = sY / this._height; _parent._x = cX - (this._x * _local4); _parent._y = cY - (this._y * _local3); _parent._xscale = 100 * _local4; _parent._yscale = 100 * _local3; } function resetStage() { var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0}; parentColor.setTransform(_local2); _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; } parentColor.setTransform(camColor.getTransform()); this._visible = true; var oldMode = Stage.scaleMode; Stage.scaleMode = "exactFit"; var cX = (Stage.width / 2); var cY = (Stage.height / 2); var sX = Stage.width; var sY = Stage.height; Stage.scaleMode = oldMode; var camColor = new Color(this); var parentColor = new Color(_parent); this.onEnterFrame = camControl; camControl(); this.onUnload = resetStage;
Instance of Symbol 103 MovieClip in Symbol 111 MovieClip Frame 1
onClipEvent (enterFrame) { _xscale = _root.magic; }
Instance of Symbol 105 MovieClip in Symbol 111 MovieClip Frame 1
onClipEvent (enterFrame) { _xscale = _root.health; }
Instance of Symbol 52 MovieClip in Symbol 114 MovieClip Frame 60
onClipEvent (enterFrame) { if (this.hitTest(_root.player.attack.lightning)) { unloadMovie (this); } }
Symbol 123 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 6
gotoAndStop (1);

Library Items

Symbol 1 GraphicUsed by:37
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:37
Symbol 4 GraphicUsed by:37
Symbol 5 GraphicUsed by:7
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:5 6Used by:37
Symbol 8 GraphicUsed by:37
Symbol 9 GraphicUsed by:37
Symbol 10 GraphicUsed by:37
Symbol 11 FontUsed by:12 33
Symbol 12 TextUses:11Used by:37
Symbol 13 GraphicUsed by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:13 14Used by:37
Symbol 16 GraphicUsed by:23 25
Symbol 17 GraphicUsed by:23 25
Symbol 18 GraphicUsed by:23 25
Symbol 19 GraphicUsed by:23 25
Symbol 20 GraphicUsed by:23 25
Symbol 21 GraphicUsed by:23 25
Symbol 22 GraphicUsed by:23 25
Symbol 23 MovieClipUses:16 17 18 19 20 21 22Used by:37
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:16 17 18 19 20 21 22 24Used by:37
Symbol 26 ShapeTweeningUsed by:37
Symbol 27 GraphicUsed by:37
Symbol 28 ShapeTweeningUsed by:37
Symbol 29 ShapeTweeningUsed by:37
Symbol 30 GraphicUsed by:37
Symbol 31 GraphicUsed by:36
Symbol 32 GraphicUsed by:36
Symbol 33 TextUses:11Used by:36
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 ButtonUses:31 32 33 34 35Used by:37
Symbol 37 MovieClipUses:1 3 4 7 8 9 10 12 15 23 25 26 27 28 29 30 36Used by:Timeline
Symbol 38 SoundUsed by:Timeline
Symbol 39 GraphicUsed by:42
Symbol 40 GraphicUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 ButtonUses:39 40 41Used by:Timeline
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:Timeline
Symbol 45 FontUsed by:46 47 48 49 50 106 107 117
Symbol 46 TextUses:45Used by:Timeline
Symbol 47 TextUses:45Used by:Timeline
Symbol 48 TextUses:45Used by:Timeline
Symbol 49 TextUses:45Used by:Timeline
Symbol 50 TextUses:45Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:114 123  Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:61 62 63 64 67
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:61 62 63 64 67
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:61 62 63 64 67
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:61 62 63 64 67
Symbol 61 MovieClipUses:54 56 58 60Used by:68
Symbol 62 MovieClipUses:54 56 58 60Used by:68
Symbol 63 MovieClipUses:54 56 58 60Used by:68
Symbol 64 MovieClipUses:54 56 58 60Used by:68
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:67
Symbol 67 MovieClipUses:54 56 58 60 66Used by:68
Symbol 68 MovieClipUses:61 62 63 64 67Used by:Timeline
Symbol 69 BitmapUsed by:70 112 115 118 121 124
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:70Used by:Timeline
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:Timeline
Symbol 74 GraphicUsed by:98
Symbol 75 GraphicUsed by:98
Symbol 76 GraphicUsed by:98
Symbol 77 GraphicUsed by:98
Symbol 78 GraphicUsed by:98
Symbol 79 GraphicUsed by:98
Symbol 80 GraphicUsed by:98
Symbol 81 GraphicUsed by:98
Symbol 82 GraphicUsed by:98
Symbol 83 GraphicUsed by:98
Symbol 84 GraphicUsed by:98
Symbol 85 GraphicUsed by:98
Symbol 86 GraphicUsed by:98
Symbol 87 GraphicUsed by:98
Symbol 88 GraphicUsed by:98
Symbol 89 GraphicUsed by:98
Symbol 90 GraphicUsed by:98
Symbol 91 GraphicUsed by:98
Symbol 92 GraphicUsed by:98
Symbol 93 GraphicUsed by:98
Symbol 94 GraphicUsed by:98
Symbol 95 GraphicUsed by:98
Symbol 96 GraphicUsed by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 GraphicUsed by:111
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:111
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:111
Symbol 106 TextUses:45Used by:111
Symbol 107 TextUses:45Used by:111
Symbol 108 FontUsed by:109 110 133 134
Symbol 109 TextUses:108Used by:111
Symbol 110 EditableTextUses:108Used by:111
Symbol 111 MovieClipUses:101 103 105 106 107 109 110Used by:Timeline
Symbol 112 GraphicUses:69Used by:113
Symbol 113 MovieClipUses:112Used by:Timeline
Symbol 114 MovieClipUses:52Used by:Timeline
Symbol 115 GraphicUses:69Used by:116
Symbol 116 MovieClipUses:115Used by:Timeline
Symbol 117 TextUses:45Used by:Timeline
Symbol 118 GraphicUses:69Used by:119
Symbol 119 MovieClipUses:118Used by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 GraphicUses:69Used by:122
Symbol 122 MovieClipUses:121Used by:Timeline
Symbol 123 MovieClipUses:52Used by:Timeline
Symbol 124 GraphicUses:69Used by:125
Symbol 125 MovieClipUses:124Used by:Timeline
Symbol 126 GraphicUsed by:132
Symbol 127 GraphicUsed by:132
Symbol 128 GraphicUsed by:132
Symbol 129 GraphicUsed by:132
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:126 127 128 129 130 131Used by:Timeline
Symbol 133 TextUses:108Used by:Timeline
Symbol 134 TextUses:108Used by:Timeline

Instance Names

"player"Frame 3Symbol 68 MovieClip
"ground"Frame 3Symbol 71 MovieClip
"vcam"Frame 3Symbol 111 MovieClip
"player"Frame 4Symbol 68 MovieClip
"ground"Frame 4Symbol 113 MovieClip
"player"Frame 5Symbol 68 MovieClip
"ground"Frame 5Symbol 116 MovieClip
"player"Frame 6Symbol 68 MovieClip
"ground"Frame 6Symbol 119 MovieClip
"player"Frame 7Symbol 68 MovieClip
"ground"Frame 7Symbol 122 MovieClip
"player"Frame 8Symbol 68 MovieClip
"ground"Frame 8Symbol 125 MovieClip
"bar"Symbol 37 MovieClip Frame 1Symbol 3 MovieClip
"bargfx"Symbol 37 MovieClip Frame 1Symbol 7 MovieClip
"bargfx"Symbol 37 MovieClip Frame 2Symbol 7 MovieClip
"bargfx"Symbol 37 MovieClip Frame 20Symbol 7 MovieClip
"lightning"Symbol 67 MovieClip Frame 1Symbol 66 MovieClip
"attack"Symbol 68 MovieClip Frame 5Symbol 67 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 10 bytes ""

Labels

"LOAD"Symbol 37 MovieClip Frame 1
"COMPLETE_STOP"Symbol 37 MovieClip Frame 2

Dynamic Text Variables

scoreSymbol 110 EditableText"0000"




http://swfchan.com/13/63416/info.shtml
Created: 13/4 -2019 17:31:47 Last modified: 13/4 -2019 17:31:47 Server time: 14/05 -2024 08:41:31