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

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

Sheepteroids.swf

This is the info page for
Flash #25663

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


Text
LOADING GAME

NETSTUPIDITY NETWORK

Load-Info

Loading...

Time remaining :

0:00

Play

Play

The grass in these crazy hills has a high
helium content... the sheep have been
grazing all day and have started to
float off!  Shoot them down before
they get away!

Controls

Controls

Help

Help

Shoot all the sheep to progress to the next level.  Shooting sheep of
the same size in a row lights up the multiplier lights.  When all 3 are
lit your score multipiler goes up!
To get the high scores shoot all of the big sheep, followed by the medium
and finish with the small ones...

Multiplier lights

Lives

Scores

Multiplier

Spacebar

A

Fire

Break

Thrust

Turn Right

Turn Left

[x]

[x]

actions

button

0

0

Lv

0

0

0

Lives remaining

0

SCORED

One of them got you!
Give it another try...

try again

try again

Hit Space

(             )

0

TOTAL SCORE

0

0

NOW TRY LEVEL

Nice one   you got them all...
...but here comes another wave!

0

TOTAL SCORE

0

X

0

tHIS lEVEL

Next Level

Next Level

!

R

E

V

O

M

A

G

0

FINAL SCORE

ENTER YOUR NAME:

YourPosition:

100

YourScore:

99999

Weekly

Daily

Hourly

Monthly

Monthly

Weekly

Daily

Hourly

TimeRev

TimeRev

TimeFfd

TimeFfd

SubmitScore

SubmitScore

Top10

Top10

Top100

Top100

NICK

SCORE

TIME

<P ALIGN="LEFT"></P>

<P ALIGN="LEFT"></P>

<P ALIGN="LEFT"></P>

<P ALIGN="LEFT"></P>

SCOREBOARD SYSTEM IS
EXCLUSIVELY AVIABLE ON

CLICK HERE TO GET THERE

0

tell a Friend

tell a Friend

LOADING...

LAST 10

NEXT 10

Name

Score

Your Email :

Friend's Email :

Your message :

Email this game to your friend with your own message:

Send

Send

Thankyou - your friend has been emailed!

ActionScript [AS1/AS2]

