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

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

Night Vision Sniper.swf

This is the info page for
Flash #26322

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


Text
LOADING

MOUSEBREAKER PRODUCT

c 2003 ALL RIGHTS RESERVED

use up and down keys to zoom SNIPER SIGHT
and the MOUSE TO AIM AND FIRE
3 levels
10 targets per level.
SCORE 9000 or more to proceed to next level.
a perfect shot you gets you a bonus target!

Nightvision sniper

Mousebreaker presents

instructions

CDG

PLAY

Terms and conditions of use of this game

Put this game on your website?

sound

sound

Score:

Targets shown:

Last shot:

0

BEST:

level 1

Level completed

0

level 2

0

level 3

checking scores...

Terms and conditions of use of this game

Put this game on your website?

game over!

423

HIGH

FINAL SCORE

PLAY again?

PLAY MORE

GAMES

SCOREs

ActionScript [AS1/AS2]

Frame 1
session_best = 0;
Frame 3
stop();
Instance of Symbol 92 MovieClip "sniper" in Frame 4
onClipEvent (load) { _level0.main._xscale = 200; _level0.main._yscale = 200; _level0.main1._xscale = 100; _level0.main1._yscale = 100; _level0.main1._y = 200; _level0.main1._x = 275; mag = 1; old_mag = mag; target_state = "closed"; targets_limit = 10; target_current = 0; total = 0; last_score = 0; i = 1; while (i <= 9) { _level0.main["target" + i].board.bullethole._visible = false; _level0.main1["target" + i].board.bullethole._visible = false; i++; } } onClipEvent (mouseDown) { if (shot_allowed) { x = _level0.main["target" + t]._xmouse; y = _level0.main["target" + t]._ymouse; if (_level0.main["target" + t].board.hitTest(_level0._xmouse, _level0._ymouse, false)) { _level0.main.explode._x = _level0.main._xmouse; _level0.main.explode._y = _level0.main._ymouse; _level0.main1.explode._x = _level0.main.explode._x; _level0.main1.explode._y = _level0.main.explode._y; _level0.main.explode.gotoandplay(2); _level0.main1.explode.gotoandplay(2); _level0.shot.gotoandplay(2); scdx = _level0.main["target" + t].board._x - x; scdy = _level0.main["target" + t].board._y - y; scdiff = 10 * Math.sqrt((scdx * scdx) + (scdy * scdy)); scdiff = int(scdiff); score = 1020 - scdiff; display_shot = true; if (score > 1000) { score = 1000; } if (score < 0) { score = 0; display_shot = false; } total = total + score; } shot_allowed = false; } } onClipEvent (enterFrame) { if (target_state == "closed") { if (random(100) < 20) { score = 0; t = 1 + random(9); target_state = "opening"; timer = 0; _level0.main["target" + t].gotoandplay(2); _level0.main1["target" + t].gotoandplay(2); _level0.outline.gotoandplay(2); _level0.outline._xscale = _level0.main1["target" + t]._xscale; _level0.outline._yscale = _level0.main1["target" + t]._yscale; _level0.outline._x = _level0.main1._x + _level0.main1["target" + t]._x; _level0.outline._y = _level0.main1._y + _level0.main1["target" + t]._y; trace("x = " + _level0.outline._x); trace("y = " + _level0.main1["target" + t]._y); shot_allowed = true; display_shot = false; } } if (target_state == "opening") { timer++; if (timer > 30) { _level0.main["target" + t].gotoandplay("close"); _level0.main1["target" + t].gotoandplay("close"); target_state = "wait"; shot_allowed = false; if (score < 1000) { target_current++; } timer = 0; } } if (target_state == "wait") { timer++; if (timer > 30) { target_state = "closed"; timer = 0; if (target_current >= targets_limit) { target_state = "gameover"; _level0.gotoandplay("done"); } } } _x = _level0._xmouse; _y = _level0._ymouse; _level0.sight._x = _x; _level0.sight._y = _y; dx = 275 - _x; dy = 200 - _y; _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); if (Key.isDown(38)) { if (up) { } else { up = true; mag++; if (mag > 10) { mag = 10; } } } else { up = false; } if (Key.isDown(40)) { if (down) { } else { down = true; mag--; if (mag < 1) { mag = 1; } } } else { down = false; } if (old_mag != mag) { _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); _level0.main._xscale = 100 * (mag + 1); _level0.main._yscale = 100 * (mag + 1); _level0.zoom.gotoandplay(2); } old_mag = mag; }
Frame 8
stop();
Frame 9
_level0.score = sniper.total; if (_level0.score > 9000) { play(); } else { gotoAndStop (64); }
Instance of Symbol 92 MovieClip "sniper" in Frame 24
onClipEvent (load) { _level0.main._xscale = 200; _level0.main._yscale = 200; _level0.main1._xscale = 100; _level0.main1._yscale = 100; _level0.main1._y = 200; _level0.main1._x = 275; mag = 1; old_mag = mag; target_state = "closed"; targets_limit = 10; target_current = 0; total = _level0.score; last_score = 0; i = 1; while (i <= 9) { _level0.main["target" + i].board.bullethole._visible = false; _level0.main1["target" + i].board.bullethole._visible = false; i++; } } onClipEvent (mouseDown) { if (shot_allowed) { x = _level0.main["target" + t]._xmouse; y = _level0.main["target" + t]._ymouse; if (_level0.main["target" + t].board.hitTest(_level0._xmouse, _level0._ymouse, false)) { _level0.main.explode._x = _level0.main._xmouse; _level0.main.explode._y = _level0.main._ymouse; _level0.main1.explode._x = _level0.main.explode._x; _level0.main1.explode._y = _level0.main.explode._y; _level0.main.explode.gotoandplay(2); _level0.main1.explode.gotoandplay(2); _level0.shot.gotoandplay(2); scdx = _level0.main["target" + t].board._x - x; scdy = _level0.main["target" + t].board._y - y; scdiff = 10 * Math.sqrt((scdx * scdx) + (scdy * scdy)); scdiff = int(scdiff); score = 1020 - scdiff; display_shot = true; if (score > 1000) { score = 1000; } if (score < 0) { score = 0; display_shot = false; } total = total + score; } shot_allowed = false; } } onClipEvent (enterFrame) { if (target_state == "closed") { if (random(100) < 20) { score = 0; t = 1 + random(9); target_state = "opening"; timer = 0; _level0.main["target" + t].gotoandplay(2); _level0.main1["target" + t].gotoandplay(2); _level0.outline.gotoandplay(2); _level0.outline._xscale = _level0.main1["target" + t]._xscale; _level0.outline._yscale = _level0.main1["target" + t]._yscale; _level0.outline._x = _level0.main1._x + _level0.main1["target" + t]._x; _level0.outline._y = _level0.main1._y + _level0.main1["target" + t]._y; trace("x = " + _level0.outline._x); trace("y = " + _level0.main1["target" + t]._y); shot_allowed = true; display_shot = false; } } if (target_state == "opening") { timer++; if (timer > 30) { _level0.main["target" + t].gotoandplay("close"); _level0.main1["target" + t].gotoandplay("close"); target_state = "wait"; shot_allowed = false; if (score < 1000) { target_current++; } timer = 0; } } if (target_state == "wait") { timer++; if (timer > 30) { target_state = "closed"; timer = 0; if (target_current >= targets_limit) { target_state = "gameover"; _level0.gotoandplay("done2"); } } } _x = _level0._xmouse; _y = _level0._ymouse; _level0.sight._x = _x; _level0.sight._y = _y; dx = 275 - _x; dy = 200 - _y; _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); if (Key.isDown(38)) { if (up) { } else { up = true; mag++; if (mag > 10) { mag = 10; } } } else { up = false; } if (Key.isDown(40)) { if (down) { } else { down = true; mag--; if (mag < 1) { mag = 1; } } } else { down = false; } if (old_mag != mag) { _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); _level0.main._xscale = 100 * (mag + 1); _level0.main._yscale = 100 * (mag + 1); _level0.zoom.gotoandplay(2); } old_mag = mag; }
Frame 28
stop();
Frame 29
_level0.score = sniper.total; trace("SCORE..." + _level0.score); if (_level0.score > 18000) { play(); } else { gotoAndStop (64); }
Instance of Symbol 92 MovieClip "sniper" in Frame 44
onClipEvent (load) { _level0.main._xscale = 200; _level0.main._yscale = 200; _level0.main1._xscale = 100; _level0.main1._yscale = 100; _level0.main1._y = 200; _level0.main1._x = 275; mag = 1; old_mag = mag; target_state = "closed"; targets_limit = 10; target_current = 0; total = _level0.score; last_score = 0; i = 1; while (i <= 9) { _level0.main["target" + i].board.bullethole._visible = false; _level0.main1["target" + i].board.bullethole._visible = false; i++; } } onClipEvent (mouseDown) { if (shot_allowed) { x = _level0.main["target" + t]._xmouse; y = _level0.main["target" + t]._ymouse; if (_level0.main["target" + t].board.hitTest(_level0._xmouse, _level0._ymouse, false)) { _level0.main.explode._x = _level0.main._xmouse; _level0.main.explode._y = _level0.main._ymouse; _level0.main1.explode._x = _level0.main.explode._x; _level0.main1.explode._y = _level0.main.explode._y; _level0.main.explode.gotoandplay(2); _level0.main1.explode.gotoandplay(2); _level0.shot.gotoandplay(2); scdx = _level0.main["target" + t].board._x - x; scdy = _level0.main["target" + t].board._y - y; scdiff = 10 * Math.sqrt((scdx * scdx) + (scdy * scdy)); scdiff = int(scdiff); score = 1020 - scdiff; display_shot = true; if (score > 1000) { score = 1000; } if (score < 0) { score = 0; display_shot = false; } total = total + score; } shot_allowed = false; } } onClipEvent (enterFrame) { if (target_state == "closed") { if (random(100) < 20) { score = 0; t = 1 + random(9); target_state = "opening"; timer = 0; _level0.main["target" + t].gotoandplay(2); _level0.main1["target" + t].gotoandplay(2); _level0.outline.gotoandplay(2); _level0.outline._xscale = _level0.main1["target" + t]._xscale; _level0.outline._yscale = _level0.main1["target" + t]._yscale; _level0.outline._x = _level0.main1._x + _level0.main1["target" + t]._x; _level0.outline._y = _level0.main1._y + _level0.main1["target" + t]._y; trace("x = " + _level0.outline._x); trace("y = " + _level0.main1["target" + t]._y); shot_allowed = true; display_shot = false; } } if (target_state == "opening") { timer++; if (timer > 30) { _level0.main["target" + t].gotoandplay("close"); _level0.main1["target" + t].gotoandplay("close"); target_state = "wait"; shot_allowed = false; if (score < 1000) { target_current++; } timer = 0; } } if (target_state == "wait") { timer++; if (timer > 30) { target_state = "closed"; timer = 0; if (target_current >= targets_limit) { target_state = "gameover"; _level0.gotoandplay("complete"); } } } _x = _level0._xmouse; _y = _level0._ymouse; _level0.sight._x = _x; _level0.sight._y = _y; dx = 275 - _x; dy = 200 - _y; _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); if (Key.isDown(38)) { if (up) { } else { up = true; mag++; if (mag > 10) { mag = 10; } } } else { up = false; } if (Key.isDown(40)) { if (down) { } else { down = true; mag--; if (mag < 1) { mag = 1; } } } else { down = false; } if (old_mag != mag) { _level0.main._y = 200 + (dy * mag); _level0.main._x = 275 + (dx * mag); _level0.main._xscale = 100 * (mag + 1); _level0.main._yscale = 100 * (mag + 1); _level0.zoom.gotoandplay(2); } old_mag = mag; }
Frame 48
stop();
Frame 49
_level0.score = sniper.total; gotoAndStop (64);
Frame 64
stop();
Symbol 41 MovieClip [explosion1] Frame 1
stop();
Symbol 41 MovieClip [explosion1] Frame 21
stop();
Symbol 50 MovieClip Frame 7
gotoAndPlay (1);
Symbol 53 MovieClip Frame 32
gotoAndPlay (1);
Symbol 58 MovieClip Frame 1
doneLoading = 0; stop();
Instance of Symbol 55 MovieClip "bkgd" in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent.doneLoading == 0) { total = _parent._parent.getBytesTotal(); isloaded = _parent._parent.getBytesLoaded(); p = 100 * (isLoaded / total); _parent.bytes = ((int(isloaded / 1000) add " KB of ") add int(total / 1000)) add " KB"; _parent.percent = int(p) add "% LOADED"; _parent.bar._xscale = p; if (Number(p) > Number(95)) { _parent._parent.gotoAndPlay(Number(2)); _parent.gotoAndStop("off"); _parent.doneLoading = 1; } else { _parent._parent.gotoAndPlay(Number(1)); } } }
Instance of Symbol 55 MovieClip "bar" in Symbol 58 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent.doneLoading == 0) { total = _parent._parent.getBytesTotal(); isloaded = _parent._parent.getBytesLoaded(); p = 100 * (isLoaded / total); _parent.bytes = ((int(isloaded / 1000) add " KB of ") add int(total / 1000)) add " KB"; _parent.percent = int(p) add "% LOADED"; _parent.bar._xscale = p; if (Number(p) > Number(95)) { _parent._parent.gotoAndPlay(Number(2)); _parent.gotoAndStop("off"); _parent.doneLoading = 1; } else { _parent._parent.gotoAndPlay(Number(1)); } } }
Symbol 69 MovieClip Frame 10
stop();
Symbol 70 MovieClip Frame 1
stop();
Symbol 70 MovieClip Frame 5
stop();
Symbol 70 MovieClip Frame 154
board.bullethole._visible = false;
Symbol 70 MovieClip Frame 158
stop();
Symbol 77 Button
on (release) { play(); }
Symbol 88 Button
on (release) { getURL ("http://www.mousebreaker.com/index.php?page=downloadagreement", "_blank"); }
Symbol 90 Button
on (release) { getURL ("http://www.mousebreaker.com/index.php?page=freestuff", "_blank"); }
Symbol 92 MovieClip Frame 1
stop();
Symbol 103 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 12
stop();
Symbol 146 Button
on (release) { getURL ("http://www.mousebreaker.com/index.php?cdgtid=nvsniper_scores", "_self"); }
Symbol 149 Button
on (release) { gotoAndPlay (3); }
Symbol 151 Button
on (release) { getURL ("http://www.mousebreaker.com/index.php?cdgtid=nvsniper", "_self"); }

