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

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

Manuvr.swf

This is the info page for
Flash #46606

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


Text
LOADING...

%

100

MANUVR

a joey roe game

play

play

instructions

instructions

website

website

Instructions

The aim is the game is simple; control the red circle using the arrow keys and
collect the small blue circles before the disappear.
Beware, hitting one of the large white obstacles will result in GAME OVER.

+100

GAME OVER

GAME OVER

GAME OVER

GAME OVER

GAME OVER

GAME OVER

FINAL SCORE

GAME OVER

ActionScript [AS1/AS2]

Frame 1
_root.stop();
Instance of Symbol 7 MovieClip in Frame 1
onClipEvent (enterFrame) { _root.pLoaded = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); this._width = _root.pLoaded * 3; if (_root.pLoaded >= 100) { _root.play(); } }
Frame 2
_root.stop(); sMenu = new Sound(); sMenu.attachSound("ambient1"); sMenu.start(0, 999);
Frame 3
_root.stop();
Frame 4
_root.stop(); _root.newObstruct = 120; _root.score = 0; _root.lastValue = "+0"; sMenu.stop(); sPickup = new Sound(); sPickup.attachSound("ding"); sObstruct = new Sound(); sObstruct.attachSound("pop"); sPlay = new Sound(); sPlay.attachSound("techno1"); sPlay.start(0, 9999);
Instance of Symbol 34 MovieClip "pickup" in Frame 4
onClipEvent (load) { function regen() { var _local1 = this; _local1.value = 100; _local1._x = Math.random() * 640; _local1._y = Math.random() * 480; } this.regen(); } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.lastValue = "+" + this.value; _root.lastValueAnim.play(); _root.lastValueAnim._x = this._x; _root.lastValueAnim._y = this._y; _root.sPickup.start(0, 1); _root.score = _root.score + this.value; this.regen(); } if (this.value == 0) { if (_root.score > 0) { _root.score = _root.score - 30; } this.regen(); } this._alpha = this.value; this.value = this.value - 1; }
Instance of Symbol 40 MovieClip in Frame 4
onClipEvent (enterFrame) { this._x = this._x + ((_root.player._x - this._x) / 1); this._y = this._y + ((_root.player._y - this._y) / 1); }
Instance of Symbol 40 MovieClip in Frame 4
onClipEvent (enterFrame) { this._x = this._x + ((_root.player._X - this._x) / 2); this._y = this._y + ((_root.player._y - this._y) / 2); }
Instance of Symbol 40 MovieClip in Frame 4
onClipEvent (enterFrame) { this._x = this._x + ((_root.player._x - this._x) / 3); this._y = this._y + ((_root.player._y - this._y) / 3); }
Instance of Symbol 40 MovieClip in Frame 4
onClipEvent (enterFrame) { this._x = this._x + ((_root.player._x - this._x) / 4); this._y = this._y + ((_root.player._y - this._y) / 4); }
Instance of Symbol 40 MovieClip in Frame 4
onClipEvent (enterFrame) { this._x = this._x + ((_root.player._x - this._x) / 5); this._y = this._y + ((_root.player._y - this._y) / 5); }
Instance of Symbol 40 MovieClip "player" in Frame 4
onClipEvent (load) { this.xspd = 0; this.yspd = 0; this.aspd = 1; this.dspd = 0.5; this.mspd = 12; } onClipEvent (enterFrame) { this._x = this._x + this.xspd; this._y = this._y + this.yspd; if (Key.isDown(39)) { if (this.xspd < this.mspd) { this.xspd = this.xspd + this.aspd; } } else if (Key.isDown(37)) { if (this.xspd > (-this.mspd)) { this.xspd = this.xspd - this.aspd; } } else if (this.xspd > 0) { this.xspd = this.xspd - this.dspd; } else if (this.xspd < 0) { this.xspd = this.xspd + this.dspd; } if (Key.isDown(40)) { if (this.yspd < this.mspd) { this.yspd = this.yspd + this.aspd; } } else if (Key.isDown(38)) { if (this.yspd > (-this.mspd)) { this.yspd = this.yspd - this.aspd; } } else if (this.yspd > 0) { this.yspd = this.yspd - this.dspd; } else if (this.yspd < 0) { this.yspd = this.yspd + this.dspd; } }
Instance of Symbol 7 MovieClip in Frame 4
onClipEvent (load) { i = 0; counter = 0; } onClipEvent (enterFrame) { if (this.counter == _root.newObstruct) { i++; _root.obstruct.duplicateMovieClip("obstruct" + i, i); counter = 0; } counter++; }
Instance of Symbol 41 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { if (_root.player.xspd < 0) { _root.player.xspd = -_root.player.xspd; } } }
Instance of Symbol 41 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { if (_root.player.xspd > 0) { _root.player.xspd = -_root.player.xspd; } } }
Instance of Symbol 41 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { if (_root.player.yspd < 0) { _root.player.yspd = -_root.player.yspd; } } }
Instance of Symbol 41 MovieClip in Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { if (_root.player.yspd > 0) { _root.player.yspd = -_root.player.yspd; } } }
Instance of Symbol 43 MovieClip "obstruct" in Frame 4
onClipEvent (load) { this.size = (Math.random() * 40) + 20; this._width = this.size; this._height = this.size; this._x = Math.random() * 640; this._y = Math.random() * 480; while (this.hitTest(_root.player)) { this._x = Math.random() * 640; this._y = Math.random() * 480; } sObstruct.start(0, 1); } onClipEvent (enterFrame) { if (this.hitTest(_root.pickup)) { _root.pickup.regen(); } if (this.hitTest(_root.player)) { _root.play(); } if (_root._currentframe > 4) { this.removeMovieClip(); } }
Frame 5
sPlay.stop(); sGO = new Sound(); sGO.attachSound("techno2"); sGO.start(0, 1);
Frame 143
_root.gotoAndPlay(2);
Symbol 22 Button
on (press) { gotoAndPlay (4); }
Symbol 26 Button
on (press) { gotoAndPlay (3); }
Symbol 29 Button
on (press) { getURL ("http://www.joeyroe.co.uk", "_blank"); }
Symbol 38 MovieClip Frame 20
this.stop();

