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

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

Zelda C.O.W.A.swf

This is the info page for
Flash #26055

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


Text




2004 RIFTMASTER / CHARACTERS AND STUFF
(c) NINTENDO... respect





INSTRUCTIONS:
THE GOAL OF THE GAME IS TO KILL AS MANY ENENIES AS POSSIBLE
BEFORE THE TIME RUNS OUT, AND STAY ALIVE IN THE PROCESS!
JUMP TO AVOID YOUR ENEMIES AND USE THE PLAYING FIELD'S SIZE
TO YOUR ADVANTAGE!
CONTROLS:
A = Attack
S = Jump
Arrow Keys = Move
COMBOS:
Toward+Attack (while jumping) = mid-air stab
Toward+Toward+Attack (while on the ground) = Smash attack

YOU RULE
HYRULE!

SCORE:

YOU SUCK!

loading scores

Name Here

Send High Score

ActionScript [AS1/AS2]

Frame 1
percent = int(getBytesLoaded() / getBytesTotal()) * 100; if (percent > loader._currentFrame) { loader.play(); } else { loader.stop(); } if (loader._currentFrame == loader._totalFrames) { gotoAndStop (3); }
Frame 2
gotoAndPlay (1);
Frame 3
s_hit1 = new Sound(); s_hit1.attachSound("hit1"); s_hit2 = new Sound(); s_hit2.attachSound("hit2"); s_hit3 = new Sound(); s_hit3.attachSound("hit3"); s_splat = new Sound(); s_splat.attachSound("splat"); s_swing1 = new Sound(); s_swing1.attachSound("swing1"); s_swing2 = new Sound(); s_swing2.attachSound("swing2"); stopAllSounds(); stop();
Frame 6
function main(run) { if (run == "init") { tellTarget ("game.player") { y = 0; z = 400; }; if (terrain_objects == true) { tellTarget ("game") { start_z = _root.distance; i = 1; while (i <= _root.terrain_object_amount) { attachMovie("grass", "terrain" + i, start_z); tellTarget (eval ("_root.game.terrain" + i)) { _x = (-300 + random(600)); z = _parent.start_z; _parent.start_z = _parent.start_z + 5; _y = (z - _root.game._y); _xscale = (_root.scale + (((_y + _root.game._y) / 400) * (100 - _root.scale))); _yscale = _xscale; }; i++; } }; } } else { tellTarget ("game.player") { _xscale = (_root.scale + ((z / 400) * (100 - _root.scale))); _yscale = _xscale; speed = (_xscale / 100) * _root.speed; width = (_xscale / 100) * width_default; if (dir == "left") { _xscale = (_xscale * -1); } _y = ((z + ((_yscale / 100) * y)) - _root.game._y); }; game.player.swapDepths(game.player.z); i = 1; while (i <= _root.objects) { tellTarget ("game.obj" + i) { if (z) { _xscale = (_root.scale + ((z / 400) * (100 - _root.scale))); } _yscale = _xscale; speed = (_xscale / 100) * speed_default; width = (_xscale / 100) * width_default; if (dir == "left") { _xscale = (_xscale * -1); } _y = ((z + ((_yscale / 100) * y)) - _root.game._y); }; game["obj" + i].swapDepths(game["obj" + i].z); i++; } } } function hit_enemy(attack) { tellTarget ("_root.game") { i = 1; while (i <= _root.objects) { obj = eval ("obj" + i); p_width = player.width * 3; if ((((((((player._x + p_width) > (obj._x - obj.width)) && (player._x < obj._x)) && (player.dir != "left")) || ((((player._x - p_width) < (obj._x + obj.width)) && (player._x > obj._x)) && (player.dir == "left"))) && ((player.y > (obj.y - obj.height)) && ((player.y - player.height) < obj.y))) && (((player._yscale + 8) > obj._yscale) && ((player._yscale - 8) < obj._yscale))) && (obj.alive != false)) { if (attack == "smash") { obj.fling(); obj.hp = obj.hp - (2 + random(2)); } else if (attack == "air_stab") { obj.hp = obj.hp - 2; } else { obj.hp--; } obj.gotoAndStop("hit"); } i++; } }; } Mouse.hide(); stopAllSounds(); gotoAndStop (7);
Frame 7
objects = 0; enemies = 0; enemy_spawn = true; distance = 330; scale = -300; score = 0; hp = 10; speed = 5; speed_jump = 15; speed_chicken = 4; speed_enemy = 2.5; main("init"); _quality = "medium"; stop();
Frame 8
if (((substring(_url, 0, 22)) != "http://www.etgames.com") && ((substring(_url, 0, 25)) != "http://www.newgrounds.com")) { getURL ("http://www.etgames.com", "_blank"); } Mouse.show();
Frame 9
prevFrame();
Symbol 8 MovieClip [navi_particle] Frame 1
if (speed_y > 2) { _alpha = (_alpha - 5); if (_alpha < 1) { this.removeMovieClip(); } } else { speed_y = speed_y + 0.1; } _y = (_y + speed_y);
Symbol 8 MovieClip [navi_particle] Frame 2
gotoAndPlay (1);
Symbol 22 Button
on (rollOver, dragOver) { cursor.over = true; } on (rollOut, dragOut) { cursor.over = false; } on (release) { nextFrame(); }
Symbol 30 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 1
navi._x = _root._xmouse - _x; navi._y = _root._ymouse - _y; if (over == true) { p_spawn_time = 3; navi.gotoAndStop(2); } else { navi.gotoAndStop(1); p_spawn_time = 6; } if (p_spawn == 0) { Mouse.hide(); p_spawn = -1; particles++; this.attachMovie("navi_particle", "p" + particles, particles); this["p" + particles]._x = (navi._x - 5) + random(10); this["p" + particles]._y = (navi._y + 5) + random(5); this["p" + particles]._xscale = 100 + random(60); this["p" + particles]._yscale = this["p" + particles]._xscale; } else if (p_spawn > 0) { p_spawn--; } else { p_spawn = p_spawn_time; }
Symbol 31 MovieClip Frame 2
gotoAndPlay (1);
Symbol 36 MovieClip Frame 32
stop();
Symbol 40 Button
on (rollOver, dragOver) { cursor.over = true; } on (rollOut, dragOut) { cursor.over = false; } on (release) { gotoAndStop (6); }
Symbol 47 MovieClip Frame 1
if (_parent.dir == "right") { _parent._x = _parent._x + _parent.speed; } else { _parent._x = _parent._x - _parent.speed; } if ((_parent._x < (-70 - _root.game._x)) || (_parent._x > (620 - _root.game._x))) { _parent.gotoAndStop("limbo"); }
Symbol 47 MovieClip Frame 2
gotoAndPlay (1);
Symbol 57 MovieClip Frame 25
_parent.gotoAndStop("limbo");
Symbol 58 MovieClip Frame 1
if (_parent.idle == 0) { _parent.gotoAndStop("respawn"); } else { _parent.idle--; }
Symbol 58 MovieClip Frame 2
gotoAndPlay (1);
Symbol 59 MovieClip Frame 1
if (ini != true) { ini = true; speed_default = _root.speed_chicken; width_default = _width / 2; height = _height; _root.objects++; _name = ("obj" + _root.objects); gotoAndStop (3); } alive = true;
Symbol 59 MovieClip Frame 2
alive = false; _root.s_splat.start(); _root.score = _root.score + 50;
Symbol 59 MovieClip Frame 3
idle = 800 + random(800); alive = false;
Symbol 59 MovieClip Frame 4
y = 0; z = _root.distance + random(400 - _root.distance); if (random(2) == 1) { _x = (600 - _root.game._x); dir = "left"; } else { _x = (-50 - _root.game._x); dir = "right"; } gotoAndStop (1);
Symbol 69 MovieClip Frame 1
if (_parent.invincible == true) { if (_parent.switch_alpha > 0) { _parent.switch_alpha--; } else { _parent.switch_alpha = 5; if (_parent._alpha == 100) { _parent._alpha = 40; } else { _parent._alpha = 100; } } if (_parent.invincible_timer == 0) { _parent.invincible = false; _parent.alive = true; _parent._alpha = 100; } else { _parent.invincible_timer--; } } if (Key.isDown(39)) { if (_parent.press_right != true) { _parent.tap_right = _parent.tap_right + 20; } _parent.press_right = true; } else { _parent.press_right = false; } if (_parent.tap_right > 0) { _parent.tap_right--; } if (Key.isDown(37)) { if (_parent.press_left != true) { _parent.tap_left = _parent.tap_left + 20; } _parent.press_left = true; } else { _parent.press_left = false; } if (_parent.tap_left > 0) { _parent.tap_left--; } if (_parent._currentFrame < 4) { if (Key.isDown(83)) { if ((_parent.press_jump != true) && (_parent.jumping != true)) { _parent.gotoAndStop("jump"); } _parent.press_jump = true; } else { _parent.press_jump = false; } if (Key.isDown(65)) { if (_parent.press_attack != true) { if ((_parent.jumping != true) && (((_parent.dir != "left") && (_parent.tap_right > 20)) || ((_parent.dir == "left") && (_parent.tap_left > 20)))) { _parent.gotoAndStop("attack3"); } else if ((_parent.jumping == true) && (((_parent.dir != "left") && (_parent.tap_right > 0)) || ((_parent.dir == "left") && (_parent.tap_left > 0)))) { _parent.gotoAndStop("attack2"); } else if (_parent.jumping != true) { _parent.gotoAndStop("attack"); } _parent.tap_right = 0; _parent.tap_left = 0; } _parent.press_attack = true; } else { _parent.press_attack = false; } if (Key.isDown(39) && (!Key.isDown(37))) { _parent._x = _parent._x + _parent.speed; if (_parent.jumping != true) { _parent.dir = "right"; } } if (Key.isDown(37) && (!Key.isDown(39))) { _parent._x = _parent._x - _parent.speed; if (_parent.jumping != true) { _parent.dir = "left"; } } _parent.speed = _parent.speed / 5; if (Key.isDown(40) && (!Key.isDown(38))) { _parent.z = _parent.z + _parent.speed; } if (Key.isDown(38) && (!Key.isDown(40))) { _parent.z = _parent.z - _parent.speed; } if ((((Key.isDown(39) && (!Key.isDown(37))) || (Key.isDown(37) && (!Key.isDown(39)))) || ((Key.isDown(40) && (!Key.isDown(38))) && (_parent.z < 400))) || ((Key.isDown(38) && (!Key.isDown(40))) && (_parent.z > _root.distance))) { if (_parent._currentFrame == 1) { _parent.gotoAndStop("walk"); } } else if (_parent._currentFrame == 2) { _parent.gotoAndStop("stand"); } } if (_parent.jumping == true) { _parent.y = _parent.y + _parent.speed_y; _parent.speed_y = _parent.speed_y + 0.5; if (_parent.y > 0) { _parent.jumping = false; _parent.y = 0; if (_parent._currentFrame == 3) { _parent.gotoAndStop("stand"); } } } if (_parent._x > (525 - _root.game._x)) { _parent._x = 525 - _root.game._x; } else if (_parent._x < (25 - _root.game._x)) { _parent._x = 25 - _root.game._x; } if (_parent.z > 400) { _parent.z = 400; } else if (_parent.z < _root.distance) { _parent.z = _root.distance; }
Symbol 69 MovieClip Frame 2
gotoAndPlay (1);
Symbol 97 MovieClip Frame 6
_root.hit_enemy();
Symbol 97 MovieClip Frame 9
_parent.gotoAndStop("stand");
Symbol 99 MovieClip Frame 4
_root.hit_enemy("air_stab");
Symbol 99 MovieClip Frame 8
if (_parent.jumping == true) { _parent.gotoAndStop("jump"); } else { _parent.gotoAndStop("stand"); }
Symbol 102 MovieClip Frame 3
_root.hit_enemy("smash");
Symbol 102 MovieClip Frame 9
_parent.gotoAndStop("stand");
Symbol 105 MovieClip Frame 6
if (_parent.jumping != true) { if (_root.hp < 1) { _parent.gotoAndStop("die"); } else { _parent.gotoAndStop("stand"); } } else if (_parent.dir == "left") { _parent._x = _parent._x + _parent.speed; } else { _parent._x = _parent._x - _parent.speed; }
Symbol 105 MovieClip Frame 7
gotoAndPlay(_currentframe - 1);
Symbol 108 MovieClip Frame 110
_root.zelda.play(); stop();
Symbol 109 MovieClip Frame 1
if (ini != true) { ini = true; width_default = _width / 2; height = 90; } if (alive == false) { if (invincible != true) { invincible = true; invincible_timer = 120; } } else { alive = true; } stop();
Symbol 109 MovieClip Frame 3
if (jumping != true) { jumping = true; speed_y = -_root.speed_jump; }
Symbol 109 MovieClip Frame 4
_root["s_swing" + (random(2) + 1)].start();
Symbol 109 MovieClip Frame 5
_root["s_swing" + (random(2) + 1)].start();
Symbol 109 MovieClip Frame 6
strike = (_yscale / 100) * 25; if (dir == "left") { _x = (_x - strike); } else { _x = (_x + strike); } _root["s_swing" + (random(2) + 1)].start();
Symbol 109 MovieClip Frame 7
alive = false; _root["s_hit" + (random(2) + 1)].start(); if ((_root.hp < 1) && (jumping != true)) { gotoAndStop (8); } else { speed_y = -9; jumping = true; }
Symbol 111 MovieClip Frame 1
_parent.raindrops++; this.swapDepths(1000 + _parent.raindrops); gotoAndPlay(_totalframes - random(25));
Symbol 111 MovieClip Frame 15
gotoAndPlay(_totalframes - random(25));
Symbol 111 MovieClip Frame 41
gotoAndPlay (2);
Symbol 116 MovieClip Frame 1
if ((_parent._x + _root.speed_enemy) < _parent.dest_x) { _parent._x = _parent._x + _parent.speed; _parent.dir = "right"; } else if ((_parent._x - _root.speed_enemy) > _parent.dest_x) { _parent._x = _parent._x - _parent.speed; _parent.dir = "left"; } else { _parent.dest_x = _parent._x; if (_parent.follow != true) { if (_parent.stop_time == 0) { _parent.stop_time = -1; _parent.dest_x = random(550) - _root.game._x; } else if (_parent.stop_time > 0) { _parent.stop_time--; } else { _parent.stop_time = random(100); } } } if ((_parent._x != _parent.dest_x) || ((_parent.follow == true) && (_parent.walking == true))) { if (_parent._currentFrame == 1) { _parent.gotoAndStop("walk"); } } else if (_parent._currentFrame == 2) { _parent.gotoAndStop("stand"); } if (_parent.alert_timer > 0) { _parent.alert_timer--; } else if (_parent.alert_timer == undefined) { _parent.alert_timer = random(600); } if (_parent.follow != true) { if ((((_parent._yscale + 20) > _root.game.player._yscale) && ((_parent._yscale - 20) < _root.game.player._yscale)) || (_parent.alert_timer == 0)) { _parent.follow = true; } } else if (_root.game.player.alive != false) { _parent.dest_x = _root.game.player._x; _parent.speed_z = _parent.speed / 5; _parent.walking = true; if ((_parent._yscale + _parent.speed) < _root.game.player._yscale) { _parent.z = _parent.z + _parent.speed_z; } else if ((_parent._yscale - _parent.speed) > _root.game.player._yscale) { _parent.z = _parent.z - _parent.speed_z; } } else { _parent.walking = false; } if ((((((_parent._x + _parent.width) > (_root.game.player._x - _root.game.player.width)) && ((_parent._x - _parent.width) < (_root.game.player._x + _root.game.player.width))) && ((_parent.y > (_root.game.player.y - _root.game.player.height)) && ((_parent.y - _parent.height) < _root.game.player.y))) && (((_parent._yscale + 8) > _root.game.player._yscale) && ((_parent._yscale - 8) < _root.game.player._yscale))) && (_root.game.player.alive != false)) { _root.hp--; _root.game.player.gotoAndStop("hit"); }
Symbol 116 MovieClip Frame 2
gotoAndPlay (1);
Symbol 121 MovieClip Frame 8
if (_parent.jumping != true) { _parent.gotoAndStop("stand"); } else { gotoAndPlay(_currentframe - 1); }
Symbol 122 MovieClip Frame 1
if (_parent.jumping == true) { _parent.y = _parent.y + _parent.speed_y; _parent.speed_y++; if (_parent.y > 0) { _parent.jumping = false; _parent.y = 0; } speed_rotation = (_parent._yscale / 100) * (_parent.speed_y * 2); if (speed_rotation < 0) { speed_rotation = speed_rotation * -1; } if (_parent.dir == "left") { _parent._x = _parent._x + (_parent.speed * 2); } else { _parent._x = _parent._x - (_parent.speed * 2); speed_rotation = -speed_rotation; } _parent.enemy._rotation = _parent.enemy._rotation + speed_rotation; if (_parent.dir_z == "forward") { _parent.z = _parent.z + (_parent.speed / 2); } else if (_parent.dir_z == "back") { _parent.z = _parent.z - (_parent.speed / 2); } }
Symbol 122 MovieClip Frame 2
gotoAndPlay (1);
Symbol 123 MovieClip Frame 25
_parent.gotoAndStop("limbo");
Symbol 124 MovieClip Frame 1
function fling() { jumping = true; speed_y = -20; if (random(4) == 1) { dir_z = "forward"; } else if (random(4) == 2) { dir_z = "back"; } } if (ini != true) { ini = true; speed_default = _root.speed_enemy; width_default = 30; height = 80; _root.objects++; _root.enemies++; _name = ("obj" + _root.objects); gotoAndStop (7); } speed_y = 0; dir_z = false; alive = true;
Symbol 124 MovieClip Frame 3
alive = false; if (hp < 1) { _root.s_splat.start(); gotoAndStop (4); } else { shove = (_yscale / 100) * 20; if (_root.game.player.dir == "left") { _x = (_x - shove); } else { _x = (_x + shove); } if (jumping == true) { _root.s_hit3.start(); _root.score = _root.score + 20; } else { _root["s_hit" + (random(2) + 1)].start(); _root.score = _root.score + 5; } }
Symbol 124 MovieClip Frame 4
idle = 20; _root.score = _root.score + 10;
Symbol 124 MovieClip Frame 7
hp = 4; y = 0; z = _root.distance + random(400 - _root.distance); if (random(2) == 1) { _x = (600 - _root.game._x); } else { _x = (-50 - _root.game._x); } dest_x = random(550) - _root.game._x; gotoAndStop (1);
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 166
_parent.gotoAndStop("gameover");
Symbol 134 MovieClip Frame 1
_root.main(""); if (_root.hp < 0) { _root.hp = 0; } _root.hud.gotoAndStop(_root.hp + 1); if (init_clock != true) { init_clock = true; millisecs = 60; secs = 0; mins = 2; } millisecs--; if (millisecs == 0) { if ((mins == 0) && (secs == 0)) { _root.gotoAndStop("gameover"); } else { millisecs = 60; if (secs == 0) { secs = 59; mins--; } else { secs--; } } } if (secs < 10) { seconds = "0" + secs; } else { seconds = secs; } _root.clock = (mins + ":") + seconds;
Symbol 134 MovieClip Frame 2
gotoAndPlay (1);
Symbol 172 Button
on (release) { _root.gotoAndStop("scores"); }
Symbol 176 Button
on (release) { _root.gotoAndStop("title"); }
Symbol 177 MovieClip Frame 228
stop();
Instance of Symbol 173 MovieClip in Symbol 177 MovieClip Frame 228
onClipEvent (load) { if (_root.local == 1) { _visible = true; } else { _visible = false; } }
Symbol 188 Button
on (release) { _root.gotoAndStop("game_init"); }
Symbol 189 MovieClip Frame 225
stop();
Symbol 190 MovieClip Frame 1
if (_root.hp > 0) { stop(); } else { nextFrame(); }
Symbol 199 Button
on (release) { if (((_root.scoredone == "done") and (_root.score > _root.hiscore20)) and (_root.old_score != _root.score)) { _root.old_score = _root.score; _root.hiscore = _root.score; if (_root.xname eq "Name Here") { _root.xname = "etgames"; } loadVariablesNum ((((((("/scores.php?action=sendscore&game=" + _parent.game) + "&hiscore=") + _root.hiscore) + "&xname=") + _root.xname) + "&randx=") + random(100), 0, "POST"); } _visible = 0; }
Symbol 202 MovieClip Frame 1
if ((_root.score > _root.hiscore20) and (_root.local == 1)) { _visible = 1; } else { _visible = 0; stop(); }
Symbol 244 MovieClip Frame 1
if (_root.local == 1) { _visible = 1; } else { _visible = 0; stop(); }
Symbol 244 MovieClip Frame 2
game = "zelda"; loadVariablesNum ((("/scores.php?action=getscores&game=" + game) + "&randx=") + random(100000), 0, "POST");
Symbol 244 MovieClip Frame 5
if (_root.scoredone == "done") { nothing = nothing; } else { gotoAndPlay (3); }
Symbol 244 MovieClip Frame 7
stop();

