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

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

Brighton Bounty Hunter.swf

This is the info page for
Flash #22660

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


Text
instructions

BRIGHTON BOUNTY HUNTER

FLASH GAMING FROM ADAM TWYCROSS

play

BRIGHTON BOUNTY HUNTER

Crikey! Those pesky aliens have invaded England's finest city...not sure
what they're up to, but it's bound to be no good!

Jump into your trusty spaceship and defend the town from the invading horde.
Use your arrow keys to navigate and the space bar to fire.

But beware- Brighton rascals Norman Cook and Chris Eubank have taken the
opportunity for a joyride on a flying platform.

You can gain extra points for picking them up, but be sure not to
shoot them.

Right, let's go bother some aliens.... Last one back has to
live in Moulsecombe!

£

adamtwycross.co.uk

Game Over

Game Over

Play Again

Play Again

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 7 MovieClip in Frame 1
on (press) { _root.gotoAndPlay(2); }
Instance of Symbol 12 MovieClip in Frame 1
on (press) { _root.gotoAndPlay(3); }
Frame 2
stop();
Frame 3
numEnemy = 6; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } numEubank = 1; i = 2; while (i <= numEubank) { eubank.duplicateMovieClip("eubank" + i, i + 100); i++; } numNorman = 1; i = 2; while (i <= numNorman) { norman.duplicateMovieClip("eubank" + i, i + 100); i++; } score = 0; health = 100;
Instance of Symbol 27 MovieClip "laser" in Frame 3
onClipEvent (load) { laserMoveSpeed = 20; this._y = _root.spaceship._y + 8; this._x = _root.spaceship._x + 85; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.score = _root.score + 20; _root["enemy" + i].gotoAndPlay(4); this.removeMovieClip(); } if (this.hitTest(_root.enemy)) { this.removeMovieClip(); _root.score = _root.score + 20; _root.enemy.gotoAndPlay(4); this.removeMovieClip(); } i++; } i = 1; while (i <= _root.numEubank) { if (this.hitTest(_root["eubank" + i])) { _root.health = _root.health - 5; _root["eubank" + i].gotoAndPlay(2); if (_root.health <= 0) { _root.gotoAndStop("gameOver"); } } if (this.hitTest(_root.eubank)) { _root.health = _root.health - 5; _root.eubank.gotoAndPlay(2); if (_root.health <= 0) { _root.gotoAndStop("gameOver"); } } i = 1; while (i <= _root.numNorman) { if (this.hitTest(_root["norman" + i])) { _root.health = _root.health - 5; _root["norman" + i].gotoAndPlay(2); if (_root.health <= 0) { _root.gotoAndStop("gameOver"); } } if (this.hitTest(_root.norman)) { _root.health = _root.health - 5; _root.norman.gotoAndPlay(2); if (_root.health <= 0) { _root.gotoAndStop("gameOver"); } } i++; } i++; } } }
Instance of Symbol 30 MovieClip "spaceship" in Frame 3
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(32)) { _root.laser.duplicateMovieClip("laser" + laserCounter, laserCounter); } _root["laser" + lasercounter]._visible = true; lasercounter++; if (Key.isDown(39) and (this._x < 500)) { this._x = this._x + moveSpeed; } else if (Key.isDown(37) and (this._x > 0)) { this._x = this._x - moveSpeed; } if (Key.isDown(40) and (this._y < 330)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38) and (this._y > 0)) { this._y = this._y - moveSpeed; } }
Instance of Symbol 39 MovieClip "enemy1" in Frame 3
onClipEvent (load) { function reset() { this._x = 520; this._y = random(200) + 100; enemySpeed = random(10) + 1; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { this._x = this._x - enemySpeed; if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { gotoAndPlay (2); _root.health = _root.health - 10; if (_root.health <= 0) { _root.health = 0; _root.gotoAndStop("gameOver"); } } }
Instance of Symbol 45 MovieClip "eubank" in Frame 3
onClipEvent (load) { function reset() { this._x = 520; this._y = random(350) + 50; eubankSpeed = random(10) + 1; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { this._x = this._x - eubankSpeed; if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.score = _root.score + 100; reset(); } }
Instance of Symbol 52 MovieClip "norman" in Frame 3
onClipEvent (load) { function reset() { this._x = 520; this._y = random(200) + 100; normanSpeed = random(10) + 1; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { this._x = this._x - normanSpeed; if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.score = _root.score + 100; reset(); } }
Instance of Symbol 66 MovieClip in Frame 3
on (release) { getURL ("http://www.adamtwycross.co.uk", "_blank"); }
Frame 4
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 3
stop();
Symbol 39 MovieClip Frame 8
stop(); stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 6
stop();
Symbol 52 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 6
stop();
Symbol 74 Button
on (release) { gotoAndPlay (3); }

Library Items

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

Instance Names

"laser"Frame 3Symbol 27 MovieClip
"spaceship"Frame 3Symbol 30 MovieClip
"enemy1"Frame 3Symbol 39 MovieClip
"eubank"Frame 3Symbol 45 MovieClip
"norman"Frame 3Symbol 52 MovieClip

Labels

"gameOver"Frame 5

Dynamic Text Variables

healthSymbol 56 EditableText""
scoreSymbol 62 EditableText""




http://swfchan.com/5/22660/info.shtml
Created: 26/5 -2019 20:08:08 Last modified: 26/5 -2019 20:08:08 Server time: 29/04 -2024 16:32:41