Library Items

Symbol 1 Sound [pop]
Symbol 2 Sound [techno2]
Symbol 3 Sound [ambient1]
Symbol 4 Sound [ding]
Symbol 5 Sound [techno1]
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 FontUsed by:9 10 53
Symbol 9 TextUses:8Used by:Timeline
Symbol 10 TextUses:8Used by:Timeline
Symbol 11 FontUsed by:12 44 54
Symbol 12 EditableTextUses:11Used by:Timeline
Symbol 13 GraphicUsed by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 FontUsed by:16 17 19 21 23 25 27 28 32
Symbol 16 TextUses:15Used by:Timeline
Symbol 17 TextUses:15Used by:Timeline
Symbol 18 GraphicUsed by:22 26 29
Symbol 19 TextUses:15Used by:22
Symbol 20 GraphicUsed by:22
Symbol 21 TextUses:15Used by:22
Symbol 22 ButtonUses:18 19 20 21Used by:Timeline
Symbol 23 TextUses:15Used by:26
Symbol 24 GraphicUsed by:26 29
Symbol 25 TextUses:15Used by:26
Symbol 26 ButtonUses:18 23 24 25Used by:Timeline
Symbol 27 TextUses:15Used by:29
Symbol 28 TextUses:15Used by:29
Symbol 29 ButtonUses:18 27 24 28Used by:Timeline
Symbol 30 FontUsed by:31
Symbol 31 TextUses:30Used by:Timeline
Symbol 32 TextUses:15Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 FontUsed by:36
Symbol 36 EditableTextUses:35Used by:38
Symbol 37 GraphicUsed by:38 41  Timeline
Symbol 38 MovieClipUses:36 37Used by:Timeline
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:Timeline
Symbol 41 MovieClipUses:37Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 EditableTextUses:11Used by:Timeline
Symbol 45 FontUsed by:46 47 48 49 50 51 55
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 TextUses:45Used by:Timeline
Symbol 52 GraphicUsed by:Timeline
Symbol 53 TextUses:8Used by:Timeline
Symbol 54 EditableTextUses:11Used by:Timeline
Symbol 55 TextUses:45Used by:Timeline

Instance Names

"pickup"Frame 4Symbol 34 MovieClip
"lastValueAnim"Frame 4Symbol 38 MovieClip
"player"Frame 4Symbol 40 MovieClip
"obstruct"Frame 4Symbol 43 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$0m$SlDjkpG8bCVm2xCmtU6x.1."
ExportAssets (56)Timeline Frame 1Symbol 1 as "pop"
ExportAssets (56)Timeline Frame 1Symbol 2 as "techno2"
ExportAssets (56)Timeline Frame 1Symbol 3 as "ambient1"
ExportAssets (56)Timeline Frame 1Symbol 4 as "ding"
ExportAssets (56)Timeline Frame 1Symbol 5 as "techno1"

Dynamic Text Variables

_root.pLoadedSymbol 12 EditableText"100"
_root.lastValueSymbol 36 EditableText"+100"
_root.scoreSymbol 44 EditableText""
_root.scoreSymbol 54 EditableText""




http://swfchan.com/10/46606/info.shtml
Created: 3/5 -2019 09:12:23 Last modified: 3/5 -2019 09:12:23 Server time: 17/05 -2024 06:28:13