Library Items

Symbol 1 Sound [swing2]
Symbol 2 Sound [swing1]
Symbol 3 Sound [splat]
Symbol 4 Sound [hit3]
Symbol 5 Sound [hit2]
Symbol 6 Sound [hit1]
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip [navi_particle]Uses:7
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:11
Symbol 11 MovieClip [grass]Uses:10
Symbol 12 GraphicUsed by:15
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:15
Symbol 15 MovieClipUses:12 14Used by:Timeline
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:Timeline
Symbol 18 FontUsed by:19 20 38 39
Symbol 19 TextUses:18Used by:22
Symbol 20 TextUses:18Used by:22
Symbol 21 GraphicUsed by:22 40
Symbol 22 ButtonUses:19 20 21Used by:Timeline
Symbol 23 BitmapUsed by:24 25 27 28
Symbol 24 GraphicUses:23Used by:26
Symbol 25 GraphicUses:23Used by:26
Symbol 26 MovieClipUses:24 25Used by:30
Symbol 27 GraphicUses:23Used by:29
Symbol 28 GraphicUses:23Used by:29
Symbol 29 MovieClipUses:27 28Used by:30
Symbol 30 MovieClipUses:26 29Used by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 TextUsed by:Timeline
Symbol 33 FontUsed by:34 41 126 127 166 167 168 185
Symbol 34 TextUses:33Used by:Timeline
Symbol 35 GraphicUsed by:36 177 188
Symbol 36 MovieClipUses:35Used by:Timeline
Symbol 37 GraphicUsed by:133  Timeline
Symbol 38 TextUses:18Used by:40
Symbol 39 TextUses:18Used by:40
Symbol 40 ButtonUses:38 39 21Used by:Timeline
Symbol 41 TextUses:33Used by:Timeline
Symbol 42 BitmapUsed by:43 44 45 112 113 114 117 118 120
Symbol 43 GraphicUses:42Used by:46
Symbol 44 GraphicUses:42Used by:46
Symbol 45 GraphicUses:42Used by:46
Symbol 46 MovieClipUses:43 44 45Used by:59
Symbol 47 MovieClipUsed by:59
Symbol 48 GraphicUsed by:57 123
Symbol 49 GraphicUsed by:57 123
Symbol 50 GraphicUsed by:57 123
Symbol 51 GraphicUsed by:57 123
Symbol 52 GraphicUsed by:57 123
Symbol 53 GraphicUsed by:57 123
Symbol 54 GraphicUsed by:57 123
Symbol 55 GraphicUsed by:57 123
Symbol 56 GraphicUsed by:57 123
Symbol 57 MovieClipUses:48 49 50 51 52 53 54 55 56Used by:59
Symbol 58 MovieClipUsed by:59 124
Symbol 59 MovieClipUses:46 47 57 58Used by:125
Symbol 60 BitmapUsed by:61
Symbol 61 GraphicUses:60Used by:62
Symbol 62 MovieClipUses:61Used by:125
Symbol 63 BitmapUsed by:64 65 66 67 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 93 94 95 96 98 100 101 103 104 106 107 128 129
Symbol 64 GraphicUses:63Used by:68
Symbol 65 GraphicUses:63Used by:68
Symbol 66 GraphicUses:63Used by:68
Symbol 67 GraphicUses:63Used by:68
Symbol 68 MovieClipUses:64 65 66 67Used by:109
Symbol 69 MovieClipUsed by:109
Symbol 70 GraphicUses:63Used by:90
Symbol 71 GraphicUses:63Used by:90
Symbol 72 GraphicUses:63Used by:90
Symbol 73 GraphicUses:63Used by:90
Symbol 74 GraphicUses:63Used by:90
Symbol 75 GraphicUses:63Used by:90
Symbol 76 GraphicUses:63Used by:90
Symbol 77 GraphicUses:63Used by:90
Symbol 78 GraphicUses:63Used by:90
Symbol 79 GraphicUses:63Used by:90
Symbol 80 GraphicUses:63Used by:90
Symbol 81 GraphicUses:63Used by:90
Symbol 82 GraphicUses:63Used by:90
Symbol 83 GraphicUses:63Used by:90
Symbol 84 GraphicUses:63Used by:90
Symbol 85 GraphicUses:63Used by:90
Symbol 86 GraphicUses:63Used by:90
Symbol 87 GraphicUses:63Used by:90
Symbol 88 GraphicUses:63Used by:90
Symbol 89 GraphicUses:63Used by:90
Symbol 90 MovieClipUses:70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89Used by:109
Symbol 91 GraphicUses:63Used by:92
Symbol 92 MovieClipUses:91Used by:109
Symbol 93 GraphicUses:63Used by:97
Symbol 94 GraphicUses:63Used by:97
Symbol 95 GraphicUses:63Used by:97
Symbol 96 GraphicUses:63Used by:97
Symbol 97 MovieClipUses:93 94 95 96Used by:109
Symbol 98 GraphicUses:63Used by:99
Symbol 99 MovieClipUses:98Used by:109
Symbol 100 GraphicUses:63Used by:102
Symbol 101 GraphicUses:63Used by:102
Symbol 102 MovieClipUses:100 101Used by:109
Symbol 103 GraphicUses:63Used by:105
Symbol 104 GraphicUses:63Used by:105
Symbol 105 MovieClipUses:103 104Used by:109
Symbol 106 GraphicUses:63Used by:108
Symbol 107 GraphicUses:63Used by:108
Symbol 108 MovieClipUses:106 107Used by:109
Symbol 109 MovieClipUses:68 69 90 92 97 99 102 105 108Used by:125
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:125
Symbol 112 GraphicUses:42Used by:115
Symbol 113 GraphicUses:42Used by:115
Symbol 114 GraphicUses:42Used by:115
Symbol 115 MovieClipUses:112 113 114Used by:124
Symbol 116 MovieClipUsed by:124
Symbol 117 GraphicUses:42Used by:119
Symbol 118 GraphicUses:42Used by:119
Symbol 119 MovieClipUses:117 118Used by:124
Symbol 120 GraphicUses:42Used by:121
Symbol 121 MovieClipUses:120Used by:124
Symbol 122 MovieClipUsed by:124
Symbol 123 MovieClipUses:48 49 50 51 52 53 54 55 56Used by:124
Symbol 124 MovieClipUses:115 116 119 121 122 123 58Used by:125
Symbol 125 MovieClipUses:59 62 109 111 124Used by:Timeline
Symbol 126 EditableTextUses:33Used by:Timeline
Symbol 127 EditableTextUses:33Used by:Timeline
Symbol 128 GraphicUses:63Used by:130
Symbol 129 GraphicUses:63Used by:130
Symbol 130 MovieClipUses:128 129Used by:Timeline
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:133
Symbol 133 MovieClipUses:132 37 SS1Used by:Timeline
Symbol 134 MovieClipUsed by:Timeline
Symbol 135 BitmapUsed by:136 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
Symbol 136 GraphicUses:135Used by:177
Symbol 137 SoundUsed by:177
Symbol 138 GraphicUses:135Used by:177
Symbol 139 GraphicUses:135Used by:177
Symbol 140 GraphicUses:135Used by:177
Symbol 141 GraphicUses:135Used by:177
Symbol 142 GraphicUses:135Used by:177
Symbol 143 GraphicUses:135Used by:177
Symbol 144 GraphicUses:135Used by:177
Symbol 145 GraphicUses:135Used by:177
Symbol 146 GraphicUses:135Used by:177
Symbol 147 GraphicUses:135Used by:177
Symbol 148 GraphicUses:135Used by:177
Symbol 149 GraphicUses:135Used by:177
Symbol 150 GraphicUses:135Used by:177
Symbol 151 GraphicUses:135Used by:177
Symbol 152 GraphicUses:135Used by:177
Symbol 153 GraphicUses:135Used by:177
Symbol 154 GraphicUses:135Used by:177
Symbol 155 GraphicUses:135Used by:177
Symbol 156 GraphicUses:135Used by:177
Symbol 157 GraphicUses:135Used by:177
Symbol 158 GraphicUses:135Used by:177
Symbol 159 GraphicUses:135Used by:177
Symbol 160 GraphicUses:135Used by:177
Symbol 161 GraphicUses:135Used by:177
Symbol 162 GraphicUses:135Used by:177
Symbol 163 GraphicUses:135Used by:177
Symbol 164 GraphicUsed by:177
Symbol 165 GraphicUsed by:177
Symbol 166 TextUses:33Used by:177
Symbol 167 TextUses:33Used by:177
Symbol 168 EditableTextUses:33Used by:177
Symbol 169 GraphicUsed by:172
Symbol 170 GraphicUsed by:172
Symbol 171 GraphicUsed by:172 176
Symbol 172 ButtonUses:169 170 171Used by:173
Symbol 173 MovieClipUses:172Used by:177
Symbol 174 GraphicUsed by:176
Symbol 175 GraphicUsed by:176
Symbol 176 ButtonUses:174 175 171Used by:177 244
Symbol 177 MovieClipUses:136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 35 166 167 168 173 176Used by:178
Symbol 178 MovieClipUses:177Used by:190
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:189
Symbol 181 GraphicUsed by:189
Symbol 182 SoundUsed by:189
Symbol 183 GraphicUsed by:189
Symbol 184 GraphicUsed by:189
Symbol 185 TextUses:33Used by:189
Symbol 186 GraphicUsed by:188
Symbol 187 GraphicUsed by:188
Symbol 188 ButtonUses:186 187 35Used by:189
Symbol 189 MovieClipUses:180 181 182 183 184 185 188Used by:190
Symbol 190 MovieClipUses:178 189Used by:Timeline
Symbol 191 FontUsed by:192
Symbol 192 EditableTextUses:191Used by:244
Symbol 193 GraphicUsed by:202
Symbol 194 FontUsed by:195
Symbol 195 EditableTextUses:194Used by:202
Symbol 196 GraphicUsed by:199
Symbol 197 GraphicUsed by:199
Symbol 198 GraphicUsed by:199
Symbol 199 ButtonUses:196 197 198Used by:202
Symbol 200 FontUsed by:201
Symbol 201 TextUses:200Used by:202
Symbol 202 MovieClipUses:193 195 199 201Used by:244
Symbol 203 FontUsed by:204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
Symbol 204 EditableTextUses:203Used by:244
Symbol 205 EditableTextUses:203Used by:244
Symbol 206 EditableTextUses:203Used by:244
Symbol 207 EditableTextUses:203Used by:244
Symbol 208 EditableTextUses:203Used by:244
Symbol 209 EditableTextUses:203Used by:244
Symbol 210 EditableTextUses:203Used by:244
Symbol 211 EditableTextUses:203Used by:244
Symbol 212 EditableTextUses:203Used by:244
Symbol 213 EditableTextUses:203Used by:244
Symbol 214 EditableTextUses:203Used by:244
Symbol 215 EditableTextUses:203Used by:244
Symbol 216 EditableTextUses:203Used by:244
Symbol 217 EditableTextUses:203Used by:244
Symbol 218 EditableTextUses:203Used by:244
Symbol 219 EditableTextUses:203Used by:244
Symbol 220 EditableTextUses:203Used by:244
Symbol 221 EditableTextUses:203Used by:244
Symbol 222 EditableTextUses:203Used by:244
Symbol 223 EditableTextUses:203Used by:244
Symbol 224 EditableTextUses:203Used by:244
Symbol 225 EditableTextUses:203Used by:244
Symbol 226 EditableTextUses:203Used by:244
Symbol 227 EditableTextUses:203Used by:244
Symbol 228 EditableTextUses:203Used by:244
Symbol 229 EditableTextUses:203Used by:244
Symbol 230 EditableTextUses:203Used by:244
Symbol 231 EditableTextUses:203Used by:244
Symbol 232 EditableTextUses:203Used by:244
Symbol 233 EditableTextUses:203Used by:244
Symbol 234 EditableTextUses:203Used by:244
Symbol 235 EditableTextUses:203Used by:244
Symbol 236 EditableTextUses:203Used by:244
Symbol 237 EditableTextUses:203Used by:244
Symbol 238 EditableTextUses:203Used by:244
Symbol 239 EditableTextUses:203Used by:244
Symbol 240 EditableTextUses:203Used by:244
Symbol 241 EditableTextUses:203Used by:244
Symbol 242 EditableTextUses:203Used by:244
Symbol 243 EditableTextUses:203Used by:244
Symbol 244 MovieClipUses:192 202 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 176Used by:Timeline
Streaming Sound 1Used by:Symbol 133 MovieClip

