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/31859708?noj=FRM31859708-9DC" width="1" height="1"></div>

Stickman steve 2.swf

This is the info page for
Flash #23423

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


Text
100

%

0

www.IguanaGames.com

Actions

score maker

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 5 MovieClip "loading" in Frame 1
onClipEvent (load) { totalSize = _root.getBytesTotal(); } onClipEvent (enterFrame) { bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalSize; percent = int(100 * amountLoaded); if (amountLoaded >= 1) { _root.gotoAndStop("title"); } }
Frame 2
stop(); if (!score) { score = 0; } high_score_clip.score = score;
Instance of Symbol 35 MovieClip [sbeast] "welcome_beast" in Frame 2
onClipEvent (load) { dead = 0; if (this._name != "sbeast_clip") { kKillPoints = 1; kRight = 2; kLeft = 1; kGrav = 1; direction = 0; jumping = 0; dy = 0; kNumFrames = 3; frames = new Array(); frames[kRight] = new Array("0", "right1", "right2", "right3"); frames[kLeft] = new Array("0", "left1", "left2", "left3"); frame_counter = 0; kNumDeathFrames = 7; death_frames = new Array("0", "d1", "d2", "d3", "d4", "d5", "d6", "d7"); size = int(Math.random() * 40) + 60; this._xscale = size; this._yscale = size; speed = random(5) + 2; jumpSpeed = random(9) + 5; this._y = 290; if (random(2) == 0) { this._x = -40; direction = kRight; } else { this._x = 740; direction = kLeft; } land_at = this._y; } } onClipEvent (enterFrame) { var i; if ((this._name == "sbeast_clip") || (_root.paused)) { return(0); } if (dead == 0) { if (_root._xmouse < this._x) { if (((direction != kLeft) && (jumping == 0)) && (int(Math.random() * 4) == 0)) { direction = kLeft; } } else if (((direction != kRight) && (jumping == 0)) && (int(Math.random() * 4) == 0)) { direction = kRight; } if (jumping == 0) { if (int(Math.random() * 20) == 1) { jumping = 1; dy = jumpSpeed; } } if (jumping == 1) { dy = dy - kGrav; this._y = this._y - dy; if (this._y > land_at) { this._y = land_at; jumping = 0; } } if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } frame_counter++; if (frame_counter > kNumFrames) { frame_counter = 1; } this.gotoAndStop(frames[direction][frame_counter]); if ((_root.steve.dead == 0) && (this.hitTest(_root.steve_clip))) { if ((((_root.steve.moving == _root.kDuckPunching) || (((_root.steve.moving == _root.kPunching) && (this._y <= (_root.steve.y - _root.kPunchMinHeight))) && (this._y >= (_root.steve.y - _root.kPunchMaxHeight)))) || ((_root.steve.moving == _root.kKicking) && (this._y >= (_root.steve.y - _root.kKickHeight)))) && (((_root.steve.x < this._x) && (_root.steve.facing == kRight)) || ((_root.steve.x > this._x) && (_root.steve.facing == kLeft)))) { if (_root.steve.facing == _root.kRight) { direction = kRight; this._rotation = 10; } else { direction = kLeft; this._rotation = -10; } dy = int((120 - size) / 3); speed = int(Math.random() * 5) + 5; dead = 1; _root.gotPoints(kKillPoints); } else { var dist_x_right = 0; var dist_x_left = 0; if (_root.steve.ducked == 0) { var dist_x_right = 15; var dist_x_left = 15; } else if ((_root.steve.moving == _root.kLeft) || (_root.steve.moving == _root.kRight)) { dist_x_right = 20; dist_x_left = 20; } else if (_root.steve.facing == _root.kLeft) { dist_x_left = 50; dist_x_right = 30; } else { dist_x_left = 30; dist_x_right = 50; } if ((this._x > (_root.steve_clip._x - dist_x_left)) && (this._x < (_root.steve_clip._x + dist_x_right))) { if (_root.steve.safe == 0) { _root.killSteve(); } } } } else { i = _root.kBulletStartLevel; while (i <= _root.kBulletEndLevel) { if (_root["bullet" + i]) { the_bullet = _root["bullet" + i]; if (this.hitTest(the_bullet)) { the_bullet.dead = 1; dead = 2; frame_counter = 0; _root.gotPoints(kKillPoints * the_bullet.point_multiplier); } } i++; } } } else if (dead == 1) { dy = dy - kGrav; this._y = this._y - dy; if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } if (this._y >= land_at) { this._y = land_at; dead = 2; frame_counter = 0; } } else if (dead == 2) { frame_counter++; if (frame_counter > kNumDeathFrames) { dead = 0; _root.enemy_counter--; if (_root.enemy_timer > _root.enemy_make_timer) { _root.enemy_timer = 0; } this._y = 290; if (random(2) == 0) { this._x = -40; direction = kRight; } else { this._x = 740; direction = kLeft; } size = int(Math.random() * 40) + 60; this._xscale = size; this._yscale = size; speed = random(5) + 2; jumpSpeed = random(9) + 5; this._rotation = 0; } else { this.gotoAndStop(death_frames[frame_counter]); } } } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { if (_root._xmouse < this._x) { direction = kRight; this._rotation = 10; } else { direction = kLeft; this._rotation = -10; } dy = int((120 - size) / 3); speed = int(Math.random() * 5) + 5; dead = 1; } }
Frame 4
function setup() { score = 0; kills = 0; level = 1; ammo = 0; lives = 1; kMaxLives = 5; kPointsToGetLife = 25; next_get_life = kPointsToGetLife; kSafeTime = 60; kMaxAmmo = 10; ink_timer = 0; kSteveLevel = 4; kBulletStartLevel = 101; kBulletEndLevel = 110; kEnemyStartLevel = 5; kEnemyEndLevel = 100; kForegroundLevel = 500; kInkLevel = 499; kShadowLevel = 3; kSBeast = 1; kSWorm = 2; kDBird = 3; enemy_level = kEnemyStartLevel; kEnemyMakeTimer = 90; enemy_make_timer = kEnemyMakeTimer; enemy_timer = 0; enemy_make_timer_levels = new Array(0, 90, 75, 60, 60, 50, 50, 50, 40, 40, 40, 30, 30, 30, 20, 20, 15, 15, 10, 10, 5); enemy_type_levels = new Array(); enemy_type_levels[kSBeast] = new Array(0, 100, 90, 80, 75, 70, 70, 65, 65, 60); enemy_type_levels[kSWorm] = new Array(0, 0, 0, 10, 10, 15, 15, 20, 20, 25); enemy_type_levels[kDBird] = new Array(0, 0, 10, 10, 15, 15, 15, 15, 15, 15); sbeast_percent = enemy_type_levels[kSBeast][1]; sworm_percent = enemy_type_levels[kSWorm][1]; dbird_percent = enemy_type_levels[kDBird][1]; enemy_counter = 0; bullet_level = kBulletStartLevel; kBulletOffsety = 35; kBulletOffsetx = 25; kDuckBulletOffsety = 10; kDuckBulletOffsetx = 40; kMaxEnemies = 5; kStopped = 0; kLeft = 1; kRight = 2; kKicking = 3; kDucking = 4; kUnducking = 5; kRunDucking = 6; kThrowing = 7; kDuckThrowing = 8; kPunching = 9; kDuckPunching = 10; kKickReloadTime = 10; kGrav = 2; kSteveSpeed = 5; kSteveRollSpeed = 12; kSteveJumpSpeedx = 7; kSteveJumpSpeedy = 20; kFloor = 290; kLeftSide = 20; kRightSide = 680; kForegroundPosx = 475; kForegroundPosy = 400; kJumpOffset = 20; kKickHeight = 20; kPunchMinHeight = 25; kPunchMaxHeight = 60; kRollOffsetx = 15; kRollOffsety = 15; kKeyLeft = 74; kKeyRight = 76; kKeyJump = 73; kKeyKick = 32; kKeyDuck = 75; kKeyThrow = 186; kNumRunFrames = 6; kNumKickFrames = 5; kNumDuckFrames = 4; kNumRunDuckFrames = 3; kNumThrowFrames = 9; kNumDuckThrowFrames = 5; kNumPunchFrames = 7; kNumDuckPunchFrames = 5; steve = {dead:0, x:random(640) + 30, y:kFloor, dy:0, moving:kStopped, facing:kRight, jumping:0, ducked:0, kick_frame:0, kick_frame_list:new Array(), punch_frame_list:new Array(), duck_punch_frame_list:new Array(), run_frame:0, run_frame_list:new Array(), duck_frame:0, duck_frame_list:new Array(), run_duck_frame_list:new Array(), throw_frame:0, throw_frame_list:new Array(), duck_throw_frame_list:new Array(), kick_timer:0, safe:0, safe_timer:0}; steve.kick_frame_list[kLeft] = new Array("0", "kl1", "kl2", "kl3", "kl2", "kl1"); steve.kick_frame_list[kRight] = new Array("0", "kr1", "kr2", "kr3", "kr2", "kr1"); steve.run_frame_list[kRight] = new Array("0", "rr1", "rr2", "rr3", "rr4", "rr5", "rr6"); steve.run_frame_list[kLeft] = new Array("0", "rl1", "rl2", "rl3", "rl4", "rl5", "rl6"); steve.duck_frame_list[kLeft] = new Array("0", "dl1", "dl2", "dl3", "dl4"); steve.duck_frame_list[kRight] = new Array("0", "dr1", "dr2", "dr3", "dr4"); steve.run_duck_frame_list[kRight] = new Array("0", "rdr1", "rdr2", "rdr3"); steve.run_duck_frame_list[kLeft] = new Array("0", "rdl1", "rdl2", "rdl3"); steve.throw_frame_list[kRight] = new Array("0", "tr1", "tr2", "tr3", "tr4", "tr5", "tr6", "tr7", "tr8", "tr9"); steve.throw_frame_list[kLeft] = new Array("0", "tl1", "tl2", "tl3", "tl4", "tl5", "tl6", "tl7", "tl8", "tl9"); steve.duck_throw_frame_list[kRight] = new Array("0", "dtr1", "dtr2", "dtr3", "dtr2", "dtr1"); steve.duck_throw_frame_list[kLeft] = new Array("0", "dtl1", "dtl2", "dtl3", "dtl2", "dtl1"); steve.punch_frame_list[kRight] = new Array("0", "pr1", "pr2", "pr3", "pr4", "pr3", "pr2", "pr1"); steve.punch_frame_list[kLeft] = new Array("0", "pl1", "pl2", "pl3", "pl4", "pl3", "pr2", "pr1"); steve.duck_punch_frame_list[kRight] = new Array("0", "dtr1", "dtr2", "dtr3", "dtr2", "dtr1"); steve.duck_punch_frame_list[kLeft] = new Array("0", "dtl1", "dtl2", "dtl3", "dtl2", "dtl1"); attachMovie("steve_sprite", "steve_clip", kSteveLevel); steve_clip._xscale = 75; steve_clip._yscale = 75; steve_clip._x = steve.x; steve_clip._y = steve.y; bottle_clip.stop(); bottle_clip.ink_clip.stop(); setInk(); lives_clip.gotoAndStop("l" + lives); done = 0; } function checkInput() { if ((steve.moving == kStopped) && (key.isDown(kKeyLeft))) { steve.moving = kLeft; steve.facing = kLeft; if (steve.ducked) { steve_clip.gotoAndStop("rolling_left"); steve.x = steve.x - kRollOffsetx; steve.y = steve.y - kRollOffsety; } else { steve.run_frame = 1; } } else if ((steve.moving == kStopped) && (key.isDown(kKeyRight))) { steve.moving = kRight; steve.facing = kRight; if (steve.ducked) { steve_clip.gotoAndStop("rolling_right"); steve.x = steve.x + kRollOffsetx; steve.y = steve.y - kRollOffsety; } else { steve.run_frame = 1; } } else if ((steve.moving == kLeft) && (!key.isDown(kKeyLeft))) { steve.moving = kStopped; if (steve.jumping == 0) { if (steve.ducked == 1) { steve_clip._rotation = 0; steve.x = steve.x + kRollOffsetx; steve.y = steve.y + kRollOffsety; steve_clip.gotoAndStop("dl4"); } else { steve_clip.gotoAndStop("standing_left"); } } } else if ((steve.moving == kRight) && (!key.isDown(kKeyRight))) { steve.moving = kStopped; if (steve.jumping == 0) { if (steve.ducked == 1) { steve_clip._rotation = 0; steve.x = steve.x - kRollOffsetx; steve.y = steve.y + kRollOffsety; steve_clip.gotoAndStop("dr4"); } else { steve_clip.gotoAndStop("standing_right"); } } } else if ((((steve.moving == kStopped) || (steve.moving == kRight)) || (steve.moving == kLeft)) && (steve.jumping == 0)) { if (key.isDown(kKeyKick) && (steve.ducked == 0)) { if (steve.kick_timer >= kKickReloadTime) { steve.moving = kKicking; steve.kick_frame = 0; steve.kick_timer = 0; } } else if (key.isDown(kKeyJump) && (steve.ducked == 0)) { steve.jumping = 1; steve.y = steve.y - kJumpOffset; steve.dy = kSteveJumpSpeedy; if (steve.facing == kRight) { steve_clip.gotoAndStop("jumping_right"); } else if (steve.facing == kLeft) { steve_clip.gotoAndStop("jumping_left"); } } else if (key.isDown(kKeyThrow) && (steve.ducked == 0)) { if (steve.kick_timer >= kKickReloadTime) { if (ammo > 0) { steve.moving = kThrowing; steve.throw_frame = 0; } else { steve.moving = kPunching; steve.kick_frame = 0; } steve.kick_timer = 0; } } else if ((key.isDown(kKeyThrow) && (steve.ducked == 1)) && (steve.moving == kStopped)) { if (steve.kick_timer >= kKickReloadTime) { if (ammo > 0) { steve.moving = kDuckThrowing; steve.throw_frame = 0; } else { steve.moving = kDuckPunching; steve.kick_frame = 0; } steve.kick_timer = 0; } } else if ((key.isDown(kKeyDuck) && (steve.ducked == 0)) && (steve.moving == kStopped)) { steve.moving = kDucking; steve.duck_frame = 0; steve.ducked = 1; } else if ((steve.ducked == 1) && (!key.isDown(kKeyDuck))) { if (steve.moving == kLeft) { steve_clip._rotation = 0; steve.x = steve.x + kRollOffsetx; steve.y = steve.y + kRollOffsety; } else if (steve.moving == kRight) { steve_clip._rotation = 0; steve.x = steve.x - kRollOffsetx; steve.y = steve.y + kRollOffsety; } steve.moving = kUnducking; steve.duck_frame = kNumDuckFrames; steve.ducked = 0; } else if ((key.isDown(kKeyDuck) && (steve.ducked == 0)) && ((steve.moving == kRight) || (steve.moving == kLeft))) { steve.moving = kRunDucking; steve.duck_frame = 0; steve.ducked = 1; } } else if (steve.moving == kUnducking) { if (key.isDown(kKeyJump) && (steve.ducked == 0)) { steve.jumping = 1; steve.y = steve.y - kJumpOffset; steve.dy = kSteveJumpSpeedy; steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("jumping_right"); } else if (steve.facing == kLeft) { steve_clip.gotoAndStop("jumping_left"); } } } } function moveSteve() { var i; if (steve.safe == 1) { steve.safe_timer--; if (steve.safe_timer <= 0) { steve.safe = 0; steve_clip._visible = true; } else { steve_clip._visible = !steve_clip._visible; } } steve.kick_timer++; if (steve.moving == kRight) { if (steve.jumping == 1) { steve.x = steve.x + kSteveJumpSpeedx; } else if (steve.ducked == 1) { steve_clip._rotation = steve_clip._rotation + 50; steve.x = steve.x + kSteveRollSpeed; } else { steve.x = steve.x + kSteveSpeed; steve_clip.gotoAndStop(steve.run_frame_list[steve.moving][steve.run_frame]); steve.run_frame++; if (steve.run_frame > kNumRunFrames) { steve.run_frame = 1; } } if (steve.x > kRightSide) { steve.x = kRightSide; } } else if (steve.moving == kLeft) { if (steve.jumping == 1) { steve.x = steve.x - kSteveJumpSpeedx; } else if (steve.ducked == 1) { steve_clip._rotation = steve_clip._rotation - 50; steve.x = steve.x - kSteveRollSpeed; } else { steve.x = steve.x - kSteveSpeed; steve_clip.gotoAndStop(steve.run_frame_list[steve.moving][steve.run_frame]); steve.run_frame++; if (steve.run_frame > kNumRunFrames) { steve.run_frame = 1; } } if (steve.x < kLeftSide) { steve.x = kLeftSide; } } else if (steve.moving == kKicking) { steve.kick_frame++; if (steve.kick_frame > kNumKickFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("standing_right"); } else { steve_clip.gotoAndStop("standing_left"); } } else { steve_clip.gotoAndStop(steve.kick_frame_list[steve.facing][steve.kick_frame]); } } else if (steve.moving == kPunching) { steve.kick_frame++; if (steve.kick_frame > kNumPunchFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("standing_right"); } else { steve_clip.gotoAndStop("standing_left"); } } else { steve_clip.gotoAndStop(steve.punch_frame_list[steve.facing][steve.kick_frame]); } } else if (steve.moving == kDuckPunching) { steve.kick_frame++; if (steve.kick_frame > kNumDuckPunchFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("dr4"); } else { steve_clip.gotoAndStop("dl4"); } } else { steve_clip.gotoAndStop(steve.duck_punch_frame_list[steve.facing][steve.kick_frame]); } } else if (steve.moving == kDucking) { steve.duck_frame++; if (steve.duck_frame > kNumDuckFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("dr4"); } else { steve_clip.gotoAndStop("dl4"); } } else { steve_clip.gotoAndStop(steve.duck_frame_list[steve.facing][steve.duck_frame]); } } else if (steve.moving == kUnducking) { steve.duck_frame--; if (steve.duck_frame < 1) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("standing_right"); } else { steve_clip.gotoAndStop("standing_left"); } } else { steve_clip.gotoAndStop(steve.duck_frame_list[steve.facing][steve.duck_frame]); } } else if (steve.moving == kRunDucking) { steve.duck_frame++; if (steve.duck_frame > kNumRunDuckFrames) { if (steve.facing == kRight) { steve_clip.gotoAndStop("rolling_right"); steve.moving = kRight; steve.x = steve.x + kRollOffsetx; steve.y = steve.y - kRollOffsety; } else { steve_clip.gotoAndStop("rolling_left"); steve.moving = kLeft; steve.x = steve.x - kRollOffsetx; steve.y = steve.y - kRollOffsety; } } else { steve_clip.gotoAndStop(steve.run_duck_frame_list[steve.facing][steve.duck_frame]); } } else if (steve.moving == kThrowing) { steve.throw_frame++; if (steve.throw_frame > kNumThrowFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("standing_right"); } else { steve_clip.gotoAndStop("standing_left"); } } else { steve_clip.gotoAndStop(steve.throw_frame_list[steve.facing][steve.throw_frame]); if (steve.throw_frame == 8) { makeBullet(); } } } else if (steve.moving == kDuckThrowing) { steve.throw_frame++; if (steve.throw_frame > kNumDuckThrowFrames) { steve.moving = kStopped; if (steve.facing == kRight) { steve_clip.gotoAndStop("dr4"); } else { steve_clip.gotoAndStop("dl4"); } } else { steve_clip.gotoAndStop(steve.duck_throw_frame_list[steve.facing][steve.throw_frame]); if (steve.throw_frame == 3) { makeBullet(); } } } if (steve.jumping == 1) { if (steve.facing == kRight) { steve_clip._rotation = steve_clip._rotation + 60; } else if (steve.facing == kLeft) { steve_clip._rotation = steve_clip._rotation - 60; } steve.y = steve.y - steve.dy; steve.dy = steve.dy - kGrav; if ((steve.y + kJumpOffset) >= kFloor) { steve.y = kFloor; steve_clip._rotation = 0; if (steve.facing == kRight) { if (steve.moving == kRight) { steve_clip.gotoAndStop("standing_right"); } else { steve_clip.gotoAndStop("standing_right"); } } else if (steve.facing == kLeft) { if (steve.moving == kLeft) { steve_clip.gotoAndStop("standing_left"); } else { steve_clip.gotoAndStop("standing_left"); } } if (steve.dead == 2) { killSteve(); } steve.jumping = 0; } } steve_clip._x = steve.x; steve_clip._y = steve.y; } function killSteve() { if (lives > 0) { lives--; lives_clip.gotoAndStop("l" + lives); steve.safe_timer = kSafeTime; steve.safe = 1; } else { getHighScores(); if (steve.jumping == 1) { if (steve.dead == 0) { steve.dead = 2; if (steve.facing == kLeft) { steve_clip.gotoAndStop("jumping_death_left"); } else { steve_clip.gotoAndStop("jumping_death_right"); } } else if (steve.dead == 2) { if (steve.facing == kLeft) { steve_clip.gotoAndPlay("splat_left"); } else { steve_clip.gotoAndPlay("splat_right"); } steve_clip.y = kFloor; steve.dead = 1; done = 1; } } else if (steve.ducked == 1) { if ((steve.moving == kLeft) || (steve.moving == kRight)) { steve_clip._rotation = 0; steve_clip._y = steve_clip._y + kRollOffsety; } else if (steve.facing == kLeft) { steve_clip._x = steve_clip._x - kRollOffsetx; } else { steve_clip._x = steve_clip._x + kRollOffsetx; } if (steve.facing == kLeft) { steve_clip.gotoAndPlay("splat_left"); } else { steve_clip.gotoAndPlay("splat_right"); } steve_clip.y = kFloor; steve.dead = 1; done = 1; } else { if (steve.facing == kLeft) { steve_clip.gotoAndPlay("death_left"); } else { steve_clip.gotoAndPlay("death_right"); } steve_clip.y = kFloor; steve.dead = 1; done = 1; } } } function makeBullet() { if (ammo > 0) { bullet_clip.duplicateMovieClip("bullet" + bullet_level, bullet_level); bullet_level++; if (bullet_level > kBulletEndLevel) { bullet_level = kBulletStartLevel; } ammo--; setInk(); } } function makeEnemyCheck() { if ((enemy_counter < kMaxEnemies) && (enemy_timer >= enemy_make_timer)) { makeEnemy(); enemy_timer = 0; } enemy_timer++; } function makeEnemy() { var _local1 = random(100) + 1; if (_local1 <= sbeast_percent) { sbeast_clip.duplicateMovieClip("enemy" + enemy_level, enemy_level); } else { _local1 = _local1 - sbeast_percent; if (_local1 <= sworm_percent) { sworm_clip.duplicateMovieClip("enemy" + enemy_level, enemy_level); } else { _local1 = _local1 - sworm_percent; if (_local1 <= dbird_percent) { dbird_clip.duplicateMovieClip("enemy" + enemy_level, enemy_level); } } } enemy_level++; if (enemy_level > kEnemyEndLevel) { enemy_level = kEnemyStartLevel; } enemy_counter++; } function makeInkCheck() { if (ink_timer >= 30) { if (random(10) == 0) { if (!_root.ink_clip) { makeInk(); } } ink_timer = 0; } ink_timer++; } function makeInk() { ink_parent.duplicateMovieClip("ink_clip", kInkLevel); } function gotInk(new_ink) { ammo = ammo + new_ink; if (ammo > kMaxAmmo) { ammo = kMaxAmmo; } setInk(); } function end() { i = enemy_level - 1; while (i >= 5) { removeMovieClip("enemy" + i); i--; } removeMovieClip("ink_clip"); removeMovieClip("shadow_clip"); removeMovieClip("steve_clip"); if (((score_getter.score4_text.length > 0) && (score > 0)) && (score > score_getter.score4_text)) { got_high_score = 1; name_ask_clip._visible = true; } else { got_high_score = 0; this.gotoAndStop("title"); } } function gotPoints(new_points) { score = score + new_points; kills++; extraLifeCheck(); levelCheck(); } function extraLifeCheck() { if (score >= next_get_life) { if (lives < kMaxLives) { lives++; lives_clip.gotoAndStop("l" + lives); } next_get_life = next_get_life + kPointsToGetLife; } } function setInk() { var _local1 = (ammo / kMaxAmmo) * 100; bottle_clip.ink_clip._yscale = _local1; } function levelCheck() { level = Math.ceil(kills / 4.9); if (level < enemy_make_timer_levels.length) { enemy_make_timer = enemy_make_timer_levels[level]; } if (level < enemy_type_levels[kSBeast].length) { sbeast_percent = enemy_type_levels[kSBeast][level]; sworm_percent = enemy_type_levels[kSWorm][level]; dbird_percent = enemy_type_levels[kDBird][level]; } } function getHighScores() { } function getName() { name = name_ask_clip.name; name_ask_clip._visible = false; if (name.length < 1) { name = "Anonymous"; } this.gotoAndStop("title"); }
Instance of Symbol 153 MovieClip "actions" in Frame 4
onClipEvent (load) { _root.name_ask_clip._visible = false; _root.paused_clip._visible = false; _root.score_getter._visible = false; _root.sbeast_clip._visible = false; _root.sworm_clip._visible = false; _root.dbird_clip._visible = false; _root.ink_parent._visible = false; _root.shadow_parent._visible = false; _root.bulet_clip._visible = false; this._visible = false; _root.sbeast_clip.stop(); _root.setup(); endTimer = 0; kPauseWaitTime = 15; pause_wait_timer = kPauseWaitTime; _root.paused = false; } onClipEvent (enterFrame) { if ((key.isDown(80) && (pause_wait_timer > kPauseWaitTime)) && (_root.done == 0)) { _root.paused = !_root.paused; _root.paused_clip._visible = !_root.paused_clip._visible; pause_wait_timer = 0; } pause_wait_timer++; if (_root.done == 0) { if (!_root.paused) { if (_root.steve.dead == 0) { _root.checkInput(); } if (_root.steve.dead != 1) { _root.moveSteve(); } _root.makeEnemyCheck(); _root.makeInkCheck(); } } else if (endTimer >= 60) { _root.end(); } else { endTimer++; } }
Instance of Symbol 35 MovieClip [sbeast] "sbeast_clip" in Frame 4
onClipEvent (load) { dead = 0; if (this._name != "sbeast_clip") { kKillPoints = 1; kRight = 2; kLeft = 1; kGrav = 1; direction = 0; jumping = 0; dy = 0; kNumFrames = 3; frames = new Array(); frames[kRight] = new Array("0", "right1", "right2", "right3"); frames[kLeft] = new Array("0", "left1", "left2", "left3"); frame_counter = 0; kNumDeathFrames = 7; death_frames = new Array("0", "d1", "d2", "d3", "d4", "d5", "d6", "d7"); size = int(Math.random() * 40) + 60; this._xscale = size; this._yscale = size; speed = int(Math.random() * 4) + 1; jumpSpeed = random(9) + 3; this._y = _root.kFloor; if (random(2) == 0) { this._x = _root.kLeftSide - 30; direction = kRight; } else { this._x = _root.kRightSide + 30; direction = kLeft; } land_at = this._y; } } onClipEvent (enterFrame) { var i; if ((this._name == "sbeast_clip") || (_root.paused)) { return(0); } if (dead == 0) { if (_root.steve_clip._x < this._x) { if (((direction != kLeft) && (jumping == 0)) && (int(Math.random() * 4) == 0)) { direction = kLeft; } } else if (((direction != kRight) && (jumping == 0)) && (int(Math.random() * 4) == 0)) { direction = kRight; } if (jumping == 0) { if (int(Math.random() * 20) == 1) { jumping = 1; dy = jumpSpeed; } } if (jumping == 1) { dy = dy - kGrav; this._y = this._y - dy; if (this._y > land_at) { this._y = land_at; jumping = 0; } } if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } frame_counter++; if (frame_counter > kNumFrames) { frame_counter = 1; } this.gotoAndStop(frames[direction][frame_counter]); if ((_root.steve.dead == 0) && (this.hitTest(_root.steve_clip))) { if ((((_root.steve.moving == _root.kDuckPunching) || (((_root.steve.moving == _root.kPunching) && (this._y <= (_root.steve.y - _root.kPunchMinHeight))) && (this._y >= (_root.steve.y - _root.kPunchMaxHeight)))) || ((_root.steve.moving == _root.kKicking) && (this._y >= (_root.steve.y - _root.kKickHeight)))) && (((_root.steve.x < this._x) && (_root.steve.facing == kRight)) || ((_root.steve.x > this._x) && (_root.steve.facing == kLeft)))) { if (_root.steve.facing == _root.kRight) { direction = kRight; this._rotation = 10; } else { direction = kLeft; this._rotation = -10; } dy = int((120 - size) / 3); speed = int(Math.random() * 5) + 5; dead = 1; _root.gotPoints(kKillPoints); } else { var dist_x_right = 0; var dist_x_left = 0; if (_root.steve.ducked == 0) { var dist_x_right = 15; var dist_x_left = 15; } else if ((_root.steve.moving == _root.kLeft) || (_root.steve.moving == _root.kRight)) { dist_x_right = 20; dist_x_left = 20; } else if (_root.steve.facing == _root.kLeft) { dist_x_left = 50; dist_x_right = 30; } else { dist_x_left = 30; dist_x_right = 50; } if ((this._x > (_root.steve_clip._x - dist_x_left)) && (this._x < (_root.steve_clip._x + dist_x_right))) { if (_root.steve.safe == 0) { _root.killSteve(); } } } } else { i = _root.kBulletStartLevel; while (i <= _root.kBulletEndLevel) { if (_root["bullet" + i]) { the_bullet = _root["bullet" + i]; if (this.hitTest(the_bullet)) { the_bullet.dead = 1; dead = 2; frame_counter = 0; _root.gotPoints(kKillPoints * the_bullet.point_multiplier); } } i++; } } } else if (dead == 1) { dy = dy - kGrav; this._y = this._y - dy; if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } if (this._y >= land_at) { this._y = land_at; dead = 2; frame_counter = 0; } } else if (dead == 2) { frame_counter++; if (frame_counter > kNumDeathFrames) { dead = 3; _root.enemy_counter--; if (_root.enemy_timer > _root.enemy_make_timer) { _root.enemy_timer = 0; } this.removeMovieClip(); } else { this.gotoAndStop(death_frames[frame_counter]); } } }
Instance of Symbol 165 MovieClip [bullet] "bullet_clip" in Frame 4
onClipEvent (load) { dead = 0; if (this._name != "bullet_clip") { kRight = 2; kLeft = 1; kGrav = 1; direction = 0; speed = 0; dy = 0; offsetx = 0; offsety = 0; frames = new Array(); frames[kLeft] = new Array("0", "q1", "q2", "q1", "q3"); frames[kRight] = new Array("0", "q1", "q2", "q1", "q3"); frame_counter = 0; kNumFrames = 4; kNumDeathFrames = 4; death_frames = new Array("0", "d1", "d2", "d3", "d4"); if (_root.steve.ducked == 1) { speed = 6; dy = 12; offsety = _root.kDuckBulletOffsety; offsetx = _root.kDuckBulletOffsetx; point_multiplier = 2; } else { speed = 15; dy = 8; offsety = _root.kBulletOffsety; offsetx = _root.kBulletOffsetx; point_multiplier = 2; } this._y = _root.steve.y - offsety; if (_root.steve.facing == _root.kRight) { direction = kRight; this._x = _root.steve.x + offsetx; } else { direction = kLeft; this._x = _root.steve.x - offsetx; } } } onClipEvent (enterFrame) { if (_root.paused) { return(0); } if ((dead == 0) && (this._name != "bullet_clip")) { dy = dy - kGrav; this._y = this._y - dy; if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } frame_counter++; if (frame_counter > kNumFrames) { frame_counter = 1; } this.gotoAndStop(frames[direction][frame_counter]); if (this._y >= _root.kFloor) { dead = 1; frame_counter = 0; } } else if (dead == 1) { frame_counter++; if (frame_counter > kNumDeathFrames) { dead = 2; this.removeMovieClip(); } else { this.gotoAndStop(death_frames[frame_counter]); } } }
Instance of Symbol 176 MovieClip [ink_ammo] "ink_parent" in Frame 4
onClipEvent (load) { if (this._name == "ink_parent") { return(0); } this.gotoAndStop("normal"); this._visible = false; this._x = random(640) + 30; this._y = -30; dead = 0; timer = 0; kAmmoAmount = 2; kNumBreakFrames = 5; break_frame_list = new Array("0", "b1", "b2", "b3", "b4", "b5"); frame = 0; _root.attachMovie("shadow", "shadow_clip", _root.kShadowLevel); _root.shadow_clip._y = _root.kFloor; _root.shadow_clip._x = this._x; _root.shadow_clip._xscale = 10; _root.shadow_clip._yscale = 10; } onClipEvent (enterFrame) { if ((this._name == "ink_parent") || (_root.paused)) { return(0); } if (dead == 0) { if (_root.shadow_clip._xscale < 90) { _root.shadow_clip._xscale = _root.shadow_clip._xscale + 1; _root.shadow_clip._yscale = _root.shadow_clip._yscale + 1; } else { if (this._visible == false) { this._visible = true; } if (_root.shadow_clip._xscale < 100) { _root.shadow_clip._xscale = _root.shadow_clip._xscale + 1; _root.shadow_clip._yscale = _root.shadow_clip._yscale + 1; } this._y = this._y + 11; if ((_root.steve.dead == 0) && (this.hitTest(_root.steve_clip))) { _root.shadow_clip.removeMovieClip(); _root.gotInk(kAmmoAmount); this.removeMovieClip(); } if (this._y > _root.kFloor) { dead = 1; frame = 0; this._y = _root.kFloor; _root.shadow_clip.removeMovieClip(); } } } else if (dead == 1) { frame++; if (frame > kNumBreakFrames) { this.removeMovieClip(); } else { this.gotoAndStop(break_frame_list[frame]); } } }
Instance of Symbol 189 MovieClip [sworm_sprite] "sworm_clip" in Frame 4
onClipEvent (load) { dead = 0; if (this._name == "sworm_clip") { return(0); } kKillPoints = 2; kRight = 2; kLeft = 1; kGrav = 1; direction = 0; jumping = 0; dy = 0; kNumFrames = 4; frames = new Array(); frames[kRight] = new Array("0", "m1", "m2", "m3", "m4", "m5"); frames[kLeft] = new Array("0", "m1", "m2", "m3", "m4", "m5"); frame_counter = 0; kNumDeathFrames = 5; death_frames = new Array("0", "d1", "d2", "d3", "d4", "d5", "d6"); size = random(51) + 50; this._xscale = size; this._yscale = size; speed = random(5) + 8; this._y = _root.kFloor; if (random(2) == 0) { this._x = _root.kLeftSide - 40; direction = kRight; } else { this._x = _root.kRightSide + 40; direction = kLeft; } } onClipEvent (enterFrame) { var i; if ((this._name == "sworm_clip") || (_root.paused)) { return(0); } if (dead == 0) { if (jumping == 1) { dy = dy - kGrav; this._y = this._y - dy; if (this._y > land_at) { this._y = land_at; jumping = 0; } } if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } if ((direction == kLeft) && (this._x < -40)) { _root.enemy_counter--; this.removeMovieClip(); } else if ((direction == kRight) && (this._x > 740)) { _root.enemy_counter--; this.removeMovieClip(); } frame_counter++; if (frame_counter > kNumFrames) { frame_counter = 1; } this.gotoAndStop(frames[direction][frame_counter]); if ((_root.steve.dead == 0) && (this.hitTest(_root.steve_clip))) { if ((((_root.steve.moving == _root.kDuckPunching) || (((_root.steve.moving == _root.kPunching) && (this._y <= (_root.steve.y - _root.kPunchMinHeight))) && (this._y >= (_root.steve.y - _root.kPunchMaxHeight)))) || ((_root.steve.moving == _root.kKicking) && (this._y >= (_root.steve.y - _root.kKickHeight)))) && (((_root.steve.x < this._x) && (_root.steve.facing == kRight)) || ((_root.steve.x > this._x) && (_root.steve.facing == kLeft)))) { if (_root.steve.facing == _root.kRight) { direction = kRight; } else { direction = kLeft; } dead = 1; frame_counter = 0; _root.gotPoints(kKillPoints); } else if (_root.steve.safe == 0) { _root.killSteve(); } } else { i = _root.kBulletStartLevel; while (i <= _root.kBulletEndLevel) { if (_root["bullet" + i]) { the_bullet = _root["bullet" + i]; if (this.hitTest(the_bullet)) { the_bullet.dead = 1; if (the_bullet.direction == the_bullet.kRight) { direction = kRight; } else { direction = kLeft; } dead = 1; frame_counter = 0; _root.gotPoints(kKillPoints * the_bullet.point_multiplier); } } i++; } } } else if (dead == 1) { frame_counter++; if (frame_counter > kNumDeathFrames) { dead = 2; _root.enemy_counter--; if (_root.enemy_timer > _root.enemy_make_timer) { _root.enemy_timer = 0; } this.removeMovieClip(); } else { this.gotoAndStop(death_frames[frame_counter]); if (direction == kRight) { this._x = this._x + 6; } else { this._x = this._x - 6; } } } }
Instance of Symbol 220 MovieClip [dbird_sprite] "dbird_clip" in Frame 4
onClipEvent (load) { dead = 0; if (this._name != "dbird_clip") { kKillPoints = 2; kRight = 2; kLeft = 1; kGrav = 1; direction = 0; diving = 1; dy = 10; kNumFrames = 13; frames = new Array(); frames[kRight] = new Array("0", "mr1", "mr2", "mr3", "mr4", "mr5", "mr6", "mr7", "mr6", "mr5", "mr4", "mr3", "mr2", "mr1"); frames[kLeft] = new Array("0", "ml1", "ml2", "ml3", "ml4", "ml5", "ml6", "ml7", "ml6", "ml5", "ml4", "ml3", "ml2", "ml1"); frame_counter = 0; kNumDeathFrames = 7; death_frames = new Array(); death_frames[kRight] = new Array("0", "dr1", "dr2", "dr3", "dr4", "dr5", "dr6", "dr7"); death_frames[kLeft] = new Array("0", "dl1", "dl2", "dl3", "dl4", "dl5", "dl6", "dl7"); size = int(Math.random() * 40) + 60; this._xscale = size; this._yscale = size; speed = random(4) + 3; diveSpeed = random(6) + 5; this._y = random(51) + 180; if (random(2) == 0) { this._x = _root.kLeftSide - 50; direction = kRight; } else { this._x = _root.kRightSide + 50; direction = kLeft; } switch_at = this._y; } } onClipEvent (enterFrame) { var i; if ((this._name == "dbird_clip") || (_root.paused)) { return(0); } if (dead == 0) { if (diving == 0) { if (int(Math.random() * 20) == 1) { diving = 1; dy = diveSpeed; } } if (diving == 1) { if (this._y < switch_at) { dy = dy - kGrav; this._y = this._y - dy; } else { dy = dy + kGrav; this._y = this._y - dy; } } if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } if ((direction == kLeft) && (this._x < -50)) { _root.enemy_counter--; this.removeMovieClip(); } else if ((direction == kRight) && (this._x > 750)) { _root.enemy_counter--; this.removeMovieClip(); } frame_counter++; if (frame_counter > kNumFrames) { frame_counter = 1; } this.gotoAndStop(frames[direction][frame_counter]); if ((_root.steve.dead == 0) && (this.hitTest(_root.steve_clip))) { if ((((_root.steve.moving == _root.kDuckPunching) || (((_root.steve.moving == _root.kPunching) && (this._y <= (_root.steve.y - _root.kPunchMinHeight))) && (this._y >= (_root.steve.y - _root.kPunchMaxHeight)))) || ((_root.steve.moving == _root.kKicking) && (this._y >= (_root.steve.y - _root.kKickHeight)))) && (((_root.steve.x < this._x) && (_root.steve.facing == kRight)) || ((_root.steve.x > this._x) && (_root.steve.facing == kLeft)))) { this.gotoAndStop(frames[direction][1]); if (_root.steve.facing == _root.kRight) { direction = kRight; this._rotation = 5; } else { direction = kLeft; this._rotation = -5; } dy = 2; speed = random(4) + 5; dead = 1; _root.gotPoints(kKillPoints); } else if ((this._x > (_root.steve_clip._x - 30)) && (this._x < (_root.steve_clip._x + 30))) { if (_root.steve.safe == 0) { _root.killSteve(); } } } else { i = _root.kBulletStartLevel; while (i <= _root.kBulletEndLevel) { if (_root["bullet" + i]) { the_bullet = _root["bullet" + i]; if (this.hitTest(the_bullet)) { the_bullet.dead = 1; dead = 2; frame_counter = 0; _root.gotPoints(kKillPoints * the_bullet.point_multiplier); } } i++; } } } else if (dead == 1) { dy = dy - kGrav; this._y = this._y - dy; if (direction == kLeft) { this._x = this._x - speed; } else if (direction == kRight) { this._x = this._x + speed; } if (this._y >= _root.kFloor) { this._y = _root.kFloor; dead = 2; frame_counter = 0; this._rotation = 0; if (direction == kLeft) { direction = kRight; } else { direction = kLeft; } } } else if (dead == 2) { frame_counter++; if (frame_counter > kNumDeathFrames) { dead = 3; _root.enemy_counter--; if (_root.enemy_timer > _root.enemy_make_timer) { _root.enemy_timer = 0; } this.removeMovieClip(); } else { this.gotoAndStop(death_frames[direction][frame_counter]); } } }
Instance of Symbol 239 MovieClip [paused] "paused_clip" in Frame 4
/* no clip actions */
Symbol 16 Button
on (release) { _root.gotoAndStop("playing"); } on (keyPress "<Space>") { _root.gotoAndStop("playing"); }
Symbol 21 Button
on (release) { _root.gotoAndStop("help"); }
Symbol 39 Button
on (release) { getURL ("http://www.iguanagames.com"); }
Symbol 44 Button
on (release) { _root.gotoAndStop("title"); }
Symbol 135 MovieClip [steve_sprite] Frame 1
stop();
Symbol 135 MovieClip [steve_sprite] Frame 90
stop();
Symbol 135 MovieClip [steve_sprite] Frame 95
stop();
Symbol 135 MovieClip [steve_sprite] Frame 120
stop();
Symbol 135 MovieClip [steve_sprite] Frame 133
stop();
Instance of Symbol 149 MovieClip [score] in Symbol 150 MovieClip [background] Frame 1
onClipEvent (load) { old_score = 0; ones_clip.gotoAndStop("n0"); tens_clip.gotoAndStop("n0"); hundreds_clip.gotoAndStop("n0"); } onClipEvent (enterFrame) { if (_root.score != old_score) { score = _root.score; old_score = score; hundreds = Math.floor(score / 100); score = score - (hundreds * 100); tens = Math.floor(score / 10); score = score - (tens * 10); ones = score; hundreds_clip.gotoAndStop("n" + hundreds); tens_clip.gotoAndStop("n" + tens); ones_clip.gotoAndStop("n" + ones); } }
Symbol 165 MovieClip [bullet] Frame 1
stop();
Symbol 176 MovieClip [ink_ammo] Frame 1
stop();
Symbol 189 MovieClip [sworm_sprite] Frame 1
stop();
Symbol 220 MovieClip [dbird_sprite] Frame 1
stop();
Symbol 220 MovieClip [dbird_sprite] Frame 9
stop();
Symbol 226 MovieClip [lives] Frame 1
stop();
Symbol 236 Button
on (release) { _root.getName(); } on (keyPress "<Enter>") { _root.getName(); }

