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

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

Evasion 2.swf

This is the info page for
Flash #67449

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


Text
evasion: 2.0

<p align="center"><font face="weltron urban" size="40" color="#ff0000" letterSpacing="0.000000" kerning="1">PlaY</font></p>

<p align="center"><font face="weltron urban" size="40" color="#ff0000" letterSpacing="0.000000" kerning="1">InStructions</font></p>

<p align="center"><font face="weltron urban" size="40" color="#ff0000" letterSpacing="0.000000" kerning="1">Contact</font></p>

<p align="center"></p>

3

2

1

<p align="center"><font face="Weltron Urban" size="40" color="#ff0000" letterSpacing="0.000000" kerning="1">Score 1</font></p>

<p align="center"><font face="Franklin Gothic Medium" size="28" color="#ffffff" letterSpacing="0.000000" kerning="1">REPLAY</font></p>

<p align="center"><font face="Weltron Urban" size="38" color="#ff0000" letterSpacing="0.000000" kerning="1">Your Score Was</font></p><p align="center"><font face="Weltron Urban" size="38" color="#ff0000" letterSpacing="0.000000" kerning="1">12345</font></p>

<p align="center"><font face="Weltron Urban" size="38" color="#ff0000" letterSpacing="0.000000" kerning="1">Your High Score Is</font></p><p align="center"><font face="Weltron Urban" size="38" color="#ff0000" letterSpacing="0.000000" kerning="1">12345</font></p>

ActionScript [AS1/AS2]