Instance Names

"loader"Frame 1Symbol 15 MovieClip
"cursor"Frame 3Symbol 31 MovieClip
"game"Frame 7Symbol 125 MovieClip
"hud"Frame 7Symbol 130 MovieClip
"zelda"Frame 7Symbol 133 MovieClip
"navi"Symbol 31 MovieClip Frame 1Symbol 30 MovieClip
"enemy"Symbol 124 MovieClip Frame 3Symbol 121 MovieClip
"bg"Symbol 125 MovieClip Frame 1Symbol 62 MovieClip
"player"Symbol 125 MovieClip Frame 1Symbol 109 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "swing2"
ExportAssets (56)Timeline Frame 1Symbol 2 as "swing1"
ExportAssets (56)Timeline Frame 1Symbol 3 as "splat"
ExportAssets (56)Timeline Frame 1Symbol 4 as "hit3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "hit2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "hit1"
ExportAssets (56)Timeline Frame 1Symbol 8 as "navi_particle"
ExportAssets (56)Timeline Frame 1Symbol 11 as "grass"

Labels

"title"Frame 3
"game_init"Frame 6
"game"Frame 7
"gameover"Frame 8
"scores"Frame 10
"go"Symbol 59 MovieClip Frame 1
"hit"Symbol 59 MovieClip Frame 2
"limbo"Symbol 59 MovieClip Frame 3
"respawn"Symbol 59 MovieClip Frame 4
"stand"Symbol 109 MovieClip Frame 1
"walk"Symbol 109 MovieClip Frame 2
"jump"Symbol 109 MovieClip Frame 3
"attack"Symbol 109 MovieClip Frame 4
"attack2"Symbol 109 MovieClip Frame 5
"attack3"Symbol 109 MovieClip Frame 6
"hit"Symbol 109 MovieClip Frame 7
"die"Symbol 109 MovieClip Frame 8
"stand"Symbol 124 MovieClip Frame 1
"walk"Symbol 124 MovieClip Frame 2
"hit"Symbol 124 MovieClip Frame 3
"die"Symbol 124 MovieClip Frame 4
"limbo"Symbol 124 MovieClip Frame 6
"respawn"Symbol 124 MovieClip Frame 7
"win"Symbol 190 MovieClip Frame 1
"lose"Symbol 190 MovieClip Frame 2
"loop"Symbol 244 MovieClip Frame 3