Library Items

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

Instance Names

"loading"Frame 1Symbol 5 MovieClip
"high_score_clip"Frame 2Symbol 9 MovieClip [high_scores]
"play_button"Frame 2Symbol 16 Button
"help_button"Frame 2Symbol 21 Button
"welcome_beast"Frame 2Symbol 35 MovieClip [sbeast]
"actions"Frame 4Symbol 153 MovieClip
"sbeast_clip"Frame 4Symbol 35 MovieClip [sbeast]
"bullet_clip"Frame 4Symbol 165 MovieClip [bullet]
"bottle_clip"Frame 4Symbol 169 MovieClip [bottle]
"ink_parent"Frame 4Symbol 176 MovieClip [ink_ammo]
"shadow_parent"Frame 4Symbol 178 MovieClip [shadow]
"sworm_clip"Frame 4Symbol 189 MovieClip [sworm_sprite]
"dbird_clip"Frame 4Symbol 220 MovieClip [dbird_sprite]
"lives_clip"Frame 4Symbol 226 MovieClip [lives]
"score_getter"Frame 4Symbol 229 MovieClip [score_maker]
"name_ask_clip"Frame 4Symbol 237 MovieClip [name_ask]
"paused_clip"Frame 4Symbol 239 MovieClip [paused]
"tens_clip"Symbol 149 MovieClip [score] Frame 1Symbol 148 MovieClip [num]
"ones_clip"Symbol 149 MovieClip [score] Frame 1Symbol 148 MovieClip [num]
"hundreds_clip"Symbol 149 MovieClip [score] Frame 1Symbol 148 MovieClip [num]
"ink_clip"Symbol 169 MovieClip [bottle] Frame 1Symbol 167 MovieClip [ink]

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 2Symbol 9 as "high_scores"
ExportAssets (56)Timeline Frame 2Symbol 35 as "sbeast"
ExportAssets (56)Timeline Frame 3Symbol 135 as "steve_sprite"
ExportAssets (56)Timeline Frame 4Symbol 148 as "num"
ExportAssets (56)Timeline Frame 4Symbol 148 as "num"
ExportAssets (56)Timeline Frame 4Symbol 148 as "num"
ExportAssets (56)Timeline Frame 4Symbol 149 as "score"
ExportAssets (56)Timeline Frame 4Symbol 150 as "background"
ExportAssets (56)Timeline Frame 4Symbol 35 as "sbeast"
ExportAssets (56)Timeline Frame 4Symbol 165 as "bullet"
ExportAssets (56)Timeline Frame 4Symbol 167 as "ink"
ExportAssets (56)Timeline Frame 4Symbol 169 as "bottle"
ExportAssets (56)Timeline Frame 4Symbol 176 as "ink_ammo"
ExportAssets (56)Timeline Frame 4Symbol 178 as "shadow"
ExportAssets (56)Timeline Frame 4Symbol 189 as "sworm_sprite"
ExportAssets (56)Timeline Frame 4Symbol 220 as "dbird_sprite"
ExportAssets (56)Timeline Frame 4Symbol 226 as "lives"
ExportAssets (56)Timeline Frame 4Symbol 229 as "score_maker"
ExportAssets (56)Timeline Frame 4Symbol 237 as "name_ask"
ExportAssets (56)Timeline Frame 4Symbol 239 as "paused"