Library Items

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

Instance Names

"main"Frame 3Symbol 71 MovieClip
"main1"Frame 4Symbol 71 MovieClip
"sniper"Frame 4Symbol 92 MovieClip
"main"Frame 4Symbol 71 MovieClip
"sight"Frame 4Symbol 100 MovieClip
"zoom"Frame 4Symbol 103 MovieClip
"shot"Frame 4Symbol 106 MovieClip
"outline"Frame 4Symbol 119 MovieClip
"main1"Frame 24Symbol 124 MovieClip
"sniper"Frame 24Symbol 92 MovieClip
"main"Frame 24Symbol 124 MovieClip
"sight"Frame 24Symbol 100 MovieClip
"zoom"Frame 24Symbol 103 MovieClip
"shot"Frame 24Symbol 106 MovieClip
"outline"Frame 24Symbol 119 MovieClip
"main1"Frame 44Symbol 134 MovieClip
"sniper"Frame 44Symbol 92 MovieClip
"main"Frame 44Symbol 134 MovieClip
"sight"Frame 44Symbol 100 MovieClip
"zoom"Frame 44Symbol 103 MovieClip
"shot"Frame 44Symbol 106 MovieClip
"outline"Frame 44Symbol 119 MovieClip
"main"Frame 64Symbol 134 MovieClip
"submit_button"Frame 64Symbol 146 Button
"submit_txt"Frame 64Symbol 147 EditableText
"submit_button"Frame 64Symbol 151 Button
"submit_txt"Frame 64Symbol 152 EditableText
"submit_txt"Frame 64Symbol 153 EditableText
"submit_txt"Frame 64Symbol 154 EditableText
"bkgd"Symbol 58 MovieClip Frame 1Symbol 55 MovieClip
"bar"Symbol 58 MovieClip Frame 1Symbol 55 MovieClip
"board"Symbol 70 MovieClip Frame 1Symbol 66 MovieClip
"board"Symbol 70 MovieClip Frame 5Symbol 66 MovieClip
"outline"Symbol 70 MovieClip Frame 5Symbol 69 MovieClip
"target3"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target4"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target5"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target1"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target7"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target2"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target6"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target8"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"target9"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"explode"Symbol 71 MovieClip Frame 1Symbol 41 MovieClip [explosion1]
"target3"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target4"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target5"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target1"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target7"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target2"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target6"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target8"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"target9"Symbol 124 MovieClip Frame 1Symbol 70 MovieClip
"explode"Symbol 124 MovieClip Frame 1Symbol 41 MovieClip [explosion1]
"target3"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target4"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target5"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target1"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target7"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target2"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target6"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target8"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"target9"Symbol 134 MovieClip Frame 1Symbol 70 MovieClip
"explode"Symbol 134 MovieClip Frame 1Symbol 41 MovieClip [explosion1]

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 41 as "explosion1"
ExportAssets (56)Timeline Frame 3Symbol 41 as "explosion1"
ExportAssets (56)Timeline Frame 24Symbol 41 as "explosion1"
ExportAssets (56)Timeline Frame 44Symbol 41 as "explosion1"

