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

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

cirno_foe.swf

This is the info page for
Flash #10502

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


Text
Ice cream collected

Score

enemies defeated

time remaining

Keys

http://www.walfas.org/

Results

Game over

Replay

Loading

Loading complete

ActionScript [AS1/AS2]

Frame 1
stop(); init = function () { width = 330; height = 400; max_snowsize = 10; snowflakes = 50; snow = 0; while (snow < snowflakes) { t = attachMovie("snow", "snow" + snow, snow); t._alpha = 20 + (Math.random() * 60); t._x = (-(width / 2)) + (Math.random() * (1.5 * width)); t._y = (-(height / 2)) + (Math.random() * (1.5 * height)); t._xscale = (t._yscale = 50 + (Math.random() * (max_snowsize * 10))); t.k = 1 + (Math.random() * 2); t.wind = -1.5 + (Math.random() * 4.2); t.onEnterFrame = mover; snow++; } }; mover = function () { this._y = this._y + this.k; this._x = this._x + this.wind; if (this._y > (height + 10)) { this._y = -20; } if (this._x > (width + 20)) { this._x = (-(width / 2)) + (Math.random() * (1.5 * width)); this._y = -20; } else if (this._x < -20) { this._x = (-(width / 2)) + (Math.random() * (1.5 * width)); this._y = -20; } }; init();
Instance of Symbol 10 MovieClip "cirno" in Frame 1
onClipEvent (load) { _root.speed = 8; _root.cirnoscale = 25; _root.killed = 0; _root.icecreamCollected = 0; b = 0; timer = 0; _root.score = 0; } onClipEvent (enterFrame) { if (Key.isDown(40)) { this._y = this._y + _root.speed; if (hitTest(_root.bottomwall)) { this._y = this._y - _root.speed; } } if (Key.isDown(38)) { this._y = this._y - _root.speed; if (hitTest(_root.topwall)) { this._y = this._y + _root.speed; } } if (Key.isDown(39)) { this._xscale = _root.cirnoscale; if (hitTest(_root.rightwall)) { this._x = this._x - _root.speed; } this._x = this._x + _root.speed; } if (Key.isDown(37)) { this._xscale = -_root.cirnoscale; if (hitTest(_root.leftwall)) { this._x = this._x + _root.speed; } this._x = this._x - _root.speed; } if (!Key.isDown(90)) { timer = 3; } var ebullets = 0; while (ebullets < 3) { if (_root.cirno.hitbox.hitTest(_root["ebullet" + ebullets])) { _root.time = _root.time - 6; _root["ebullet" + ebullets]._y = (-Math.random()) * 500; _root["ebullet" + ebullets]._x = (Math.random() * 300) + 25; } ebullets++; } var enemies = 0; while (enemies < 5) { if (_root.cirno.hitbox.hitTest(_root["enemy" + enemies])) { _root.time = _root.time - 8; _root["enemy" + enemies]._y = (-Math.random()) * 300; _root["enemy" + enemies]._x = (Math.random() * 300) + 25; } enemies++; } if (this.hitTest(_root.icecream)) { _root.score = _root.score + 300; _root.icecreamCollected++; _root.time = _root.time + 15; _root.icecream._y = ((-Math.random()) * 500) - 2000; _root.icecream._x = (Math.random() * 300) + 25; } if (Key.isDown(90)) { if (timer >= 3) { b++; duplicateMovieClip ("_root.bullet", "bullet" + b, b + 75); _root["bullet" + b]._x = this._x; _root["bullet" + b]._y = this._y - 10; _root["bullet" + b]._visible = true; timer = 0; } timer++; } }
Instance of Symbol 12 MovieClip "bullet" in Frame 1
onClipEvent (load) { bulletspeed = 15; } onClipEvent (enterFrame) { var b = 0; while (b < bulletspeed) { _y = (_y-1); b++; } var h = 0; while (h <= 5) { if (this.hitTest(_root["enemy" + h])) { _root["enemy" + h].play(); this.removeMovieClip(); } h++; } if (this._y <= -10) { this.removeMovieClip(); } }
Instance of Symbol 14 MovieClip "ebullet1" in Frame 1
onClipEvent (enterFrame) { this._y = this._y + 10; if (this._y >= 400) { this._y = (-Math.random()) * 500; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 14 MovieClip "ebullet2" in Frame 1
onClipEvent (enterFrame) { this._y = this._y + 15; if (this._y >= 400) { this._y = (-Math.random()) * 500; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 14 MovieClip "ebullet3" in Frame 1
onClipEvent (enterFrame) { this._y = this._y + 12.5; if (this._y >= 400) { this._y = (-Math.random()) * 500; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 17 MovieClip "enemy1" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 10; this._y = this._y + 10; if (this._y >= 400) { this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 20 MovieClip "enemy2" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 15; this._y = this._y + 15; if (this._y >= 400) { this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 23 MovieClip "enemy3" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 7.5; this._y = this._y + 7.5; if (this._y >= 400) { this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 26 MovieClip "enemy4" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; this._y = this._y + 5; if (this._y >= 400) { this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 29 MovieClip "enemy5" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 15; this._y = this._y + 15; if (this._y >= 400) { this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 31 MovieClip "icecream" in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 15; this._y = this._y + 15; if (this._y >= 400) { this._y = ((-Math.random()) * 500) - 2000; this._x = (Math.random() * 300) + 25; } }
Instance of Symbol 45 MovieClip in Frame 1
onClipEvent (load) { _root.time = 175; } onClipEvent (enterFrame) { _root.time = _root.time - 0.2; this._width = _root.time; if (_root.time <= 0) { _root.gotoAndStop(2); } }
Frame 4
myLoaded = Math.round(getBytesLoaded()); myTotal = Math.round(getBytesTotal()); myPercent = myLoaded / myTotal; myBar._width = myPercent * 150; myText = Math.round(myPercent * 100) + "%"; if (myLoaded == myTotal) { gotoAndStop (5); } else { gotoAndPlay (3); }
Symbol 17 MovieClip Frame 1
stop();
Symbol 17 MovieClip Frame 8
this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; _root.score = _root.score + 100; _root.killed++; _root.time = _root.time + 0.8; gotoAndStop (1);
Symbol 20 MovieClip Frame 1
stop();
Symbol 20 MovieClip Frame 8
this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; _root.score = _root.score + 100; _root.killed++; _root.time = _root.time + 0.8; gotoAndStop (1);
Symbol 23 MovieClip Frame 1
stop();
Symbol 23 MovieClip Frame 8
this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; _root.score = _root.score + 100; _root.killed++; _root.time = _root.time + 0.8; gotoAndStop (1);
Symbol 26 MovieClip Frame 1
stop();
Symbol 26 MovieClip Frame 8
this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; _root.score = _root.score + 100; _root.killed++; _root.time = _root.time + 0.8; gotoAndStop (1);
Symbol 29 MovieClip Frame 1
stop();
Symbol 29 MovieClip Frame 8
this._y = (-Math.random()) * 300; this._x = (Math.random() * 300) + 25; _root.score = _root.score + 100; _root.killed++; _root.time = _root.time + 0.8; gotoAndStop (1);
Symbol 51 Button
on (release) { getURL ("http://www.walfas.org/", "_blank"); }
Symbol 59 Button
on (release) { gotoAndStop (1); }
Symbol 69 Button
on (release) { play(); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [snow]Uses:1
Symbol 3 GraphicUsed by:Timeline
Symbol 4 GraphicUsed by:10
Symbol 5 GraphicUsed by:10
Symbol 6 GraphicUsed by:10
Symbol 7 GraphicUsed by:8 46 59 69
Symbol 8 MovieClipUses:7Used by:10
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:4 5 6 8 9Used by:Timeline
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:Timeline
Symbol 15 ShapeTweeningUsed by:17
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:15 16Used by:Timeline
Symbol 18 ShapeTweeningUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:18 19Used by:Timeline
Symbol 21 ShapeTweeningUsed by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:21 22Used by:Timeline
Symbol 24 ShapeTweeningUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:24 25Used by:Timeline
Symbol 27 ShapeTweeningUsed by:29
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:27 28Used by:Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 FontUsed by:34 35 36 37 39 40 41 52 53 54 55
Symbol 34 EditableTextUses:33Used by:Timeline
Symbol 35 EditableTextUses:33Used by:Timeline
Symbol 36 EditableTextUses:33Used by:Timeline
Symbol 37 TextUses:33Used by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 TextUses:33Used by:Timeline
Symbol 40 TextUses:33Used by:Timeline
Symbol 41 TextUses:33Used by:Timeline
Symbol 42 FontUsed by:43 50 58 63 68
Symbol 43 TextUses:42Used by:Timeline
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:Timeline
Symbol 46 MovieClipUses:7Used by:Timeline
Symbol 47 SoundUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:51
Symbol 50 TextUses:42Used by:51
Symbol 51 ButtonUses:49 50Used by:Timeline
Symbol 52 EditableTextUses:33Used by:Timeline
Symbol 53 EditableTextUses:33Used by:Timeline
Symbol 54 EditableTextUses:33Used by:Timeline
Symbol 55 TextUses:33Used by:Timeline
Symbol 56 FontUsed by:57
Symbol 57 TextUses:56Used by:Timeline
Symbol 58 TextUses:42Used by:59 69
Symbol 59 ButtonUses:7 58Used by:Timeline
Symbol 60 GraphicUsed by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 TextUses:42Used by:Timeline
Symbol 64 FontUsed by:65 67
Symbol 65 EditableTextUses:64Used by:Timeline
Symbol 66 GraphicUsed by:Timeline
Symbol 67 EditableTextUses:64Used by:Timeline
Symbol 68 TextUses:42Used by:Timeline
Symbol 69 ButtonUses:7 58Used by:Timeline

Instance Names

"cirno"Frame 1Symbol 10 MovieClip
"bullet"Frame 1Symbol 12 MovieClip
"ebullet1"Frame 1Symbol 14 MovieClip
"ebullet2"Frame 1Symbol 14 MovieClip
"ebullet3"Frame 1Symbol 14 MovieClip
"enemy1"Frame 1Symbol 17 MovieClip
"enemy2"Frame 1Symbol 20 MovieClip
"enemy3"Frame 1Symbol 23 MovieClip
"enemy4"Frame 1Symbol 26 MovieClip
"enemy5"Frame 1Symbol 29 MovieClip
"icecream"Frame 1Symbol 31 MovieClip
"topwall"Frame 1Symbol 46 MovieClip
"leftwall"Frame 1Symbol 46 MovieClip
"rightwall"Frame 1Symbol 46 MovieClip
"bottomwall"Frame 1Symbol 46 MovieClip
"topwall"Frame 3Symbol 46 MovieClip
"leftwall"Frame 3Symbol 46 MovieClip
"rightwall"Frame 3Symbol 46 MovieClip
"bottomwall"Frame 3Symbol 46 MovieClip
"myBar"Frame 3Symbol 62 MovieClip
"hitbox"Symbol 10 MovieClip Frame 1Symbol 8 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 2 as "snow"

Dynamic Text Variables

_root.scoreSymbol 34 EditableText""
_root.killedSymbol 35 EditableText""
_root.icecreamCollectedSymbol 36 EditableText""
_root.scoreSymbol 52 EditableText""
_root.killedSymbol 53 EditableText""
_root.icecreamCollectedSymbol 54 EditableText""
myTextSymbol 65 EditableText""
myTextSymbol 67 EditableText""




http://swfchan.com/3/10502/info.shtml
Created: 8/6 -2019 09:45:04 Last modified: 8/6 -2019 09:45:04 Server time: 10/05 -2024 12:02:59