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

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

Super Santa.swf

This is the info page for
Flash #69180

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


Text
music

Points Left:

You will only have 1 bullet to shoot the
falling present.so be careful.

Thanks too:

+

Ammo

ImpotentBoy2

Created By:
UnknownFury

Instructions

Controls

Arrow Pad or
W = UP
A = Left
S = Down
D = Right
You use your mouse to aim
Santas gun! Left click to shot

Scoring:
To win get all the required
points.  All Santas presents
fell out of his sleigh so you
have to get them back!. Use
Santas Jetpack to an
advantage.

Presents= +1
Shot Present= -1

Coal = -1
shot Coal= +2

PLAY!

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
stop();
Instance of Symbol 42 MovieClip in Frame 2
on (press) { getURL ("http://www.dumpgames.com", "_blank"); }
Frame 3
k = 0; while (k < 50) { duplicateMovieClip (this.snow, "snow" + k, k); k++; }
Instance of Symbol 62 MovieClip in Frame 3
onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 4
score = 30; if (score <= 0) { gotoAndStop (5); } var bc = 1000; onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } bullet.duplicateMovieClip("b" + bc, bc); };
Instance of Symbol 58 MovieClip "Santa" in Frame 4
onClipEvent (load) { xSpeed = 15; ySpeed = 15; decay = 1; gravity = 3; } onClipEvent (enterFrame) { _y = (_y + gravity); if (Key.isDown(39) || (Key.isDown(68))) { xAccel = xSpeed; this.gotoAndStop(2); } else if (Key.isDown(37) || (Key.isDown(65))) { xAccel = -xSpeed; this.gotoAndStop(3); } else { gotoAndStop (1); } if (Key.isDown(38) || (Key.isDown(87))) { yAccel = ySpeed; } if (Key.isDown(40) || (Key.isDown(83))) { yAccel = -ySpeed; } _x = (_x + xAccel); _y = (_y - yAccel); if (xAccel > 0) { xAccel = xAccel - decay; } else if (xAccel < 0) { xAccel = xAccel + decay; } if (yAccel > 0) { yAccel = yAccel - decay; } else if (yAccel < 0) { yAccel = yAccel + decay; } if (_y > 315) { _y = 315; } else if (_y < 0) { _y = 0; } if (_x > 493) { _x = 493; } else if (_x < 0) { _x = 0; } }
Instance of Symbol 70 MovieClip "gift" in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.bullet)) { _root.score = _root.score + 2; } } onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 72 MovieClip "bullet" in Frame 4
onClipEvent (load) { spd = 20; _x = (_root.Santa._x + _root.Santa.Weapon._x); _y = (_root.Santa._y + _root.Santa.Weapon._y); _rotation = _root.Santa.Weapon._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { _x = (_x + (spd * Math.cos((_rotation / 180) * Math.PI))); _y = (_y + (spd * Math.sin((_rotation / 180) * Math.PI))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.gift)) { _root.score = _root.score + 2; _root.gift._x = -69; this._x = -69; } if (this.hitTest(_root.gift2)) { _root.score = _root.score + 2; _root.gift2._x = -69; this._x = -69; } if (this.hitTest(_root.gift3)) { _root.score = _root.score + 2; _root.gift3._x = -69; this._x = -69; } if (this.hitTest(_root.coal)) { _root.score = _root.score - 2; _root.coal._x = -69; this._x = -69; } }
Instance of Symbol 74 MovieClip "coal" in Frame 4
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift3" in Frame 4
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift2" in Frame 4
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 78 MovieClip in Frame 4
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.gotoAndStop(5); } if (_root.score >= 40) { _root.gotoAndStop(15); } }
Frame 5
stop();
Instance of Symbol 81 MovieClip in Frame 5
on (press) { _root.gotoAndStop(6); }
Frame 6
stop(); score = 30; if (score <= 0) { gotoAndStop (5); } var bc = 1000; onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } bullet.duplicateMovieClip("b" + bc, bc); };
Instance of Symbol 58 MovieClip "Santa" in Frame 6
onClipEvent (load) { xSpeed = 15; ySpeed = 15; decay = 1; gravity = 3; } onClipEvent (enterFrame) { _y = (_y + gravity); if (Key.isDown(39) || (Key.isDown(68))) { xAccel = xSpeed; this.gotoAndStop(2); } else if (Key.isDown(37) || (Key.isDown(65))) { xAccel = -xSpeed; this.gotoAndStop(3); } else { gotoAndStop (1); } if (Key.isDown(38) || (Key.isDown(87))) { yAccel = ySpeed; } if (Key.isDown(40) || (Key.isDown(83))) { yAccel = -ySpeed; } _x = (_x + xAccel); _y = (_y - yAccel); if (xAccel > 0) { xAccel = xAccel - decay; } else if (xAccel < 0) { xAccel = xAccel + decay; } if (yAccel > 0) { yAccel = yAccel - decay; } else if (yAccel < 0) { yAccel = yAccel + decay; } if (_y > 315) { _y = 315; } else if (_y < 0) { _y = 0; } if (_x > 493) { _x = 493; } else if (_x < 0) { _x = 0; } }
Instance of Symbol 70 MovieClip "gift" in Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.bullet)) { _root.score = _root.score + 2; } } onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 72 MovieClip "bullet" in Frame 6
onClipEvent (load) { spd = 20; _x = (_root.Santa._x + _root.Santa.Weapon._x); _y = (_root.Santa._y + _root.Santa.Weapon._y); _rotation = _root.Santa.Weapon._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { _x = (_x + (spd * Math.cos((_rotation / 180) * Math.PI))); _y = (_y + (spd * Math.sin((_rotation / 180) * Math.PI))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.gift)) { _root.score = _root.score + 2; _root.gift._x = -69; this._x = -69; } if (this.hitTest(_root.gift2)) { _root.score = _root.score + 2; _root.gift2._x = -69; this._x = -69; } if (this.hitTest(_root.gift3)) { _root.score = _root.score + 2; _root.gift3._x = -69; this._x = -69; } if (this.hitTest(_root.coal)) { _root.score = _root.score - 2; _root.coal._x = -69; this._x = -69; } if (this.hitTest(_root.coal2)) { _root.score = _root.score - 2; _root.coal2._x = -69; this._x = -69; } if (this.hitTest(_root.coal3)) { _root.score = _root.score - 2; _root.coal3._x = -69; this._x = -69; } }
Instance of Symbol 74 MovieClip "coal" in Frame 6
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift3" in Frame 6
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift2" in Frame 6
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal2" in Frame 6
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal3" in Frame 6
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 78 MovieClip in Frame 6
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.gotoAndStop(7); } if (_root.score >= 40) { _root.gotoAndStop(15); } }
Frame 7
stop();
Instance of Symbol 81 MovieClip in Frame 7
on (press) { _root.gotoAndStop(8); }
Frame 8
stop(); score = 30; if (score <= 0) { gotoAndStop (5); } var bc = 1000; onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } bullet.duplicateMovieClip("b" + bc, bc); };
Instance of Symbol 58 MovieClip "Santa" in Frame 8
onClipEvent (load) { xSpeed = 15; ySpeed = 15; decay = 1; gravity = 3; } onClipEvent (enterFrame) { _y = (_y + gravity); if (Key.isDown(39) || (Key.isDown(68))) { xAccel = xSpeed; this.gotoAndStop(2); } else if (Key.isDown(37) || (Key.isDown(65))) { xAccel = -xSpeed; this.gotoAndStop(3); } else { gotoAndStop (1); } if (Key.isDown(38) || (Key.isDown(87))) { yAccel = ySpeed; } if (Key.isDown(40) || (Key.isDown(83))) { yAccel = -ySpeed; } _x = (_x + xAccel); _y = (_y - yAccel); if (xAccel > 0) { xAccel = xAccel - decay; } else if (xAccel < 0) { xAccel = xAccel + decay; } if (yAccel > 0) { yAccel = yAccel - decay; } else if (yAccel < 0) { yAccel = yAccel + decay; } if (_y > 315) { _y = 315; } else if (_y < 0) { _y = 0; } if (_x > 493) { _x = 493; } else if (_x < 0) { _x = 0; } }
Instance of Symbol 70 MovieClip "gift" in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.bullet)) { _root.score = _root.score + 2; } } onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 72 MovieClip "bullet" in Frame 8
onClipEvent (load) { spd = 20; _x = (_root.Santa._x + _root.Santa.Weapon._x); _y = (_root.Santa._y + _root.Santa.Weapon._y); _rotation = _root.Santa.Weapon._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { _x = (_x + (spd * Math.cos((_rotation / 180) * Math.PI))); _y = (_y + (spd * Math.sin((_rotation / 180) * Math.PI))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.gift)) { _root.score = _root.score + 2; _root.gift._x = -69; this._x = -69; } if (this.hitTest(_root.gift2)) { _root.score = _root.score + 2; _root.gift2._x = -69; this._x = -69; } if (this.hitTest(_root.gift3)) { _root.score = _root.score + 2; _root.gift3._x = -69; this._x = -69; } if (this.hitTest(_root.gift4)) { _root.score = _root.score + 2; _root.gift4._x = -69; this._x = -69; } if (this.hitTest(_root.gift5)) { _root.score = _root.score + 2; _root.gift5._x = -69; this._x = -69; } if (this.hitTest(_root.coal)) { _root.score = _root.score - 2; _root.coal._x = -69; this._x = -69; } if (this.hitTest(_root.coal2)) { _root.score = _root.score - 2; _root.coal2._x = -69; this._x = -69; } if (this.hitTest(_root.coal3)) { _root.score = _root.score - 2; _root.coal3._x = -69; this._x = -69; } if (this.hitTest(_root.coal4)) { _root.score = _root.score - 2; _root.coal4._x = -69; this._x = -69; } if (this.hitTest(_root.coal5)) { _root.score = _root.score - 2; _root.coal5._x = -69; this._x = -69; } }
Instance of Symbol 74 MovieClip "coal" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift3" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift2" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal2" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal3" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal4" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal5" in Frame 8
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift4" in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.bullet)) { _root.score = _root.score + 2; } } onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift5" in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.bullet)) { _root.score = _root.score + 2; } } onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 78 MovieClip in Frame 8
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.gotoAndStop(9); } if (_root.score >= 40) { _root.gotoAndStop(15); } }
Frame 9
stop();
Instance of Symbol 81 MovieClip in Frame 9
on (press) { _root.gotoAndStop(10); }
Frame 10
stop(); score = 30; if (score <= 0) { gotoAndStop (5); } var bc = 1000; onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } bullet.duplicateMovieClip("b" + bc, bc); };
Instance of Symbol 58 MovieClip "Santa" in Frame 10
onClipEvent (load) { xSpeed = 15; ySpeed = 15; decay = 1; gravity = 3; } onClipEvent (enterFrame) { _y = (_y + gravity); if (Key.isDown(39) || (Key.isDown(68))) { xAccel = xSpeed; this.gotoAndStop(2); } else if (Key.isDown(37) || (Key.isDown(65))) { xAccel = -xSpeed; this.gotoAndStop(3); } else { gotoAndStop (1); } if (Key.isDown(38) || (Key.isDown(87))) { yAccel = ySpeed; } if (Key.isDown(40) || (Key.isDown(83))) { yAccel = -ySpeed; } _x = (_x + xAccel); _y = (_y - yAccel); if (xAccel > 0) { xAccel = xAccel - decay; } else if (xAccel < 0) { xAccel = xAccel + decay; } if (yAccel > 0) { yAccel = yAccel - decay; } else if (yAccel < 0) { yAccel = yAccel + decay; } if (_y > 315) { _y = 315; } else if (_y < 0) { _y = 0; } if (_x > 493) { _x = 493; } else if (_x < 0) { _x = 0; } }
Instance of Symbol 70 MovieClip "gift" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 72 MovieClip "bullet" in Frame 10
onClipEvent (load) { spd = 20; _x = (_root.Santa._x + _root.Santa.Weapon._x); _y = (_root.Santa._y + _root.Santa.Weapon._y); _rotation = _root.Santa.Weapon._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { _x = (_x + (spd * Math.cos((_rotation / 180) * Math.PI))); _y = (_y + (spd * Math.sin((_rotation / 180) * Math.PI))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.gift)) { _root.score = _root.score + 2; _root.gift._x = -69; this._x = -69; } if (this.hitTest(_root.gift2)) { _root.score = _root.score + 2; _root.gift2._x = -69; this._x = -69; } if (this.hitTest(_root.gift3)) { _root.score = _root.score + 2; _root.gift3._x = -69; this._x = -69; } if (this.hitTest(_root.gift4)) { _root.score = _root.score + 2; _root.gift4._x = -69; this._x = -69; } if (this.hitTest(_root.gift5)) { _root.score = _root.score + 2; _root.gift5._x = -69; this._x = -69; } if (this.hitTest(_root.coal)) { _root.score = _root.score - 2; _root.coal._x = -69; this._x = -69; } if (this.hitTest(_root.coal2)) { _root.score = _root.score - 2; _root.coal2._x = -69; this._x = -69; } if (this.hitTest(_root.coal3)) { _root.score = _root.score - 2; _root.coal3._x = -69; this._x = -69; } if (this.hitTest(_root.coal4)) { _root.score = _root.score - 2; _root.coal4._x = -69; this._x = -69; } if (this.hitTest(_root.coal5)) { _root.score = _root.score - 2; _root.coal5._x = -69; this._x = -69; } }
Instance of Symbol 74 MovieClip "coal" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift3" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift2" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal2" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal3" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal4" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal5" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift4" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift5" in Frame 10
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 1 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 78 MovieClip in Frame 10
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.gotoAndStop(11); } if (_root.score >= 40) { _root.gotoAndStop(15); } }
Frame 11
stop();
Instance of Symbol 81 MovieClip in Frame 11
on (press) { _root.gotoAndStop(12); }
Frame 12
stop(); score = 30; if (score <= 0) { gotoAndStop (5); } var bc = 1000; onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } bullet.duplicateMovieClip("b" + bc, bc); };
Instance of Symbol 58 MovieClip "Santa" in Frame 12
onClipEvent (load) { xSpeed = 15; ySpeed = 15; decay = 1; gravity = 3; } onClipEvent (enterFrame) { _y = (_y + gravity); if (Key.isDown(39) || (Key.isDown(68))) { xAccel = xSpeed; this.gotoAndStop(2); } else if (Key.isDown(37) || (Key.isDown(65))) { xAccel = -xSpeed; this.gotoAndStop(3); } else { gotoAndStop (1); } if (Key.isDown(38) || (Key.isDown(87))) { yAccel = ySpeed; } if (Key.isDown(40) || (Key.isDown(83))) { yAccel = -ySpeed; } _x = (_x + xAccel); _y = (_y - yAccel); if (xAccel > 0) { xAccel = xAccel - decay; } else if (xAccel < 0) { xAccel = xAccel + decay; } if (yAccel > 0) { yAccel = yAccel - decay; } else if (yAccel < 0) { yAccel = yAccel + decay; } if (_y > 315) { _y = 315; } else if (_y < 0) { _y = 0; } if (_x > 493) { _x = 493; } else if (_x < 0) { _x = 0; } }
Instance of Symbol 70 MovieClip "gift" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 72 MovieClip "bullet" in Frame 12
onClipEvent (load) { spd = 20; _x = (_root.Santa._x + _root.Santa.Weapon._x); _y = (_root.Santa._y + _root.Santa.Weapon._y); _rotation = _root.Santa.Weapon._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { _x = (_x + (spd * Math.cos((_rotation / 180) * Math.PI))); _y = (_y + (spd * Math.sin((_rotation / 180) * Math.PI))); } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.gift)) { _root.score = _root.score + 2; _root.gift._x = -69; this._x = -69; } if (this.hitTest(_root.gift2)) { _root.score = _root.score + 2; _root.gift2._x = -69; this._x = -69; } if (this.hitTest(_root.gift3)) { _root.score = _root.score + 2; _root.gift3._x = -69; this._x = -69; } if (this.hitTest(_root.gift4)) { _root.score = _root.score + 2; _root.gift4._x = -69; this._x = -69; } if (this.hitTest(_root.gift5)) { _root.score = _root.score + 2; _root.gift5._x = -69; this._x = -69; } if (this.hitTest(_root.coal)) { _root.score = _root.score - 2; _root.coal._x = -69; this._x = -69; } if (this.hitTest(_root.coal2)) { _root.score = _root.score - 2; _root.coal2._x = -69; this._x = -69; } if (this.hitTest(_root.coal3)) { _root.score = _root.score - 2; _root.coal3._x = -69; this._x = -69; } if (this.hitTest(_root.coal4)) { _root.score = _root.score - 2; _root.coal4._x = -69; this._x = -69; } if (this.hitTest(_root.coal5)) { _root.score = _root.score - 2; _root.coal5._x = -69; this._x = -69; } }
Instance of Symbol 74 MovieClip "coal" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift3" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift2" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal2" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal3" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal4" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 74 MovieClip "coal5" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score + 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift4" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 70 MovieClip "gift5" in Frame 12
onClipEvent (load) { movieWidth = 550; movieHeight = 400; i = 5 + (Math.random() * 2); k = -3.14159265358979 + (Math.random() * Math.PI); } onClipEvent (enterFrame) { if (this.hitTest(_root.Santa)) { _root.score = _root.score - 1; _x = -69; } rad = rad - ((k / 180) * Math.PI); _x = (_x - Math.cos(rad)); _y = (_y + i); if (_y >= movieHeight) { _y = -5; } if ((_x >= movieWidth) || (_x <= 0)) { _x = (-10 + (Math.random() * movieWidth)); _y = -5; } }
Instance of Symbol 78 MovieClip in Frame 12
onClipEvent (enterFrame) { if (_root.score <= 0) { _root.gotoAndStop(13); } if (_root.score >= 40) { _root.gotoAndStop(15); } }
Frame 13
stop();
Instance of Symbol 81 MovieClip in Frame 13
on (press) { _root.gotoAndStop(14); }
Frame 14
stop();
Instance of Symbol 116 MovieClip in Frame 14
on (press) { _root.gotoAndStop(16); }
Instance of Symbol 118 MovieClip in Frame 14
onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }
Instance of Symbol 121 MovieClip in Frame 15
on (press) { _root.gotoAndStop(3); }
Instance of Symbol 62 MovieClip in Frame 17
onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }
Symbol 7 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 7 MovieClip Frame 2
gotoAndPlay (1);
Symbol 7 MovieClip Frame 3
stop(); _root.nextFrame();
Symbol 42 MovieClip Frame 1
gotoAndPlay (2);
Symbol 42 MovieClip Frame 85
_root.nextFrame();
Symbol 47 Button
on (press) { nextFrame(); }
Symbol 49 Button
on (press) { _root.gotoAndStop(17); }
Symbol 51 Button
on (press) { getURL ("http://www.dumpgames.com", "_blank"); }
Symbol 58 MovieClip Frame 1
stop();
Instance of Symbol 57 MovieClip "Weapon" in Symbol 58 MovieClip Frame 1
onClipEvent (mouseMove) { Xd = (_root._xmouse - _x) - _parent._x; Yd = (_root._ymouse - _y) - _parent._y; radAngle = Math.atan2(Yd, Xd); _rotation = int((radAngle * 180) / Math.PI); updateAfterEvent(); }
Symbol 58 MovieClip Frame 2
stop();
Symbol 58 MovieClip Frame 3
stop();
Symbol 116 MovieClip Frame 45
_root.gotoAndStop(15);
Symbol 127 Button
on (press) { getURL ("http://newgrounds.com/pm/send.php?tu=Ammo", "_blank"); }
Symbol 129 Button
on (press) { getURL ("http://newgrounds.com/pm/send.php?tu=impotentBoy2", "_blank"); }
Symbol 131 Button
on (press) { getURL ("http://newgrounds.com/pm/send.php?tu=UnknownFury", "_blank"); }
Symbol 140 Button
on (press) { gotoAndStop (4); }