Dynamic Text Variables

_root.clockSymbol 126 EditableText""
_root.scoreSymbol 127 EditableText""
_root.scoreSymbol 168 EditableText""
_root.xnameSymbol 195 EditableText"Name Here"
_root.xname1Symbol 204 EditableText""
_root.hiscore1Symbol 205 EditableText""
_root.xname3Symbol 206 EditableText""
_root.hiscore3Symbol 207 EditableText""
_root.xname4Symbol 208 EditableText""
_root.hiscore4Symbol 209 EditableText""
_root.xname5Symbol 210 EditableText""
_root.hiscore5Symbol 211 EditableText""
_root.xname6Symbol 212 EditableText""
_root.hiscore6Symbol 213 EditableText""
_root.xname7Symbol 214 EditableText""
_root.hiscore7Symbol 215 EditableText""
_root.xname8Symbol 216 EditableText""
_root.hiscore8Symbol 217 EditableText""
_root.xname9Symbol 218 EditableText""
_root.hiscore9Symbol 219 EditableText""
_root.xname10Symbol 220 EditableText""
_root.hiscore10Symbol 221 EditableText""
_root.xname11Symbol 222 EditableText""
_root.hiscore11Symbol 223 EditableText""
_root.xname12Symbol 224 EditableText""
_root.hiscore12Symbol 225 EditableText""
_root.xname13Symbol 226 EditableText""
_root.hiscore13Symbol 227 EditableText""
_root.xname14Symbol 228 EditableText""
_root.hiscore14Symbol 229 EditableText""
_root.xname15Symbol 230 EditableText""
_root.hiscore15Symbol 231 EditableText""
_root.xname16Symbol 232 EditableText""
_root.hiscore16Symbol 233 EditableText""
_root.xname17Symbol 234 EditableText""
_root.hiscore17Symbol 235 EditableText""
_root.xname18Symbol 236 EditableText""
_root.hiscore18Symbol 237 EditableText""
_root.xname19Symbol 238 EditableText""
_root.hiscore19Symbol 239 EditableText""
_root.xname20Symbol 240 EditableText""
_root.hiscore20Symbol 241 EditableText""
_root.xname2Symbol 242 EditableText""
_root.hiscore2Symbol 243 EditableText""




http://swfchan.com/6/26055/info.shtml
Created: 23/5 -2019 03:23:29 Last modified: 23/5 -2019 03:23:29 Server time: 14/05 -2024 18:19:50