Frame 2
stop(); _global.highscore = 0; _global.dead = true; _global.level = 0;
Instance of Symbol 28 MovieClip "enemy2" in Frame 3
onClipEvent (load) { var transformer = (new flash.geom.Transform(this)); var colorTransformer = transformer.colorTransform; colorTransformer.redMultiplier = Math.random() * 1.5; colorTransformer.greenMultiplier = Math.random() * 1.5; colorTransformer.blueMultiplier = Math.random() * 3; transformer.colorTransform = colorTransformer; this.mass = (Math.random() * 20) + 20; this.corner = int((Math.random() * 4) + 1); this.maxvelocity = 5 + _global.level; this.minvelocity = -5 - _global.level; if (_global.number < 1) { this._x = 1000; } if (this.corner == 1) { this._x = 80; this._y = 80; this.xvelocity = 2; this.yvelocity = 2; } else if (this.corner == 2) { this._x = 470; this._y = 80; this.xvelocity = -2; this.yvelocity = 2; } else if (this.corner == 3) { this._x = 470; this._y = 470; this.xvelocity = -2; this.yvelocity = -2; } else if (this.corner == 4) { this._x = 80; this._y = 470; this.xvelocity = 2; this.yvelocity = -2; } } onClipEvent (enterFrame) { if (_global.dead == true) { removeMovieClip(this); } if (this._x > _root.char._x) { this.xvelocity = this.xvelocity - 0.3; } if (this._x < _root.char._x) { this.xvelocity = this.xvelocity + 0.3; } if (this._y > _root.char._y) { this.yvelocity = this.yvelocity - 0.3; } if (this._y < _root.char._y) { this.yvelocity = this.yvelocity + 0.3; } if (this.hitTest(_root.char)) { _root.char.xvelocity = _root.char.xvelocity + ((this.mass * this.xvelocity) / _root.char.mass); _root.char.yvelocity = _root.char.yvelocity + ((this.mass * this.yvelocity) / _root.char.mass); _root.char.mass = _root.char.mass - (this.mass / 2); removeMovieClip(this); } else { this._x = this._x + xvelocity; this._y = this._y + yvelocity; } if (this.xvelocity >= this.maxvelocity) { this.xvelocity = this.maxvelocity; } if (this.yvelocity >= this.maxvelocity) { this.yvelocity = this.maxvelocity; } if (this.xvelocity <= this.minvelocity) { this.xvelocity = this.minvelocity; } if (this.yvelocity <= this.minvelocity) { this.yvelocity = this.minvelocity; } this._x = this._x + this.xvelocity; this._y = this._y + this.yvelocity; if (this._x >= 475) { this.xvelocity = 10; } if (this._x >= 525) { removeMovieClip(this); } if (this._y >= 475) { this.yvelocity = 10; } if (this._y >= 525) { removeMovieClip(this); } if (this._x <= 75) { this.xvelocity = -10; } if (this._x <= 25) { removeMovieClip(this); } if (this._y <= 75) { this.yvelocity = -10; } if (this._y <= 25) { removeMovieClip(this); } this._rotation = this._rotation + (this.xvelocity + this.yvelocity); }
Frame 111
stop(); _global.dead = false;
Instance of Symbol 34 MovieClip "enemy" in Frame 111
onClipEvent (load) { var transformer = (new flash.geom.Transform(this)); var colorTransformer = transformer.colorTransform; colorTransformer.redMultiplier = Math.random() * 1.5; colorTransformer.greenMultiplier = Math.random() * 3; colorTransformer.blueMultiplier = Math.random() * 1.5; transformer.colorTransform = colorTransformer; this.mass = 5 + (20 * Math.random()); this._width = this.mass; this._height = this.mass; this.xvelocity = (this.yvelocity = 0); this.side = int((Math.random() * 4) + 1); if (this.side == 1) { this._x = 510; this._y = (Math.random() * 435) + 75; } else if (this.side == 2) { this._x = 75; this._y = (Math.random() * 435) + 75; } else if (this.side == 3) { this._x = (Math.random() * 435) + 75; this._y = 75; } else if (this.side == 4) { this._x = (Math.random() * 435) + 75; this._y = 510; } this.velocity = (10 * Math.random()) + _global.level; if (this.side == 1) { this.xvelocity = -this.velocity; } else if (this.side == 2) { this.xvelocity = this.velocity; } else if (this.side == 3) { this.yvelocity = this.velocity; } else if (this.side == 4) { this.yvelocity = -this.velocity; } this.time = 0; } onClipEvent (enterFrame) { if (_global.dead == true) { removeMovieClip(this); } this.time = this.time + 1; if (this.time >= (435 / this.velocity)) { removeMovieClip(this); } if (this.hitTest(_root.char)) { _root.char.xvelocity = _root.char.xvelocity + ((this.mass * this.xvelocity) / _root.char.mass); _root.char.yvelocity = _root.char.yvelocity + ((this.mass * this.yvelocity) / _root.char.mass); _root.char.mass = _root.char.mass - (this.mass / 2); removeMovieClip(this); } else { this._x = this._x + xvelocity; this._y = this._y + yvelocity; } }
Instance of Symbol 45 MovieClip "char" in Frame 111
onClipEvent (load) { this.yvelocity = 0; this.xvelocity = 0; this.maxvelocity = 15; this.minvelocity = -15; this.mass = 20; } onClipEvent (enterFrame) { if (this.mass < 1) { _root.nextFrame(); } this.mass = this.mass + 0.1; this._height = this.mass; this._width = this.mass; if (Key.isDown(39)) { this.xvelocity = this.xvelocity + 1; } if (Key.isDown(37)) { this.xvelocity = this.xvelocity - 1; } if (Key.isDown(38)) { this.yvelocity = this.yvelocity - 1; } if (Key.isDown(40)) { this.yvelocity = this.yvelocity + 1; } if (this.xvelocity > this.maxvelocity) { this.xvelocity = this.maxvelocity; } if (this.xvelocity < this.minvelocity) { this.xvelocity = this.minvelocity; } if (this.yvelocity > this.maxvelocity) { this.yvelocity = this.maxvelocity; } if (this.yvelocity < this.minvelocity) { this.yvelocity = this.minvelocity; } if ((!Key.isDown(37)) && (!Key.isDown(39))) { this.xvelocity = this.xvelocity * 0.95; } if ((!Key.isDown(38)) && (!Key.isDown(40))) { this.yvelocity = this.yvelocity * 0.95; } this._x = this._x + this.xvelocity; this._y = this._y + this.yvelocity; if (this.hitTest(_root.bounds.r) || (this.hitTest(_root.bounds.l))) { this._x = this._x - this.xvelocity; this.mass = this.mass - Math.abs(this.xvelocity); this.xvelocity = this.xvelocity * -0.9; } if (this._x < 85) { this._x = 85; } if (this._x > 515) { this._x = 515; } if (this.hitTest(_root.bounds.t) || (this.hitTest(_root.bounds.b))) { this._y = this._y - this.yvelocity; this.mass = this.mass - Math.abs(this.yvelocity); this.yvelocity = this.yvelocity * -0.9; } if (this._y < 85) { this._y = 85; } if (this._y > 515) { this._y = 515; } this._rotation = this._rotation + (this.xvelocity + this.yvelocity); }
Instance of Symbol 47 MovieClip "timer" in Frame 111
onClipEvent (load) { this.create = 0; this.createspeed = 32; this.createamount = 0; this.createamountmax = 0; this.create2 = 0; this.create2speed = 250; this.levelup = 0; this.levelspeed = 250; _global.number = -1; _global.level = 1; _global.score = 0; } onClipEvent (enterFrame) { _global.score = _global.score + int(_root.char.mass / 10); this.create = this.create + 1; this.create2 = this.create2 + 1; _global.number = _global.number + 1; this.levelup = this.levelup + 1; if (this.levelup == this.levelspeed) { _global.level = _global.level + 1; _root.bg.nextFrame(); this.levelup = 0; } _root.level.text = "Level " + _global.level; _root.score.text = "Score " + _global.score; if (this.create == (this.createspeed - _global.level)) { this.createamountmax = int((Math.random() * _global.level) + 1); if (this.createamountmax > 5) { this.createamountmax = 5; } this.createamount = 0; while (this.createamount <= this.createamountmax) { this.create = 0; _global.number = _global.number + this.createamount; duplicateMovieClip (_root.enemy, _global.number, _global.number); this.createamount = this.createamount + 1; } } if (this.create2 == (this.create2speed - _global.level)) { this.create2 = 0; duplicateMovieClip (_root.enemy2, -_global.number, _global.number); } }
Frame 112
stop(); _global.dead = true; if (_global.highscore < _global.score) { _global.highscore = _global.score; } finallevel.text = "You Were On Level " + _global.level; finalscore.text = "Your Score Was " + _global.score; highscore.text = "Your High Score Is " + _global.highscore;
Symbol 10 Button
on (release) { _root.play(); }
Symbol 11 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 17 Button
on (release) { gotoAndPlay (3); }
Symbol 21 Button
on (release) { _root.infotxt.text = "Move with the arrow keys. Hitting walls will shrink you based on your speed. Enemies will knock you back and shrink you, based on their size and speed. You will die if you shrink to nothing."; }
Symbol 24 Button
on (release) { _root.infotxt.text = "Made by:\nKillerbee333\nEmail:\nKillerbee333@comcast.net\nAIM:\ntheRandominator"; }
Symbol 53 Button
on (release) { gotoAndPlay (3); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:11
Symbol 3 GraphicUsed by:11
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:11
Symbol 6 GraphicUsed by:10 53
Symbol 7 GraphicUsed by:10
Symbol 8 GraphicUsed by:10 53
Symbol 9 GraphicUsed by:10 53
Symbol 10 ButtonUses:6 7 8 9Used by:11
Symbol 11 MovieClipUses:2 3 5 10Used by:Timeline
Symbol 12 FontUsed by:13 30 31 32 49 54 55
Symbol 13 TextUses:12Used by:Timeline
Symbol 14 GraphicUsed by:17
Symbol 15 FontUsed by:16 20 23 25
Symbol 16 EditableTextUses:15Used by:17
Symbol 17 ButtonUses:14 16Used by:Timeline
Symbol 18 GraphicUsed by:Timeline
Symbol 19 GraphicUsed by:21
Symbol 20 EditableTextUses:15Used by:21
Symbol 21 ButtonUses:19 20Used by:Timeline
Symbol 22 GraphicUsed by:24
Symbol 23 EditableTextUses:15Used by:24
Symbol 24 ButtonUses:22 23Used by:Timeline
Symbol 25 EditableTextUses:15Used by:Timeline
Symbol 26 SoundUsed by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 EditableTextUses:12Used by:Timeline
Symbol 31 EditableTextUses:12Used by:Timeline
Symbol 32 EditableTextUses:12Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:43
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:43
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:43
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:36 38 40 42Used by:Timeline
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 EditableTextUses:12Used by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 FontUsed by:52
Symbol 52 EditableTextUses:51Used by:53
Symbol 53 ButtonUses:6 52 8 9Used by:Timeline
Symbol 54 EditableTextUses:12Used by:Timeline
Symbol 55 EditableTextUses:12Used by:Timeline

Instance Names

"Btn_Play"Frame 2Symbol 17 Button
"Btn_Instructions"Frame 2Symbol 21 Button
"infotxt"Frame 2Symbol 25 EditableText
"enemy2"Frame 3Symbol 28 MovieClip
"countdown"Frame 3Symbol 30 EditableText
"countdown"Frame 39Symbol 31 EditableText
"countdown"Frame 75Symbol 32 EditableText
"enemy"Frame 111Symbol 34 MovieClip
"bounds"Frame 111Symbol 43 MovieClip
"char"Frame 111Symbol 45 MovieClip
"timer"Frame 111Symbol 47 MovieClip
"score"Frame 111Symbol 49 EditableText
"btn_replay"Frame 112Symbol 53 Button
"finalscore"Frame 112Symbol 54 EditableText
"highscore"Frame 112Symbol 55 EditableText
"bar"Symbol 11 MovieClip Frame 1Symbol 2 MovieClip
"b"Symbol 43 MovieClip Frame 1Symbol 36 MovieClip
"t"Symbol 43 MovieClip Frame 1Symbol 38 MovieClip
"l"Symbol 43 MovieClip Frame 1Symbol 40 MovieClip
"r"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata present, AS1/AS2.
SWFMetaData (77)Timeline Frame 1187 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><rdf:Description rdf:about="" xmlns ..."

Labels

"loaded"Symbol 11 MovieClip Frame 3




http://swfchan.com/14/67449/info.shtml
Created: 11/4 -2019 13:10:27 Last modified: 11/4 -2019 13:10:27 Server time: 01/05 -2024 23:46:44