Library Items

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

Instance Names

"Santa"Frame 4Symbol 58 MovieClip
"gift"Frame 4Symbol 70 MovieClip
"bullet"Frame 4Symbol 72 MovieClip
"coal"Frame 4Symbol 74 MovieClip
"gift3"Frame 4Symbol 70 MovieClip
"gift2"Frame 4Symbol 70 MovieClip
"Santa"Frame 6Symbol 58 MovieClip
"gift"Frame 6Symbol 70 MovieClip
"bullet"Frame 6Symbol 72 MovieClip
"coal"Frame 6Symbol 74 MovieClip
"gift3"Frame 6Symbol 70 MovieClip
"gift2"Frame 6Symbol 70 MovieClip
"coal2"Frame 6Symbol 74 MovieClip
"coal3"Frame 6Symbol 74 MovieClip
"Santa"Frame 8Symbol 58 MovieClip
"gift"Frame 8Symbol 70 MovieClip
"bullet"Frame 8Symbol 72 MovieClip
"coal"Frame 8Symbol 74 MovieClip
"gift3"Frame 8Symbol 70 MovieClip
"gift2"Frame 8Symbol 70 MovieClip
"coal2"Frame 8Symbol 74 MovieClip
"coal3"Frame 8Symbol 74 MovieClip
"coal4"Frame 8Symbol 74 MovieClip
"coal5"Frame 8Symbol 74 MovieClip
"gift4"Frame 8Symbol 70 MovieClip
"gift5"Frame 8Symbol 70 MovieClip
"Santa"Frame 10Symbol 58 MovieClip
"gift"Frame 10Symbol 70 MovieClip
"bullet"Frame 10Symbol 72 MovieClip
"coal"Frame 10Symbol 74 MovieClip
"gift3"Frame 10Symbol 70 MovieClip
"gift2"Frame 10Symbol 70 MovieClip
"coal2"Frame 10Symbol 74 MovieClip
"coal3"Frame 10Symbol 74 MovieClip
"coal4"Frame 10Symbol 74 MovieClip
"coal5"Frame 10Symbol 74 MovieClip
"gift4"Frame 10Symbol 70 MovieClip
"gift5"Frame 10Symbol 70 MovieClip
"Santa"Frame 12Symbol 58 MovieClip
"gift"Frame 12Symbol 70 MovieClip
"bullet"Frame 12Symbol 72 MovieClip
"coal"Frame 12Symbol 74 MovieClip
"gift3"Frame 12Symbol 70 MovieClip
"gift2"Frame 12Symbol 70 MovieClip
"coal2"Frame 12Symbol 74 MovieClip
"coal3"Frame 12Symbol 74 MovieClip
"coal4"Frame 12Symbol 74 MovieClip
"coal5"Frame 12Symbol 74 MovieClip
"gift4"Frame 12Symbol 70 MovieClip
"gift5"Frame 12Symbol 70 MovieClip
"bar"Symbol 7 MovieClip Frame 1Symbol 5 MovieClip
"Weapon"Symbol 58 MovieClip Frame 1Symbol 57 MovieClip

Labels

"loaded"Symbol 7 MovieClip Frame 3

Dynamic Text Variables

_root.scoreSymbol 75 EditableText""
_root.scoreSymbol 84 EditableText""
_root.scoreSymbol 87 EditableText""
_root.scoreSymbol 90 EditableText""
_root.scoreSymbol 93 EditableText""




http://swfchan.com/14/69180/info.shtml
Created: 10/4 -2019 15:32:33 Last modified: 10/4 -2019 15:32:33 Server time: 29/04 -2024 10:01:27