Labels

"done"Frame 9
"done2"Frame 29
"complete"Frame 49
"on"Symbol 58 MovieClip Frame 1
"off"Symbol 58 MovieClip Frame 2
"close"Symbol 70 MovieClip Frame 154

Dynamic Text Variables

percentSymbol 56 EditableText""
bytesSymbol 57 EditableText""
sniper.tSymbol 93 EditableText""
sniper.totalSymbol 109 EditableText""
sniper.target_currentSymbol 111 EditableText""
sniper.scoreSymbol 113 EditableText""
cookie_best_txtSymbol 115 EditableText"0"
sniper.tSymbol 125 EditableText""
sniper.totalSymbol 126 EditableText""
sniper.target_currentSymbol 127 EditableText""
sniper.scoreSymbol 128 EditableText""
cookie_best_txtSymbol 129 EditableText"0"
sniper.tSymbol 135 EditableText""
sniper.totalSymbol 136 EditableText""
sniper.target_currentSymbol 137 EditableText""
sniper.scoreSymbol 138 EditableText""
cookie_best_txtSymbol 139 EditableText"0"
scoreSymbol 145 EditableText"423"




http://swfchan.com/6/26322/info.shtml
Created: 22/5 -2019 19:29:04 Last modified: 22/5 -2019 19:29:04 Server time: 03/05 -2024 02:11:44