Instance of Symbol 84 MovieClip "mc_load_info" in Frame 4
//component parameters onClipEvent (initialize) { STREAM = true; PLAY_TYPE = "bytes"; PLAY_BYTES = 10000; PLAY_FRAMES = 0; PLAY_PERCENTAGE = 0; }
Instance of Symbol 87 MovieClip in Frame 4
onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }
Frame 16
stop(); totalscore = 0; livesclip.gotoAndStop(3);
Frame 18
stop();
Frame 19
stop(); gotoAndPlay (16);
Frame 28
stop(); gotoAndPlay (20);
Frame 29
function startLevel() { ship.dx = 0; ship.dy = 0; bullets = new Array(); rocks = new Array(); level = 0; i = 0; while (i < (gameLevel + 1)) { newRock(100, 0, 0); i++; } timeOfLastFire = 0; score = 0; } function shipTurn(amt) { ship._rotation = ship._rotation + amt; } function shipThrust() { ship.dx = ship.dx + Math.cos(((Math.PI*2) * (ship._rotation - 90)) / 360); ship.dy = ship.dy + Math.sin(((Math.PI*2) * (ship._rotation - 90)) / 360); if (ship.dy > 18) { ship.dy = 18; } if (ship.dx > 18) { ship.dx = 18; } if (ship.dy < -18) { ship.dy = -18; } if (ship.dx < -18) { ship.dx = -18; } ship.gotoAndPlay("thrust"); } function shipBreak() { ship.dx = ship.dx * 0.5; ship.dy = ship.dy * 0.5; } function shipFire() { if ((timeOfLastFire + 200) < getTimer()) { timeOfLastFire = getTimer(); level++; attachMovie("bullet", "bullet" + level, level); clip = _root["bullet" + level]; clip._x = ship._x; clip._y = ship._y; clip.dx = 10 * Math.cos(((Math.PI*2) * (ship._rotation - 90)) / 360); clip.dy = 10 * Math.sin(((Math.PI*2) * (ship._rotation - 90)) / 360); bullets.push(clip); } } function shipMove() { ship._x = ship._x + ship.dx; if (ship._x > 550) { ship._x = ship._x - 550; } if (ship._x < 0) { ship._x = ship._x + 550; } ship._y = ship._y + ship.dy; if (ship._y > 400) { ship._y = ship._y - 400; } if (ship._y < 0) { ship._y = ship._y + 400; } } function bulletsMove() { i = bullets.length - 1; while (i >= 0) { bullets[i]._x = bullets[i]._x + bullets[i].dx; bullets[i]._y = bullets[i]._y + bullets[i].dy; if ((((bullets[i]._x > 550) or (bullets[i]._x < 0)) or (bullets[i]._y > 400)) or (bullets[i]._y < 0)) { bullets[i].removeMovieClip(); bullets.splice(i, 1); } i--; } } function newRock(size, x, y) { level++; rockNum = int((Math.random() * 3) + 1); attachMovie("rock" + rockNum, "rock" + level, level); clip = _root["rock" + level]; clip._x = x; clip._y = y; clip._xscale = size; clip._yscale = size; clip.dx = (Math.Random() * gameLevel) + 0.5; if (Math.random() < 0.5) { clip.dx = clip.dx * -1; } clip.dy = (Math.Random() * gameLevel) + 0.5; if (Math.random() < 0.5) { clip.dy = clip.dy * -1; } clip.spin = (Math.random() * 6) - 3; rocks.push(clip); } function rocksMove() { i = rocks.length - 1; while (i >= 0) { clip = rocks[i].clip; rocks[i]._x = rocks[i]._x + rocks[i].dx; if (rocks[i]._x > 550) { rocks[i]._x = rocks[i]._x - 550; } if (rocks[i]._x < 0) { rocks[i]._x = rocks[i]._x + 550; } rocks[i]._y = rocks[i]._y + rocks[i].dy; if (rocks[i]._y > 400) { rocks[i]._y = rocks[i]._y - 400; } if (rocks[i]._y < 0) { rocks[i]._y = rocks[i]._y + 400; } rocks[i]._rotation = rocks[i]._rotation + rocks[i].spin; i--; } } function checkHits() { i = rocks.length - 1; while (i >= 0) { j = bullets.length - 1; while (j >= 0) { if (rocks[i].hitTest(bullets[j]._x, bullets[j]._y, true)) { if (rocks[1]) { bleat.start(); } else { bleat2.start(); } bullets[j].removeMovieClip(); bullets.splice(j, 1); if (rocks[i]._xscale == 100) { if ((multi50 == 0) && (multi25 == 0)) { multi++; } else { multi = 0; } multi50 = 0; multi25 = 0; multi100++; } else if (rocks[i]._xscale == 50) { if ((multi100 == 0) && (multi25 == 0)) { multi++; } else { multi = 0; } multi100 = 0; multi25 = 0; multi50++; } else if (rocks[i]._xscale == 25) { if ((multi50 == 0) && (multi100 == 0)) { multi++; } else { multi = 0; } multi50 = 0; multi100 = 0; multi25++; } if (multipause == false) { multilights.gotoAndPlay(multi + 1); } newsize = rocks[i]._xscale / 2; x = rocks[i]._x; y = rocks[i]._y; rocks[i].removeMovieClip(); rocks.splice(i, 1); if (newsize >= 25) { newRock(newsize, x, y); newRock(newsize, x, y); } score = score + 10; break; } j--; } if (((rocks[i].hitTest(ship._x + 8, ship._y + 8, true) || (rocks[i].hitTest(ship._x - 8, ship._y + 8, true))) || (rocks[i].hitTest(ship._x + 8, ship._y - 8, true))) || (rocks[i].hitTest(ship._x - 8, ship._y - 8, true))) { ship.gotoAndPlay("hit"); } i--; } if (rocks.length == 0) { removeAll(); gotoAndPlay (39); gameLevel++; } } function removeAll() { i = 0; while (i < bullets.length) { bullets[i].removeMovieClip(); i++; } i = 0; while (i < rocks.length) { rocks[i].removeMovieClip(); i++; } } stop(); _root.removeAll(); multi = 0; multiplier = 1; multi100 = 0; multi50 = 0; multi25 = 0; multipause = false; livesclip.gotoAndStop(lives); bleat = new Sound(); bleat.attachSound("bleat"); bleat2 = new Sound(); bleat2.attachSound("bleat2");
Instance of Symbol 172 MovieClip in Frame 29
onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.shipMove(); _root.bulletsMove(); _root.rocksMove(); _root.checkHits(); if (Key.isDown(39)) { _root.shipTurn(6); } if (Key.isDown(37)) { _root.shipTurn(-6); } }
Frame 32
stop();
Frame 39
tempscore = score; score = score * multiplier; totalscore = totalscore + score; stop();
Frame 44
tempscore = score; score = score * multiplier; totalscore = totalscore + score; stop(); name_txt.restrict = "A-Z 0-9.:\\-"; name_txt.text = playerName; Selection.setFocus(name_txt); Selection.setSelection(name_txt.length, name_txt.length); ok_btn.onRelease = function () { if (name_txt.length > 0) { _root.nextFrame(); } }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);
Instance of Symbol 315 MovieClip in Frame 44
//component parameters onClipEvent (initialize) { scr = "_root.totalscore"; }
Frame 45
score = totalscore; stop(); showScores = function () { var i = 10; while (i > 0) { var n = scoreboard_lv["name" + (page + i)]; var s = scoreboard_lv["score" + (page + i)]; var l_mc = this[("line" + i) + "_mc"]; l_mc.rank_txt.text = (page + i) + "."; l_mc.name_txt.text = (n.length ? (n.toUpperCase()) : "-"); l_mc.score_txt.text = s; l_mc.rank_txt.textColor = (l_mc.name_txt.textColor = (l_mc.score_txt.textColor = ((playerName.length && (n.toUpperCase() == playerName.toUpperCase())) ? 3407616 : 16777215))); l_mc._visible = true; loading_mc._visible = false; i--; } }; page = 0; maxScore = 100; scoreboard_lv = new LoadVars(); if ((score > 0) && (playerName.length > 0)) { scoreboard_lv.score = score; scoreboard_lv.name = playerName.toLowerCase(); } scoreboard_lv.game = "sheepteroids"; scoreboard_lv.sendAndLoad("http://www.kwikgames.com/cgi/games_score_sql.php", scoreboard_lv, "POST"); scoreboard_lv.onLoad = function (success) { if (success) { if (Boolean(scoreboard_lv.success)) { next_btn._visible = true; if (scoreboard_lv.maxScore.length > 0) { maxScore = Number(scoreboard_lv.maxScore); } showScores(); } else { loading_mc.errorMsg = scoreboard_lv.errorMsg.toUpperCase(); loading_mc.gotoAndStop(2); } } else { loading_mc.errorMsg = "COULD NOT ACCESS SCORES."; loading_mc.gotoAndStop(2); } }; score = 0; next_btn._visible = (last_btn._visible = false); last_btn.onPress = function () { page = page - 10; if (page < 0) { page = 0; } if (page < 10) { last_btn._visible = false; } next_btn._visible = true; showScores(); }; next_btn.onPress = function () { page = page + 10; if (page > maxScore) { page = maxScore; } if (page > (maxScore - 20)) { next_btn._visible = false; } last_btn._visible = true; showScores(); };
Frame 56
stop(); name_txt.restrict = "a-z 0-9.:\\-@"; Selection.setFocus(name_txt); Selection.setSelection(name_txt.length, name_txt.length); ok_btn.onRelease = function () { if (name_txt.length > 0) { _root.game_so.data.playerName = name_txt.text; } Body = "Check out Sheepteroids - at www.kwikgames.com/sheepteroids.htm\n\n" + Body; loadVariablesNum ("http://www.kwikgames.com/cgi/flashemail.php", 0, "POST"); nextFrame(); }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);
Symbol 11 MovieClip [alien3] Frame 1
stop();
Symbol 11 MovieClip [alien3] Frame 3
gotoAndStop (1);
Symbol 18 MovieClip Frame 1
Stage.scaleMode = "noScale"; fscommand ("trapallkeys", true); Stage.showMenu = false; this.uu = _root._url; var a = _root._url.split("/"); var i = 0; while (i < a.length) { if (a[i] == "files") { _root.gid = a[i + 1]; } i++; } if ((a[2] == "www.netstupidity.com") || (a[2] == "netstupidity.com")) { _root.ligin = 1; } _root.__url = "http://www.netstupidity.com/games/hof/"; _root.loadVariables((_root.__url + "hof_bsc.php?id=") + _root.gid); _root.prc = 0; this.onEnterFrame = function () { var ld = _root.getBytesLoaded(); var tt = _root.getBytesTotal(); var pr = ((100 * ld) / tt); this.pasek._xscale = pr; var b = Math.round(pr / 20); if (pr >= 100) { this.onEnterFrame = null; this._parent.play(); } };
Symbol 32 MovieClip Frame 140
stop();
Symbol 71 MovieClip Frame 1
this.t = getTimer(); this.tm = 0; this.onEnterFrame = function () { if (_root._framesloaded < 2) { this.t = getTimer(); return(undefined); } this.tm = this.tm + (getTimer() - this.t); var tt = Math.round(this.tm / 33); if (tt < 1) { this.stop(); } else { this.t = getTimer(); if (tt >= 145) { this.onEnterFrame = null; this.gotoAndStop(145); _root.play(); } else { this.gotoAndStop(tt); } } }; stop();
Symbol 74 MovieClip Frame 1
_root.stop(); stop();
Symbol 74 MovieClip Frame 2
stop();
Symbol 79 MovieClip Frame 1
this._visible = _root.ligin == undefined; this.onPress = function () { getURL ("http://www.netstupidity.com"); };
Symbol 84 MovieClip Frame 1
function formatBytes(bytes) { var kb = 1024; var mb = (kb * 1024); var tempNum = 0; if (bytes >= mb) { tempNum = String(Math.floor((bytes / mb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " MB"; } else if (bytes >= kb) { tempNum = String(Math.floor((bytes / kb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " KB"; } else { tempNum = bytes + " B"; } return(tempNum); } this._visible = false; var isLoaded = false; var totalBytes = _parent.getBytesTotal(); var loadedBytes = _parent.getBytesLoaded(); var totalFrames = _parent._totalFrames(); var loadedFrames = _parent._framesLoaded(); var fractionLoaded = 0; var percentLoaded = "0%"; var bytesPerSecond = 0; var sizePerSecond = formatBytes(bytesPerSecond); var elapsedTime = "0:00"; var estimatedTime = "0:00"; var estimatedTimeLeft = "0:00"; var gStartTime = getTimer(); var gCurrentTime = getTimer(); var gSampleTimer = (gCurrentTime - gStartTime); var gSizeSample = loadedBytes; var framesPerSecond = 0; var frameCounter = 0; var totalSize = formatBytes(totalBytes); var loadedSize = formatBytes(loadedBytes); var loadedBytes = 0; var gLoading = true; var gPlaying = false; _parent.stop();
Symbol 84 MovieClip Frame 2
if (gLoading) { loadedBytes = _parent.getBytesLoaded(); loadedSize = formatBytes(loadedBytes); loadedFrames = _parent._framesLoaded; gCurrentTime = getTimer(); var elapsedMinutes = Math.floor(((gCurrentTime - gStartTime) / 1000) / 60); var elapsedSeconds = Math.floor(((gCurrentTime - gStartTime) / 1000) % 60); if (String(elapsedSeconds).length == 1) { elapsedSeconds = "0" + elapsedSeconds; } elapsedTime = (elapsedMinutes + ":") + elapsedSeconds; frameCounter++; if ((gCurrentTime - gStartTime) >= (gSampleTimer + 1000)) { framesPerSecond = frameCounter; frameCounter = 0; bytesPerSecond = loadedBytes - gSizeSample; sizePerSecond = formatBytes(bytesPerSecond); if (STREAM && (PLAY_TYPE == "auto")) { if ((loadedFrames / framesPerSecond) > ((totalBytes - loadedBytes) / bytesPerSecond)) { _parent.play(); } } var estimatedMinutes = Math.floor((totalBytes / bytesPerSecond) / 60); var estimatedSeconds = Math.floor((totalBytes / bytesPerSecond) % 60); if (String(estimatedSeconds).length == 1) { estimatedSeconds = "0" + estimatedSeconds; } estimatedTime = (estimatedMinutes + ":") + estimatedSeconds; var estimatedMinutesLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) / 60); var estimatedSecondsLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) % 60); if (String(estimatedSecondsLeft).length == 1) { estimatedSecondsLeft = "0" + estimatedSecondsLeft; } estimatedTimeLeft = (estimatedMinutesLeft + ":") + estimatedSecondsLeft; gSizeSample = loadedBytes; gSampleTimer = gCurrentTime - gStartTime; } fractionLoaded = loadedBytes / totalBytes; percentLoaded = Math.floor(fractionLoaded * 100) + "%"; if (STREAM) { switch (PLAY_TYPE) { case "bytes" : if (loadedBytes >= PLAY_BYTES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "frames" : if (loadedFrames >= PLAY_FRAMES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "percent" : if ((fractionLoaded * 100) < PLAY_PERCENT) { break; } if (gPlaying) { break; } _parent.play(); gPlaying = true; } } if (loadedBytes == totalBytes) { isLoaded = true; } if (isLoaded) { if (!STREAM) { _parent.play(); } gLoading = false; stop(); } }
Symbol 84 MovieClip Frame 3
gotoAndPlay (2);
Symbol 106 Button
on (press) { gameLevel = 1; lives = 3; score = 0; gotoAndPlay (29); }
Symbol 113 Button
on (release) { gotoAndPlay (20); }
Symbol 119 Button
on (release) { gotoAndStop (18); }
Symbol 162 Button
on (release) { gotoAndPlay (16); }
Symbol 170 MovieClip Frame 1
stop();
Symbol 170 MovieClip Frame 3
gotoAndPlay (1);
Symbol 170 MovieClip Frame 4
_root.removeAll();
Symbol 170 MovieClip Frame 12
if (_root.lives < 2) { _root.gotoAndPlay("game over"); } else { _root.lives--; _root.gotoAndPlay("ship hit"); }
Symbol 174 Button
on (keyPress "<Space>") { shipFire(); } on (keyPress "<Up>") { shipThrust(); } on (keyPress "<Down>") { shipBreak(); }
Symbol 181 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 2
stop();
Symbol 181 MovieClip Frame 3
stop();
Symbol 181 MovieClip Frame 4
_root.multipause = true;
Symbol 181 MovieClip Frame 14
_root.multipause = false; _root.multiplier++; _root.multi = 0; _root.multi100 = 0; _root.multi50 = 0; _root.multi25 = 0;
Symbol 184 MovieClip Frame 1
stop();
Symbol 184 MovieClip Frame 2
stop();
Symbol 184 MovieClip Frame 3
stop();
Symbol 204 Button
on (press) { gotoAndPlay (29); }
Symbol 205 Button
on (keyPress "<Space>") { gotoAndPlay (29); }
Symbol 228 Button
on (press) { gotoAndPlay (29); }
Symbol 256 Button
on (press) { this.gotoAndStop("weekly"); }
Symbol 257 Button
on (press) { this.gotoAndStop("daily"); }
Symbol 258 Button
on (press) { this.gotoAndStop("hourly"); }
Symbol 261 Button
on (press) { this.gotoAndStop("monthly"); }
Symbol 266 Button
on (press) { this.gotoAndStop("daily"); }
Symbol 269 MovieClip Frame 1
this._parent.tp = 2592000 /* 0x278D00 */; this._parent.tc = 0; this._parent.reload(); stop();
Symbol 269 MovieClip Frame 2
this._parent.tp = 604800 /* 0x093A80 */; this._parent.tc = 0; this._parent.reload();
Symbol 269 MovieClip Frame 3
this._parent.tp = 86400 /* 0x015180 */; this._parent.tc = 0; this._parent.reload();
Symbol 269 MovieClip Frame 4
this._parent.tp = 3600; this._parent.tc = 0; this._parent.reload();
Symbol 276 Button
on (press) { this.tc--; this.reload(); }
Symbol 281 Button
on (press) { this.tc = ((this.tc < 0) ? (this.tc + 1) : 0); this.reload(); }
Symbol 284 Button
on (press) { if (this.submitted == false) { this.loadVariables((((this.__url + "hof_put.php?id=") + this.gid) + "&s=") + this.sc); } }
Symbol 288 Button
on (press) { this._parent.l = 10; this._parent.reload(); this.gotoAndStop(2); }
Symbol 291 Button
on (press) { this._parent.l = 100; this._parent.reload(); this.gotoAndStop(1); }
Symbol 292 MovieClip Frame 1
stop();
Symbol 305 MovieClip Frame 1
stop();
Symbol 305 MovieClip Frame 18
stop();
Symbol 309 MovieClip Frame 1
function reset() { this.m._x = this.s._x; this.m._y = this.s._y; } function scroll(p) { this._parent.rolki.f1.scroll = (this._parent.rolki.f2.scroll = (this._parent.rolki.f3.scroll = (this._parent.rolki.f4.scroll = int((this.mx * p) / 100)))); } this.onEnterFrame = function () { this.s._y = ((this.m._y > 5) ? (((this.m._y < 202) ? (this.m._y) : 202)) : 5); this.mx = this._parent.rolki.f1.maxscroll; scroll((100 * (this.s._y - 5)) / 197); };
Instance of Symbol 308 MovieClip "m" in Symbol 309 MovieClip Frame 1
on (press) { this.startDrag(); } on (release, releaseOutside) { this.stopDrag(); this._parent.reset(); }
Symbol 314 MovieClip Frame 1
this._visible = _root.ligin == undefined; this.onPress = function () { getURL ("http://www.netstupidity.com"); };
Symbol 315 MovieClip Frame 1
this.submitted = false;
Symbol 315 MovieClip Frame 2
function reload() { if (this.rolki._currentframe > 1) { this.rolki.gotoAndPlay(18); } var te = ((-this.tc) * this.tp); var tb = ((-(this.tc - 1)) * this.tp); this.loadVariables((((((((((this.__url + "hof_get.php?id=") + this.gid) + "&n=") + this.l) + "&tb=") + tb) + "&te=") + te) + "&s=") + this.sc); } this.uu = _root._url; this.gid = _root.gid; this.__url = _root.__url; this.l = 10; this.sc = eval (this.scr); if (int(this.sc) > int(_root.bsc)) { _root.bsc = this.sc; } this.onData = function () { if (this.r == 1) { this.rolki.gotoAndPlay(2); clearInterval(this._itr); return(undefined); } if (this.r == "3") { this.submitted = true; reload(); } if (this.r == "2") { getURL ("javascript:if(confirm('To submit Your score You have to be logged into netstupidity.com site. Do You wish to log in now?')) window.open('http://www.netstupidity.com/login.php'); void(0);"); } }; stop();
Symbol 317 Button
on (press) { _root.gameLevel = 1; _root.score = 0; _root.lives = 3; gotoAndPlay (16); }
Symbol 323 Button
on (release) { gotoAndStop (56); }
Symbol 326 MovieClip Frame 1
stop(); errorMsg = ""; i = 0; alien_mc.onEnterFrame = function () { i = i + 0.25; i = i % 2; this.gotoAndStop(i + 1); };

Library Items

Symbol 1 Sound [bleat]
Symbol 2 Sound [bleat2]Used by:Timeline
Symbol 3 GraphicUsed by:4 5 6
Symbol 4 MovieClip [rock3]Uses:3
Symbol 5 MovieClip [rock2]Uses:3
Symbol 6 MovieClip [rock1]Uses:3
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip [bullet]Uses:7
Symbol 9 GraphicUsed by:11
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClip [alien3]Uses:9 10Used by:326
Symbol 12 GraphicUsed by:74  Timeline
Symbol 13 FontUsed by:14 15 311 313
Symbol 14 TextUses:13Used by:18
Symbol 15 TextUses:13Used by:18
Symbol 16 GraphicUsed by:17 32
Symbol 17 MovieClipUses:16Used by:18
Symbol 18 MovieClipUses:14 15 17Used by:74
Symbol 19 GraphicUsed by:32
Symbol 20 GraphicUsed by:32
Symbol 21 GraphicUsed by:32
Symbol 22 GraphicUsed by:32
Symbol 23 GraphicUsed by:32
Symbol 24 GraphicUsed by:32
Symbol 25 GraphicUsed by:32
Symbol 26 GraphicUsed by:32
Symbol 27 GraphicUsed by:32
Symbol 28 GraphicUsed by:32
Symbol 29 GraphicUsed by:32
Symbol 30 GraphicUsed by:32
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:19 20 21 22 23 24 25 26 27 28 16 29 30 31Used by:71
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:71
Symbol 35 GraphicUsed by:71
Symbol 36 GraphicUsed by:71
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:71
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:71
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:71
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:71
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:71
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:71
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:71
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:71
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:71
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:71
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:71
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:71
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:71
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:71
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:71
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:71
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:32 34 35 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70Used by:72
Symbol 72 MovieClipUses:71Used by:74
Symbol 73 SoundUsed by:74
Symbol 74 MovieClipUses:12 18 72 73Used by:Timeline
Symbol 75 GraphicUsed by:Timeline
Symbol 76 GraphicUsed by:79
Symbol 77 GraphicUsed by:79
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:76 77 78Used by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 GraphicUsed by:84
Symbol 82 FontUsed by:83 91 92 159 160 341 342 343 344 345 346 347 349 350 354
Symbol 83 TextUses:82Used by:84
Symbol 84 MovieClipUses:81 83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 FontUsed by:90 122 125 126 127 128 133 135 138 143 148 153 158 171 173 185 186 187 188 189 190 191 192 193 194 196 210 212 213 215 217 219 221 239 241 242 316 324 325 327 328 329 331 334 336 337
Symbol 90 TextUses:89Used by:Timeline
Symbol 91 EditableTextUses:82Used by:Timeline
Symbol 92 EditableTextUses:82Used by:Timeline
Symbol 93 GraphicUsed by:Timeline
Symbol 94 GraphicUsed by:97
Symbol 95 GraphicUsed by:97
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:94 95 96Used by:Timeline
Symbol 98 GraphicUsed by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:106
Symbol 101 FontUsed by:102 104 107 109 111 115 117 195 197 198 200 202 207 211 214 216 218 220 222 224 226 230 231 232 233 234 235 236 237 240 319 321
Symbol 102 TextUses:101Used by:106
Symbol 103 GraphicUsed by:106
Symbol 104 TextUses:101Used by:106 119
Symbol 105 GraphicUsed by:106
Symbol 106 ButtonUses:100 102 103 104 105Used by:Timeline
Symbol 107 TextUses:101Used by:Timeline
Symbol 108 GraphicUsed by:113
Symbol 109 TextUses:101Used by:113
Symbol 110 GraphicUsed by:113
Symbol 111 TextUses:101Used by:113
Symbol 112 GraphicUsed by:113
Symbol 113 ButtonUses:108 109 110 111 112Used by:Timeline
Symbol 114 GraphicUsed by:119
Symbol 115 TextUses:101Used by:119
Symbol 116 GraphicUsed by:119
Symbol 117 TextUses:101Used by:119
Symbol 118 GraphicUsed by:119
Symbol 119 ButtonUses:114 115 116 117 118 104Used by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 TextUses:89Used by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:Timeline
Symbol 125 TextUses:89Used by:Timeline
Symbol 126 TextUses:89Used by:Timeline
Symbol 127 TextUses:89Used by:Timeline
Symbol 128 TextUses:89Used by:Timeline
Symbol 129 GraphicUsed by:Timeline
Symbol 130 GraphicUsed by:Timeline
Symbol 131 GraphicUsed by:137
Symbol 132 GraphicUsed by:137
Symbol 133 TextUses:89Used by:137
Symbol 134 GraphicUsed by:137
Symbol 135 EditableTextUses:89Used by:137
Symbol 136 GraphicUsed by:137
Symbol 137 ButtonUses:131 132 133 134 135 136Used by:Timeline
Symbol 138 TextUses:89Used by:Timeline
Symbol 139 GraphicUsed by:142
Symbol 140 GraphicUsed by:142
Symbol 141 GraphicUsed by:142
Symbol 142 ButtonUses:139 140 141Used by:Timeline
Symbol 143 TextUses:89Used by:Timeline
Symbol 144 GraphicUsed by:147
Symbol 145 GraphicUsed by:147
Symbol 146 GraphicUsed by:147
Symbol 147 ButtonUses:144 145 146Used by:Timeline
Symbol 148 TextUses:89Used by:Timeline
Symbol 149 GraphicUsed by:152
Symbol 150 GraphicUsed by:152
Symbol 151 GraphicUsed by:152
Symbol 152 ButtonUses:149 150 151Used by:Timeline
Symbol 153 TextUses:89Used by:Timeline
Symbol 154 GraphicUsed by:157
Symbol 155 GraphicUsed by:157
Symbol 156 GraphicUsed by:157
Symbol 157 ButtonUses:154 155 156Used by:Timeline
Symbol 158 TextUses:89Used by:Timeline
Symbol 159 TextUses:82Used by:162
Symbol 160 TextUses:82Used by:162
Symbol 161 GraphicUsed by:162
Symbol 162 ButtonUses:159 160 161Used by:Timeline
Symbol 163 GraphicUsed by:170 184
Symbol 164 GraphicUsed by:170
Symbol 165 GraphicUsed by:170
Symbol 166 GraphicUsed by:170
Symbol 167 GraphicUsed by:170
Symbol 168 GraphicUsed by:170
Symbol 169 SoundUsed by:170
Symbol 170 MovieClipUses:163 164 165 166 167 168 169Used by:Timeline
Symbol 171 EditableTextUses:89Used by:172
Symbol 172 MovieClipUses:171Used by:Timeline
Symbol 173 EditableTextUses:89Used by:174 205
Symbol 174 ButtonUses:173Used by:Timeline
Symbol 175 GraphicUsed by:181
Symbol 176 GraphicUsed by:181
Symbol 177 GraphicUsed by:181
Symbol 178 GraphicUsed by:181
Symbol 179 GraphicUsed by:181
Symbol 180 SoundUsed by:181
Symbol 181 MovieClipUses:175 176 177 178 179 180Used by:Timeline
Symbol 182 GraphicUsed by:184
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:163 182 183Used by:Timeline
Symbol 185 EditableTextUses:89Used by:Timeline
Symbol 186 EditableTextUses:89Used by:Timeline
Symbol 187 TextUses:89Used by:Timeline
Symbol 188 EditableTextUses:89Used by:Timeline
Symbol 189 EditableTextUses:89Used by:Timeline
Symbol 190 EditableTextUses:89Used by:Timeline
Symbol 191 EditableTextUses:89Used by:Timeline
Symbol 192 EditableTextUses:89Used by:Timeline
Symbol 193 EditableTextUses:89Used by:Timeline
Symbol 194 EditableTextUses:89Used by:Timeline
Symbol 195 TextUses:101Used by:Timeline
Symbol 196 EditableTextUses:89Used by:Timeline
Symbol 197 TextUses:101Used by:Timeline
Symbol 198 TextUses:101Used by:Timeline
Symbol 199 GraphicUsed by:204 317
Symbol 200 TextUses:101Used by:204 317
Symbol 201 GraphicUsed by:204 317
Symbol 202 TextUses:101Used by:204 317
Symbol 203 GraphicUsed by:204 317
Symbol 204 ButtonUses:199 200 201 202 203Used by:Timeline
Symbol 205 ButtonUses:173Used by:Timeline
Symbol 206 GraphicUsed by:Timeline
Symbol 207 TextUses:101Used by:Timeline
Symbol 208 FontUsed by:209
Symbol 209 TextUses:208Used by:Timeline
Symbol 210 EditableTextUses:89Used by:Timeline
Symbol 211 TextUses:101Used by:Timeline
Symbol 212 EditableTextUses:89Used by:Timeline
Symbol 213 EditableTextUses:89Used by:Timeline
Symbol 214 TextUses:101Used by:Timeline
Symbol 215 EditableTextUses:89Used by:Timeline
Symbol 216 TextUses:101Used by:Timeline
Symbol 217 EditableTextUses:89Used by:Timeline
Symbol 218 TextUses:101Used by:Timeline
Symbol 219 EditableTextUses:89Used by:Timeline
Symbol 220 TextUses:101Used by:Timeline
Symbol 221 EditableTextUses:89Used by:Timeline
Symbol 222 TextUses:101Used by:Timeline
Symbol 223 GraphicUsed by:228
Symbol 224 TextUses:101Used by:228
Symbol 225 GraphicUsed by:228
Symbol 226 TextUses:101Used by:228
Symbol 227 GraphicUsed by:228
Symbol 228 ButtonUses:223 224 225 226 227Used by:Timeline
Symbol 229 GraphicUsed by:Timeline
Symbol 230 TextUses:101Used by:Timeline
Symbol 231 TextUses:101Used by:Timeline
Symbol 232 TextUses:101Used by:Timeline
Symbol 233 TextUses:101Used by:Timeline
Symbol 234 TextUses:101Used by:Timeline
Symbol 235 TextUses:101Used by:Timeline
Symbol 236 TextUses:101Used by:Timeline
Symbol 237 TextUses:101Used by:Timeline
Symbol 238 GraphicUsed by:Timeline
Symbol 239 EditableTextUses:89Used by:Timeline
Symbol 240 TextUses:101Used by:Timeline
Symbol 241 EditableTextUses:89Used by:Timeline
Symbol 242 EditableTextUses:89Used by:Timeline
Symbol 243 GraphicUsed by:315
Symbol 244 GraphicUsed by:315
Symbol 245 FontUsed by:246 247 248 249 251 252 253 254 260 263 265 268 273 275 278 280 282 283 286 287 289 290 293 294 295
Symbol 246 TextUses:245Used by:315
Symbol 247 EditableTextUses:245Used by:315
Symbol 248 TextUses:245Used by:315
Symbol 249 EditableTextUses:245Used by:315
Symbol 250 GraphicUsed by:269
Symbol 251 TextUses:245Used by:269
Symbol 252 TextUses:245Used by:269
Symbol 253 TextUses:245Used by:269
Symbol 254 TextUses:245Used by:269
Symbol 255 GraphicUsed by:256 257 258 261 266
Symbol 256 ButtonUses:255Used by:269
Symbol 257 ButtonUses:255Used by:269
Symbol 258 ButtonUses:255Used by:269
Symbol 259 GraphicUsed by:269
Symbol 260 TextUses:245Used by:269
Symbol 261 ButtonUses:255Used by:269
Symbol 262 GraphicUsed by:269
Symbol 263 TextUses:245Used by:269
Symbol 264 GraphicUsed by:269
Symbol 265 TextUses:245Used by:269
Symbol 266 ButtonUses:255Used by:269
Symbol 267 GraphicUsed by:269
Symbol 268 TextUses:245Used by:269
Symbol 269 MovieClipUses:250 251 252 253 254 256 257 258 259 260 261 262 263 264 265 266 267 268Used by:315
Symbol 270 GraphicUsed by:315
Symbol 271 GraphicUsed by:276 281 284
Symbol 272 GraphicUsed by:276
Symbol 273 TextUses:245Used by:276
Symbol 274 GraphicUsed by:276
Symbol 275 TextUses:245Used by:276
Symbol 276 ButtonUses:271 272 273 274 275Used by:315
Symbol 277 GraphicUsed by:281
Symbol 278 TextUses:245Used by:281
Symbol 279 GraphicUsed by:281
Symbol 280 TextUses:245Used by:281
Symbol 281 ButtonUses:271 277 278 279 280Used by:315
Symbol 282 TextUses:245Used by:284
Symbol 283 TextUses:245Used by:284
Symbol 284 ButtonUses:271 282 283Used by:315
Symbol 285 GraphicUsed by:288 291
Symbol 286 TextUses:245Used by:288
Symbol 287 TextUses:245Used by:288
Symbol 288 ButtonUses:285 286 287Used by:292
Symbol 289 TextUses:245Used by:291
Symbol 290 TextUses:245Used by:291
Symbol 291 ButtonUses:285 289 290Used by:292
Symbol 292 MovieClipUses:288 291Used by:315
Symbol 293 TextUses:245Used by:315
Symbol 294 TextUses:245Used by:315
Symbol 295 TextUses:245Used by:315
Symbol 296 GraphicUsed by:305
Symbol 297 GraphicUsed by:305
Symbol 298 GraphicUsed by:305
Symbol 299 FontUsed by:300 301 303 304
Symbol 300 EditableTextUses:299Used by:305
Symbol 301 EditableTextUses:299Used by:305
Symbol 302 GraphicUsed by:305
Symbol 303 EditableTextUses:299Used by:305
Symbol 304 EditableTextUses:299Used by:305
Symbol 305 MovieClipUses:296 297 298 300 301 302 303 304Used by:315
Symbol 306 GraphicUsed by:309
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:309
Symbol 309 MovieClipUses:306 308Used by:315
Symbol 310 GraphicUsed by:314
Symbol 311 TextUses:13Used by:314
Symbol 312 GraphicUsed by:314
Symbol 313 TextUses:13Used by:314
Symbol 314 MovieClipUses:310 311 312 313Used by:315
Symbol 315 MovieClipUses:243 244 246 247 248 249 269 270 276 281 284 292 293 294 295 305 309 314Used by:Timeline
Symbol 316 EditableTextUses:89Used by:Timeline
Symbol 317 ButtonUses:199 200 201 202 203Used by:Timeline
Symbol 318 GraphicUsed by:323
Symbol 319 TextUses:101Used by:323
Symbol 320 GraphicUsed by:323
Symbol 321 TextUses:101Used by:323
Symbol 322 GraphicUsed by:323
Symbol 323 ButtonUses:318 319 320 321 322Used by:Timeline
Symbol 324 EditableTextUses:89Used by:326
Symbol 325 EditableTextUses:89Used by:326
Symbol 326 MovieClipUses:11 324 325Used by:Timeline
Symbol 327 EditableTextUses:89Used by:330
Symbol 328 EditableTextUses:89Used by:330
Symbol 329 EditableTextUses:89Used by:330
Symbol 330 MovieClipUses:327 328 329Used by:Timeline
Symbol 331 EditableTextUses:89Used by:333
Symbol 332 GraphicUsed by:333 335
Symbol 333 ButtonUses:331 332Used by:Timeline
Symbol 334 EditableTextUses:89Used by:335
Symbol 335 ButtonUses:334 332Used by:Timeline
Symbol 336 EditableTextUses:89Used by:Timeline
Symbol 337 EditableTextUses:89Used by:Timeline
Symbol 338 GraphicUsed by:Timeline
Symbol 339 GraphicUsed by:Timeline
Symbol 340 GraphicUsed by:Timeline
Symbol 341 EditableTextUses:82Used by:Timeline
Symbol 342 TextUses:82Used by:Timeline
Symbol 343 TextUses:82Used by:Timeline
Symbol 344 EditableTextUses:82Used by:Timeline
Symbol 345 EditableTextUses:82Used by:Timeline
Symbol 346 TextUses:82Used by:Timeline
Symbol 347 TextUses:82Used by:Timeline
Symbol 348 GraphicUsed by:Timeline
Symbol 349 TextUses:82Used by:352
Symbol 350 TextUses:82Used by:352
Symbol 351 GraphicUsed by:352
Symbol 352 ButtonUses:349 350 351Used by:Timeline
Symbol 353 GraphicUsed by:Timeline
Symbol 354 TextUses:82Used by:Timeline
Symbol 355 GraphicUsed by:Timeline

Instance Names

"mc_load_info"Frame 4Symbol 84 MovieClip
"ship"Frame 29Symbol 170 MovieClip
"multilights"Frame 29Symbol 181 MovieClip
"livesclip"Frame 29Symbol 184 MovieClip
"name_txt"Frame 44Symbol 242 EditableText
"loading_mc"Frame 45Symbol 326 MovieClip
"line1_mc"Frame 45Symbol 330 MovieClip
"line2_mc"Frame 45Symbol 330 MovieClip
"line3_mc"Frame 45Symbol 330 MovieClip
"line4_mc"Frame 45Symbol 330 MovieClip
"line5_mc"Frame 45Symbol 330 MovieClip
"line6_mc"Frame 45Symbol 330 MovieClip
"line7_mc"Frame 45Symbol 330 MovieClip
"line8_mc"Frame 45Symbol 330 MovieClip
"line9_mc"Frame 45Symbol 330 MovieClip
"line10_mc"Frame 45Symbol 330 MovieClip
"last_btn"Frame 45Symbol 333 Button
"next_btn"Frame 45Symbol 335 Button
"name_txt"Frame 56Symbol 341 EditableText
"name_txt"Frame 56Symbol 344 EditableText
"name_txt"Frame 56Symbol 345 EditableText
"ok_btn"Frame 56Symbol 352 Button
"pasek"Symbol 18 MovieClip Frame 1Symbol 17 MovieClip
"f1"Symbol 305 MovieClip Frame 9Symbol 300 EditableText
"f2"Symbol 305 MovieClip Frame 15Symbol 301 EditableText
"f3"Symbol 305 MovieClip Frame 18Symbol 303 EditableText
"f4"Symbol 305 MovieClip Frame 18Symbol 304 EditableText
"s"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"m"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"rolki"Symbol 315 MovieClip Frame 2Symbol 305 MovieClip
"alien_mc"Symbol 326 MovieClip Frame 1Symbol 11 MovieClip [alien3]
"rank_txt"Symbol 330 MovieClip Frame 1Symbol 327 EditableText
"score_txt"Symbol 330 MovieClip Frame 1Symbol 328 EditableText
"name_txt"Symbol 330 MovieClip Frame 1Symbol 329 EditableText

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "bleat"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bleat2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "rock3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "rock2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "rock1"
ExportAssets (56)Timeline Frame 1Symbol 8 as "bullet"
ExportAssets (56)Timeline Frame 1Symbol 11 as "alien3"
ExportAssets (56)Timeline Frame 29Symbol 2 as "bleat2"
ExportAssets (56)Timeline Frame 45Symbol 11 as "alien3"

Labels

"loading"Frame 2
"main"Frame 16
"start"Frame 16
"help"Frame 18
"controls"Frame 20
"play"Frame 29
"ship hit"Frame 32
"level over"Frame 39
"game over"Frame 44
"tell"Frame 56
"thrust"Symbol 170 MovieClip Frame 2
"hit"Symbol 170 MovieClip Frame 4
"monthly"Symbol 269 MovieClip Frame 1
"weekly"Symbol 269 MovieClip Frame 2
"daily"Symbol 269 MovieClip Frame 3
"hourly"Symbol 269 MovieClip Frame 4

Dynamic Text Variables

mc_load_info.estimatedTimeLeftSymbol 92 EditableText"0:00"
labelSymbol 135 EditableText"A"
gameLevelSymbol 185 EditableText"0"
scoreSymbol 186 EditableText"0"
multiplierSymbol 188 EditableText""
multi100Symbol 189 EditableText""
multi50Symbol 190 EditableText""
multi25Symbol 191 EditableText""
multiplierSymbol 192 EditableText"0"
totalscoreSymbol 193 EditableText"0"
livesSymbol 194 EditableText"0"
scoreSymbol 196 EditableText"0"
totalscoreSymbol 210 EditableText"0"
livesSymbol 212 EditableText"0"
gameLevelSymbol 213 EditableText"0"
tempscoreSymbol 215 EditableText""
totalscoreSymbol 217 EditableText"0"
multiplierSymbol 219 EditableText"0"
scoreSymbol 221 EditableText"0"
totalscoreSymbol 239 EditableText"0"
playerNameSymbol 242 EditableText""
psSymbol 247 EditableText"100"
scSymbol 249 EditableText"99999"
_parent.nSymbol 300 EditableText"<P ALIGN="LEFT"></P>"
_parent.sSymbol 301 EditableText"<P ALIGN="LEFT"></P>"
_parent.dSymbol 303 EditableText"<P ALIGN="LEFT"></P>"
_parent.tSymbol 304 EditableText"<P ALIGN="LEFT"></P>"
totalscoreSymbol 316 EditableText"0"
errorMsgSymbol 325 EditableText""
MailFromSymbol 341 EditableText""
MailToSymbol 344 EditableText""
BodySymbol 345 EditableText""




http://swfchan.com/6/25663/info.shtml
Created: 23/5 -2019 11:26:07 Last modified: 23/5 -2019 11:26:07 Server time: 09/05 -2024 23:44:33