Labels

"title"Frame 2
"help"Frame 3
"playing"Frame 4
"left1"Symbol 35 MovieClip [sbeast] Frame 1
"left2"Symbol 35 MovieClip [sbeast] Frame 2
"left3"Symbol 35 MovieClip [sbeast] Frame 3
"right1"Symbol 35 MovieClip [sbeast] Frame 5
"right2"Symbol 35 MovieClip [sbeast] Frame 6
"right3"Symbol 35 MovieClip [sbeast] Frame 7
"d1"Symbol 35 MovieClip [sbeast] Frame 9
"d2"Symbol 35 MovieClip [sbeast] Frame 10
"d3"Symbol 35 MovieClip [sbeast] Frame 11
"d4"Symbol 35 MovieClip [sbeast] Frame 12
"d5"Symbol 35 MovieClip [sbeast] Frame 13
"d6"Symbol 35 MovieClip [sbeast] Frame 14
"d7"Symbol 35 MovieClip [sbeast] Frame 15
"standing"Symbol 135 MovieClip [steve_sprite] Frame 1
"standing_right"Symbol 135 MovieClip [steve_sprite] Frame 2
"kr1"Symbol 135 MovieClip [steve_sprite] Frame 3
"kr2"Symbol 135 MovieClip [steve_sprite] Frame 4
"kr3"Symbol 135 MovieClip [steve_sprite] Frame 5
"standing_left"Symbol 135 MovieClip [steve_sprite] Frame 6
"kl1"Symbol 135 MovieClip [steve_sprite] Frame 7
"kl2"Symbol 135 MovieClip [steve_sprite] Frame 8
"kl3"Symbol 135 MovieClip [steve_sprite] Frame 9
"rr1"Symbol 135 MovieClip [steve_sprite] Frame 11
"rr2"Symbol 135 MovieClip [steve_sprite] Frame 12
"rr3"Symbol 135 MovieClip [steve_sprite] Frame 13
"rr4"Symbol 135 MovieClip [steve_sprite] Frame 14
"rr5"Symbol 135 MovieClip [steve_sprite] Frame 15
"rr6"Symbol 135 MovieClip [steve_sprite] Frame 16
"rl1"Symbol 135 MovieClip [steve_sprite] Frame 18
"rl2"Symbol 135 MovieClip [steve_sprite] Frame 19
"rl3"Symbol 135 MovieClip [steve_sprite] Frame 20
"rl4"Symbol 135 MovieClip [steve_sprite] Frame 21
"rl5"Symbol 135 MovieClip [steve_sprite] Frame 22
"rl6"Symbol 135 MovieClip [steve_sprite] Frame 23
"dr1"Symbol 135 MovieClip [steve_sprite] Frame 26
"dr2"Symbol 135 MovieClip [steve_sprite] Frame 27
"dr3"Symbol 135 MovieClip [steve_sprite] Frame 28
"dr4"Symbol 135 MovieClip [steve_sprite] Frame 29
"dl1"Symbol 135 MovieClip [steve_sprite] Frame 32
"dl2"Symbol 135 MovieClip [steve_sprite] Frame 33
"dl3"Symbol 135 MovieClip [steve_sprite] Frame 34
"dl4"Symbol 135 MovieClip [steve_sprite] Frame 35
"rdr1"Symbol 135 MovieClip [steve_sprite] Frame 38
"rdr2"Symbol 135 MovieClip [steve_sprite] Frame 39
"rdr3"Symbol 135 MovieClip [steve_sprite] Frame 40
"rdl1"Symbol 135 MovieClip [steve_sprite] Frame 43
"rdl2"Symbol 135 MovieClip [steve_sprite] Frame 44
"rdl3"Symbol 135 MovieClip [steve_sprite] Frame 45
"tr1"Symbol 135 MovieClip [steve_sprite] Frame 48
"tr2"Symbol 135 MovieClip [steve_sprite] Frame 49
"tr3"Symbol 135 MovieClip [steve_sprite] Frame 50
"tr4"Symbol 135 MovieClip [steve_sprite] Frame 51
"tr5"Symbol 135 MovieClip [steve_sprite] Frame 52
"tr6"Symbol 135 MovieClip [steve_sprite] Frame 53
"tr7"Symbol 135 MovieClip [steve_sprite] Frame 54
"tr8"Symbol 135 MovieClip [steve_sprite] Frame 55
"tr9"Symbol 135 MovieClip [steve_sprite] Frame 56
"tl1"Symbol 135 MovieClip [steve_sprite] Frame 59
"tl2"Symbol 135 MovieClip [steve_sprite] Frame 60
"tl3"Symbol 135 MovieClip [steve_sprite] Frame 61
"tl4"Symbol 135 MovieClip [steve_sprite] Frame 62
"tl5"Symbol 135 MovieClip [steve_sprite] Frame 63
"tl6"Symbol 135 MovieClip [steve_sprite] Frame 64
"tl7"Symbol 135 MovieClip [steve_sprite] Frame 65
"tl8"Symbol 135 MovieClip [steve_sprite] Frame 66
"tl9"Symbol 135 MovieClip [steve_sprite] Frame 67
"dtr1"Symbol 135 MovieClip [steve_sprite] Frame 70
"dtr2"Symbol 135 MovieClip [steve_sprite] Frame 71
"dtr3"Symbol 135 MovieClip [steve_sprite] Frame 72
"dtl1"Symbol 135 MovieClip [steve_sprite] Frame 75
"dtl2"Symbol 135 MovieClip [steve_sprite] Frame 76
"dtl3"Symbol 135 MovieClip [steve_sprite] Frame 77
"rolling_right"Symbol 135 MovieClip [steve_sprite] Frame 79
"rolling_left"Symbol 135 MovieClip [steve_sprite] Frame 80
"jumping_right"Symbol 135 MovieClip [steve_sprite] Frame 81
"jumping_left"Symbol 135 MovieClip [steve_sprite] Frame 82
"jumping_death_right"Symbol 135 MovieClip [steve_sprite] Frame 84
"jumping_death_left"Symbol 135 MovieClip [steve_sprite] Frame 85
"splat_left"Symbol 135 MovieClip [steve_sprite] Frame 87
"splat_right"Symbol 135 MovieClip [steve_sprite] Frame 92
"pr1"Symbol 135 MovieClip [steve_sprite] Frame 98
"pr2"Symbol 135 MovieClip [steve_sprite] Frame 99
"pr3"Symbol 135 MovieClip [steve_sprite] Frame 100
"pr4"Symbol 135 MovieClip [steve_sprite] Frame 101
"pl1"Symbol 135 MovieClip [steve_sprite] Frame 104
"pl2"Symbol 135 MovieClip [steve_sprite] Frame 105
"pl3"Symbol 135 MovieClip [steve_sprite] Frame 106
"pl4"Symbol 135 MovieClip [steve_sprite] Frame 107
"death_right"Symbol 135 MovieClip [steve_sprite] Frame 110
"death_left"Symbol 135 MovieClip [steve_sprite] Frame 123
"n1"Symbol 148 MovieClip [num] Frame 1
"n2"Symbol 148 MovieClip [num] Frame 2
"n3"Symbol 148 MovieClip [num] Frame 3
"n4"Symbol 148 MovieClip [num] Frame 4
"n5"Symbol 148 MovieClip [num] Frame 5
"n6"Symbol 148 MovieClip [num] Frame 6
"n7"Symbol 148 MovieClip [num] Frame 7
"n8"Symbol 148 MovieClip [num] Frame 8
"n9"Symbol 148 MovieClip [num] Frame 9
"n0"Symbol 148 MovieClip [num] Frame 10
"r1"Symbol 165 MovieClip [bullet] Frame 1
"r2"Symbol 165 MovieClip [bullet] Frame 2
"l1"Symbol 165 MovieClip [bullet] Frame 3
"l2"Symbol 165 MovieClip [bullet] Frame 4
"d1"Symbol 165 MovieClip [bullet] Frame 7
"d2"Symbol 165 MovieClip [bullet] Frame 8
"d3"Symbol 165 MovieClip [bullet] Frame 9
"d4"Symbol 165 MovieClip [bullet] Frame 10
"q1"Symbol 165 MovieClip [bullet] Frame 11
"q2"Symbol 165 MovieClip [bullet] Frame 12
"q3"Symbol 165 MovieClip [bullet] Frame 13
"normal"Symbol 176 MovieClip [ink_ammo] Frame 1
"b1"Symbol 176 MovieClip [ink_ammo] Frame 2
"b2"Symbol 176 MovieClip [ink_ammo] Frame 3
"b3"Symbol 176 MovieClip [ink_ammo] Frame 4
"b4"Symbol 176 MovieClip [ink_ammo] Frame 5
"b5"Symbol 176 MovieClip [ink_ammo] Frame 6
"m1"Symbol 189 MovieClip [sworm_sprite] Frame 1
"m2"Symbol 189 MovieClip [sworm_sprite] Frame 2
"m3"Symbol 189 MovieClip [sworm_sprite] Frame 3
"m4"Symbol 189 MovieClip [sworm_sprite] Frame 4
"m5"Symbol 189 MovieClip [sworm_sprite] Frame 5
"d1"Symbol 189 MovieClip [sworm_sprite] Frame 8
"d2"Symbol 189 MovieClip [sworm_sprite] Frame 9
"d3"Symbol 189 MovieClip [sworm_sprite] Frame 10
"d4"Symbol 189 MovieClip [sworm_sprite] Frame 11
"d5"Symbol 189 MovieClip [sworm_sprite] Frame 12
"mr1"Symbol 220 MovieClip [dbird_sprite] Frame 1
"mr2"Symbol 220 MovieClip [dbird_sprite] Frame 2
"mr3"Symbol 220 MovieClip [dbird_sprite] Frame 3
"mr4"Symbol 220 MovieClip [dbird_sprite] Frame 4
"mr5"Symbol 220 MovieClip [dbird_sprite] Frame 5
"mr6"Symbol 220 MovieClip [dbird_sprite] Frame 6
"mr7"Symbol 220 MovieClip [dbird_sprite] Frame 7
"ml1"Symbol 220 MovieClip [dbird_sprite] Frame 9
"ml2"Symbol 220 MovieClip [dbird_sprite] Frame 10
"ml3"Symbol 220 MovieClip [dbird_sprite] Frame 11
"ml4"Symbol 220 MovieClip [dbird_sprite] Frame 12
"ml5"Symbol 220 MovieClip [dbird_sprite] Frame 13
"ml6"Symbol 220 MovieClip [dbird_sprite] Frame 14
"ml7"Symbol 220 MovieClip [dbird_sprite] Frame 15
"dr1"Symbol 220 MovieClip [dbird_sprite] Frame 18
"dr2"Symbol 220 MovieClip [dbird_sprite] Frame 19
"dr3"Symbol 220 MovieClip [dbird_sprite] Frame 20
"dr4"Symbol 220 MovieClip [dbird_sprite] Frame 21
"dr5"Symbol 220 MovieClip [dbird_sprite] Frame 22
"dr6"Symbol 220 MovieClip [dbird_sprite] Frame 23
"dr7"Symbol 220 MovieClip [dbird_sprite] Frame 24
"dl1"Symbol 220 MovieClip [dbird_sprite] Frame 27
"dl2"Symbol 220 MovieClip [dbird_sprite] Frame 28
"dl3"Symbol 220 MovieClip [dbird_sprite] Frame 29
"dl4"Symbol 220 MovieClip [dbird_sprite] Frame 30
"dl5"Symbol 220 MovieClip [dbird_sprite] Frame 31
"dl6"Symbol 220 MovieClip [dbird_sprite] Frame 32
"dl7"Symbol 220 MovieClip [dbird_sprite] Frame 33
"l0"Symbol 226 MovieClip [lives] Frame 1
"l1"Symbol 226 MovieClip [lives] Frame 2
"l2"Symbol 226 MovieClip [lives] Frame 3
"l3"Symbol 226 MovieClip [lives] Frame 4
"l4"Symbol 226 MovieClip [lives] Frame 5
"l5"Symbol 226 MovieClip [lives] Frame 6

Dynamic Text Variables

percentSymbol 3 EditableText"100"
scoreSymbol 8 EditableText"0"
nameSymbol 231 EditableText""




http://swfchan.com/5/23423/info.shtml
Created: 26/5 -2019 05:34:05 Last modified: 26/5 -2019 05:34:05 Server time: 09/05 -2024 13:21:16