STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229457 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #42253 |
000 |
Robotnik is getting away and as normal it is up to Sonic , assisted by Tails, to stop him! Chase Robotnik Through 4 levels of badnik filled sky's and take him out. For an Extra challenge, each time you defeat Robotnik, the game will loop back to the start again but with even faster badniks each time through! Enjoy! Controls move Up = Up Arrow Move Down = Down Arrow Move Left = Left Arrow Move Right = Right Arrow Jump = Space Bar Created by Manic Man Graphics & Sounds by Manic Man & from Sonic The Screen Saver & Sonic 1 & 2 Sonic characters, images, music and sounds are all copyright Sega. This is not an official Sonic game, it is a fan-game for non-profit use. This game is not endorsed by, or in any way connected with, Sega. If you like this game (or even if you don't), and you like Sonic, go and buy some real Sonic games from Sega. Thank you. |
00 |
ActionScript [AS1/AS2]
Frame 1stop();Frame 2stop();Frame 3if (_framesloaded >= _totalframes) { } else { gotoAndPlay (2); }Frame 4_root.Score = 0; _root.ScoreTotal = 0; _root.RoundBoost = 1; _root.Life = 100; _root.MusicOn = "False"; _root.FanFair = "False"; if (_root.MusicOn == "False") { _root.BackgroundMusic.stop(); _root.BackgroundMusic = new Sound(); _root.BackgroundMusic.attachSound("Music"); _root.BackgroundMusic.start(); } _root.MusicOn = "True"; _root.SuperCount = 0; _root.SuperOn = "False"; stop();Instance of Symbol 47 MovieClip "Lazer" in Frame 4onClipEvent (load) { function Lazerreset() { this._x = _root.Robotnik._x; this._y = _root.Robotnik._y + 10; LazerSpeed = 20; } Lazerreset(); } onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) { _root.PlaneClip.Player.gotoAndPlay(3); Lazerreset(); } if (_root.Shoot == "True") { this._x = this._x - LazerSpeed; } if (this._x < -130) { Lazerreset(); } }Instance of Symbol 61 MovieClip "PlaneClip" in Frame 4onClipEvent (enterFrame) { this.onKeyDown = function () { _root.KeyCode = Key.getCode(); if ((_root.KeyCode == "38") && (_root.SuperCount == 0)) { _root.SuperCount = 1; } else if ((_root.KeyCode == "40") && (_root.SuperCount == 1)) { _root.SuperCount = 2; } else if ((_root.KeyCode == "37") && (_root.SuperCount == 2)) { _root.SuperCount = 3; } else if ((_root.KeyCode == "39") && (_root.SuperCount == 3)) { _root.SuperCount = 4; } else if ((_root.KeyCode == "65") && (_root.SuperCount == 4)) { _root.SuperCount = 5; _root.SuperOn = "True"; _root.PlaneClip.Player.Sonic_Stand.gotoAndStop(2); } else if (_root.KeyCode != "0") { _root.SuperCount = 0; } _root.KeyCode = "0"; }; Key.addListener(this); }Instance of Symbol 62 MovieClip "GroundBottom" in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.Player)) { _root.StopMoveDown = "True"; } else { _root.StopMoveDown = "False"; } }Instance of Symbol 62 MovieClip "GroundTop" in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.Player)) { _root.StopMoveUp = "True"; } else { _root.StopMoveUp = "False"; } }Instance of Symbol 62 MovieClip "GroundRight" in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.Player)) { _root.StopMoveRight = "True"; } else { _root.StopMoveRight = "False"; } }Instance of Symbol 62 MovieClip "GroundLeft" in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.Player)) { _root.StopMoveLeft = "True"; } else { _root.StopMoveLeft = "False"; } }Instance of Symbol 5 MovieClip [Timer] in Frame 4onClipEvent (enterFrame) { _root.currenttime = getTimer() / 1000; _root.MusicDuration = _root.BackgroundMusic.duration - 150; _root.MusicPosition = _root.BackgroundMusic.position; if (_root.JumpTick >= 1) { _root.JumpTick = _root.JumpTick + 1; if (_root.JumpTick >= 5) { _root.JumpCan = "True"; _root.JumpTick = 0; } } _root.Hud.SonicHead._x = 0 + ((_root.ScoreTotal / 75) * 100); if ((_root.FanFair == "True") && (_root.MusicPosition >= _root.MusicDuration)) { _root.FanFair = "False"; _root.BackgroundMusic.stop(); _root.BackgroundMusic.attachSound("Music"); _root.MusicOn = "True"; } if (((_root.MusicPosition >= _root.MusicDuration) && (_root.MusicOn == "True")) && (_root.BossOn != "True")) { _root.BackgroundMusic.start(5.266372, 0); } else if ((_root.MusicPosition >= _root.MusicDuration) && (_root.MusicOn == "True")) { _root.BackgroundMusic.start(0, 0); } if (_root.TimeCount >= 1) { _root.TimeCount = _root.TimeCount + 1; if (_root.TimeCount == 15) { _root.LevelNum = 1; _root.LevelStart.gotoAndPlay(1); _root.LevelStart.Levelname.gotoAndStop(1); _root.numBadniks = 2; _root.Score = 0; _root.ScoreTotal = 0; _root.Boost = 15; _root.BossHealth = 0; _root.BossOn = "False"; _root.ScoreChange = _root.ScoreChange + 1; _root.Hud.SonicHead._x = 0; _root.Shoot = "False"; _root.TimeCount = 0; _root.FanFair = "False"; } } }Frame 5function LevelUp() { if ((_root.Score >= 25) && (_root.LevelNum == 1)) { _root.LevelStart.gotoAndPlay(1); _root.LevelStart.Levelname.gotoAndStop(2); _root.numBadniks = 3; _root.LevelNum = 2; _root.Score = 0; _root.Boost = 15 * _root.RoundBoost; } else if ((_root.Score >= 25) && (_root.LevelNum == 2)) { _root.LevelStart.gotoAndPlay(1); _root.LevelStart.Levelname.gotoAndStop(3); _root.numBadniks = 4; _root.LevelNum = 3; _root.Score = 0; _root.Boost = 20 * _root.RoundBoost; } else if ((_root.Score >= 25) && (_root.LevelNum == 3)) { _root.LevelStart.gotoAndPlay(1); _root.LevelStart.Levelname.gotoAndStop(4); _root.numBadniks = 5; _root.LevelNum = 4; _root.Boost = 25 * _root.RoundBoost; _root.BossOn = "True"; _root.BackgroundMusic.stop(); _root.BackgroundMusic.attachSound("BossMusic"); _root.BackgroundMusic.start(0, 0); _root.Score = 0; } else if ((_root.BossHealth >= 100) && (_root.LevelNum == 4)) { _root.RoundBoost = _root.RoundBoost + 1; _root.LevelStart.gotoAndPlay(5); _root.LevelStart.Levelname.gotoAndStop(5); _root.numBadniks = 3; _root.LevelNum = 5; _root.Score = 0; _root.Boost = 15 * _root.RoundBoost; _root.BossHealth = 0; _root.BossOn = "False"; _root.Hud.SonicHead._x = 0; _root.Shoot = "False"; _root.TimeCount = 2; _root.BackgroundMusic.stop(); _root.BackgroundMusic.attachSound("ActPass"); _root.BackgroundMusic.start(); _root.FanFair = "True"; } } numClouds = 3; _root.Life = 100; numBadniks = 2; _root.Boost = 10 * _root.RoundBoost; _root.Balkyrie.BalOn = "True"; _root.Balkyrie2.BalOn = "True"; _root.Balkyrie3.BalOn = "False"; _root.Balkyrie4.BalOn = "False"; _root.Balkyrie5.BalOn = "False"; _root.Balkyrie6.BalOn = "False"; _root.Balkyrie7.BalOn = "False"; _root.Balkyrie8.BalOn = "False"; _root.Balkyrie9.BalOn = "False"; _root.Balkyrie10.BalOn = "False"; _root.Balkyrie11.BalOn = "False"; _root.Balkyrie12.BalOn = "False"; _root.Balkyrie13.BalOn = "False"; _root.Balkyrie14.BalOn = "False"; _root.Balkyrie15.BalOn = "False"; _root.Balkyrie16.BalOn = "False"; _root.Hud.gotoAndStop(1); _root.Hud.HealthBar._width = 164; _root.Hud.SonicHead._x = 0; _root.Hud.RobotnikHead._x = 100; _root.NewDepth = 1000; _root.Hud.swapDepths(newDepth); _root.DepthStore = _root.Hud.getDepth(); _root.JumpUp = 0; _root.Life = 100; _root.Score = 0; _root.ScoreTotal = 0; _root.ScoreTotalB = 0; _root.ScoreChange = 1; _root.LevelNum = 1; _root.JumpCan = "True"; _root.FanFair = "False"; stop();Instance of Symbol 88 MovieClip "Balkyrie" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 96 MovieClip "Robotnik" in Frame 5onClipEvent (load) { function Bossreset() { this._x = 650; this._y = 210; } function BossMoveOut() { this._x = this._x + 20; _root.Lazer.Lazerreset(); if (this._x >= 600) { Bossreset(); } } Bossreset(); _root.BossMove = 0; } onClipEvent (enterFrame) { if ((_root.BossOn == "False") && (_root._x <= 600)) { BossMoveOut(); } if (_root.BossOn == "True") { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { _root.BossHealth = _root.BossHealth + 10; _root.LevelUp(); gotoAndPlay (2); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { _root.PlaneClip.Player.gotoAndPlay(3); } if (this._x > 350) { this._x = this._x - 5; _root.Lazer.Lazerreset(); } else if (_root.BossMove > 19) { this._y = this._y + 5; _root.BossMove = 1; } else if (_root.BossMove < 10) { this._y = this._y + 5; _root.BossMove = _root.BossMove + 1; } else if ((_root.BossMove > 9) && (_root.BossMove < 20)) { this._y = this._y - 5; _root.BossMove = _root.BossMove + 1; } if (((((_root.BossMove == 2) || (_root.BossMove == 6)) || (_root.BossMove == 10)) || (_root.BossMove == 14)) || (_root.BossMove == 18)) { _root.Shoot = "True"; Lazer.duplicateMovieClip("Lazer" + _root.Shooti, _root.Shooti + 100); _root.Shooti = _root.Shooti + 1; } if (this._x < -130) { Bossreset(); } } }Instance of Symbol 88 MovieClip "Balkyrie2" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie3" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie4" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie5" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie6" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie7" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie8" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie9" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie10" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie11" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie12" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie13" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie14" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie15" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 88 MovieClip "Balkyrie16" in Frame 5onClipEvent (load) { function Badnikreset() { if (_root._currentframe != "5") { BalSpeed = 0; } else { this._x = 650 + random(200); this._y = random(380); BalSpeed = ((_root.Boost / 4) + random(_root.Boost)) + 5; if (_root.LevelNum == 6) { BalOn = "False"; } } } Badnikreset(); } onClipEvent (enterFrame) { if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "2")) && (this._currentframe == "1")) { gotoAndPlay (2); _root.Score = _root.Score + 1; _root.ScoreTotal = _root.ScoreTotal + 1; _root.ScoreTotalB = _root.ScoreTotalB + 1; _root.LevelUp(); } if ((this.hitTest(_root.PlaneClip.Player) && (_root.PlaneClip.Player._currentframe == "1")) && (this._currentframe == "1")) { if (_root.SuperOn != "True") { _root.PlaneClip.Player.gotoAndPlay(3); } } if ((BalOn == "False") && (this._x < 650)) { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } else if (BalOn == "False") { } else { this._x = this._x - BalSpeed; if (this._currentframe != 1) { this.play(); } } if (this._x < -130) { Badnikreset(); } }Instance of Symbol 61 MovieClip "PlaneClip" in Frame 5onClipEvent (enterFrame) { if ((key.isDown(32) && (_root.PlaneClip.Player._currentFrame == "1")) && (_root.JumpCan == "True")) { _root.PlaneClip.Player.gotoAndStop(2); _root.JS = "True"; _root.PlaneClip.Player._y = _root.PlaneClip.Player._y - 10; _root.JumpUp = _root.JumpUp + 1; _root.JumpCan = "False"; } if (Key.isDown(40)) { if (_root.StopMoveDown == "False") { _y = (_y + 5); } } else if (Key.isDown(38)) { if (_root.StopMoveUp == "False") { _y = (_y - 5); } } if (Key.isDown(39)) { if (_root.StopMoveRight == "False") { _x = (_x + 5); } } else if (Key.isDown(37)) { if (_root.StopMoveLeft == "False") { _x = (_x - 5); } } }Instance of Symbol 98 MovieClip "Clouds" in Frame 5onClipEvent (load) { function reset() { if (_root._currentframe != "5") { CloudSpeed = 0; } else { this._x = 620 + random(200); this._y = random(450) - 50; CloudSpeed = 5 + random(10); } } reset(); } onClipEvent (enterFrame) { this._x = this._x - CloudSpeed; if (this._x < -130) { reset(); } }Instance of Symbol 98 MovieClip "Clouds" in Frame 5onClipEvent (load) { function reset() { if (_root._currentframe != "5") { CloudSpeed = 0; } else { this._x = 620 + random(200); this._y = random(450) - 50; CloudSpeed = 5 + random(10); } } reset(); } onClipEvent (enterFrame) { this._x = this._x - CloudSpeed; if (this._x < -130) { reset(); } }Frame 6stop(); _root.MusicOn = "False"; _root.Hud.removeMovieClip(); _root.BossHealth = 0; _root.BossOn = "False";Frame 7stop(); _root.Hud.removeMovieClip();Symbol 8 MovieClip [Son_Ball] Frame 1stop();Symbol 8 MovieClip [Son_Ball] Frame 2stop();Symbol 31 Buttonon (release) { getURL ("Http://www.mariosonicgames.com", "_blank"); }Symbol 39 MovieClip Frame 2_root.loading = _root.getBytesLoaded(); _root.total = _root.getBytesTotal(); _root.incremented = 2;Symbol 39 MovieClip Frame 3progressbar._width = Math.round((_root.loading / _root.total) * 100) * _root.incremented; if (_root.loading < _root.total) { gotoAndPlay (2); } else { _root.gotoAndPlay("Title"); }Symbol 52 MovieClip Frame 2if ((_root.PlaneClip.Player._currentframe != 1) && (_root.PlaneClip.Player._currentframe != 2)) { _root.PlaneClip.Player.play(); }Symbol 55 MovieClip Frame 1stop();Symbol 55 MovieClip Frame 2stop();Symbol 59 MovieClip Frame 1stop();Symbol 59 MovieClip Frame 2stop();Symbol 60 MovieClip Frame 1stop(); if (_root.SuperOn == "True") { _root.PlaneClip.Player.Sonic_Stand.gotoAndStop(2); }Symbol 60 MovieClip Frame 2stop(); if (_root.SuperOn == "True") { _root.PlaneClip.Player.Sonic_Ball.gotoAndStop(2); }Symbol 60 MovieClip Frame 3if (_root.SuperOn != "True") { _root.Life = _root.Life - 5; _root.Hud.HealthBar._width = Math.round(1.64 * _root.Life); if (_root.Life == 0) { _root.gotoAndStop("GameLose"); } } if (_root.SuperOn == "True") { _root.PlaneClip.Player.Sonic_Hurt.gotoAndStop(2); }Symbol 60 MovieClip Frame 9if (_root.JS == "True") { this.gotoAndStop(2); } else { this.gotoAndStop(1); }Symbol 61 MovieClip Frame 1stop();Instance of Symbol 60 MovieClip "Player" in Symbol 61 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.PlaneClip.AirPlane) && (this._currentframe == "2")) { gotoAndStop (1); _root.JS = "False"; _root.JumpTick = 1; } if ((_root.PlaneClip.Player._currentframe == 2) && (_root.JS == "True")) { _root.PlaneClip.Player._y = _root.PlaneClip.Player._y - 10; _root.JumpUp = _root.JumpUp + 1; if (_root.JumpUp >= 7) { _root.JS = "False"; _root.JumpUp = 0; } } else if (_root.PlaneClip.Player._currentframe == 2) { _root.PlaneClip.Player._y = _root.PlaneClip.Player._y + 10; } }Symbol 65 Buttonon (release) { gotoAndStop (5); }Symbol 67 Buttonon (release) { _root.About.gotoAndStop(2); }Symbol 72 Buttonon (release) { getURL ("Http://www.TESP.co.uk", "_blank"); }Symbol 75 Buttonon (release) { _root.About.gotoAndStop(1); }Symbol 78 Buttonon (release) { tellTarget (_root) { gotoAndStop ("Game"); }; }Symbol 79 MovieClip Frame 1stop();Symbol 79 MovieClip Frame 2stop();Symbol 88 MovieClip Frame 1stop();Symbol 88 MovieClip Frame 4this.BadnikReset();Symbol 96 MovieClip Frame 1stop();Symbol 96 MovieClip Frame 12gotoAndStop (1);Symbol 104 MovieClip Frame 1_root.Hud.HealthBar._width = Math.round(1.64 * _root.Life);Symbol 110 MovieClip Frame 1stop();Symbol 110 MovieClip Frame 2stop();Symbol 118 MovieClip Frame 1if (_level0.LevelNum == 1) { _root.LevelStart.Levelname.gotoAndStop(1); _root.Hud.SonicHead._x = 0; _root.Balkyrie.BalOn = "True"; _root.Balkyrie2.BalOn = "True"; _root.Balkyrie3.BalOn = "False"; _root.Balkyrie4.BalOn = "False"; _root.Balkyrie5.BalOn = "False"; _root.Balkyrie6.BalOn = "False"; _root.Balkyrie7.BalOn = "False"; _root.Balkyrie8.BalOn = "False"; _root.Balkyrie9.BalOn = "False"; _root.Balkyrie10.BalOn = "False"; _root.Balkyrie11.BalOn = "False"; _root.Balkyrie12.BalOn = "False"; _root.Balkyrie13.BalOn = "False"; _root.Balkyrie14.BalOn = "False"; _root.Balkyrie15.BalOn = "False"; _root.Balkyrie16.BalOn = "False"; } else if (_level0.LevelNum == 2) { _root.LevelStart.Levelname.gotoAndStop(2); _root.Balkyrie.BalOn = "True"; _root.Balkyrie2.BalOn = "True"; _root.Balkyrie3.BalOn = "True"; _root.Balkyrie4.BalOn = "True"; _root.Balkyrie5.BalOn = "False"; _root.Balkyrie6.BalOn = "False"; _root.Balkyrie7.BalOn = "False"; _root.Balkyrie8.BalOn = "False"; _root.Balkyrie9.BalOn = "False"; _root.Balkyrie10.BalOn = "False"; _root.Balkyrie11.BalOn = "False"; _root.Balkyrie12.BalOn = "False"; _root.Balkyrie13.BalOn = "False"; _root.Balkyrie14.BalOn = "False"; _root.Balkyrie15.BalOn = "False"; _root.Balkyrie16.BalOn = "False"; } else if (_level0.LevelNum == 3) { _root.LevelStart.Levelname.gotoAndStop(3); _root.Balkyrie.BalOn = "True"; _root.Balkyrie2.BalOn = "True"; _root.Balkyrie3.BalOn = "True"; _root.Balkyrie4.BalOn = "True"; _root.Balkyrie5.BalOn = "True"; _root.Balkyrie6.BalOn = "True"; _root.Balkyrie7.BalOn = "True"; _root.Balkyrie8.BalOn = "True"; _root.Balkyrie9.BalOn = "False"; _root.Balkyrie10.BalOn = "False"; _root.Balkyrie11.BalOn = "False"; _root.Balkyrie12.BalOn = "False"; _root.Balkyrie13.BalOn = "False"; _root.Balkyrie14.BalOn = "False"; _root.Balkyrie15.BalOn = "False"; _root.Balkyrie16.BalOn = "False"; } else if (_level0.LevelNum == 4) { _root.LevelStart.Levelname.gotoAndStop(4); _root.Balkyrie.BalOn = "True"; _root.Balkyrie2.BalOn = "True"; _root.Balkyrie3.BalOn = "True"; _root.Balkyrie4.BalOn = "False"; _root.Balkyrie5.BalOn = "False"; _root.Balkyrie6.BalOn = "False"; _root.Balkyrie7.BalOn = "False"; _root.Balkyrie8.BalOn = "False"; _root.Balkyrie9.BalOn = "False"; _root.Balkyrie10.BalOn = "False"; _root.Balkyrie11.BalOn = "False"; _root.Balkyrie12.BalOn = "False"; _root.Balkyrie13.BalOn = "False"; _root.Balkyrie14.BalOn = "False"; _root.Balkyrie15.BalOn = "False"; _root.Balkyrie16.BalOn = "False"; } else if (_level0.LevelNum == 5) { _root.LevelStart.Levelname.gotoAndStop(5); _root.Hud.gotoAndStop(1); _root.Hud.SonicHead._x = 0; _root.Hud.RobotnikHead._x = 100; _root.ScoreChange = 1; _root.LevelNum = 1; }Symbol 118 MovieClip Frame 9if (_level0.LevelNum == 1) { _root.LevelStart.Levelname.gotoAndStop(1); } else if (_level0.LevelNum == 2) { _root.LevelStart.Levelname.gotoAndStop(2); } else if (_level0.LevelNum == 3) { _root.LevelStart.Levelname.gotoAndStop(3); } else if (_level0.LevelNum == 4) { _root.LevelStart.Levelname.gotoAndStop(4); } else if (_level0.LevelNum == 5) { _root.LevelStart.Levelname.gotoAndStop(5); }Symbol 118 MovieClip Frame 16if (_level0.LevelNum == 1) { _root.LevelStart.Levelname.gotoAndStop(1); } else if (_level0.LevelNum == 2) { _root.LevelStart.Levelname.gotoAndStop(2); } else if (_level0.LevelNum == 3) { _root.LevelStart.Levelname.gotoAndStop(3); } else if (_level0.LevelNum == 4) { _root.LevelStart.Levelname.gotoAndStop(4); } else if (_level0.LevelNum == 5) { _root.LevelStart.Levelname.gotoAndStop(5); }Symbol 118 MovieClip Frame 22if (_level0.LevelNum == 1) { _root.LevelStart.Levelname.gotoAndStop(1); } else if (_level0.LevelNum == 2) { _root.LevelStart.Levelname.gotoAndStop(2); } else if (_level0.LevelNum == 3) { _root.LevelStart.Levelname.gotoAndStop(3); } else if (_level0.LevelNum == 4) { _root.LevelStart.Levelname.gotoAndStop(4); } else if (_level0.LevelNum == 5) { _root.LevelStart.Levelname.gotoAndStop(5); }Symbol 118 MovieClip Frame 27if (_level0.LevelNum == 1) { _root.LevelStart.Levelname.gotoAndStop(1); } else if (_level0.LevelNum == 2) { _root.LevelStart.Levelname.gotoAndStop(2); } else if (_level0.LevelNum == 3) { _root.LevelStart.Levelname.gotoAndStop(3); } else if (_level0.LevelNum == 4) { _root.LevelStart.Levelname.gotoAndStop(4); } else if (_level0.LevelNum == 5) { _root.LevelStart.Levelname.gotoAndStop(5); }Symbol 118 MovieClip Frame 28_root.Title = "Off"; stop();Symbol 122 Buttonon (release) { _root.SuperOn = "False"; gotoAndStop (4); }Symbol 125 Buttonon (release) { gotoAndStop (4); }
Library Items
Symbol 1 Sound [Music] | ||
Symbol 2 Sound [BossMusic] | ||
Symbol 3 Sound [ActPass] | ||
Symbol 4 Graphic | Used by:5 | |
Symbol 5 MovieClip [Timer] | Uses:4 | Used by:Timeline |
Symbol 6 Graphic [Son_Ball] | Used by:8 | |
Symbol 7 Graphic [Son_Ball] | Used by:8 | |
Symbol 8 MovieClip [Son_Ball] | Uses:7 6 | Used by:60 |
Symbol 9 Graphic | Used by:39 62 | |
Symbol 10 Graphic | Used by:27 | |
Symbol 11 Graphic | Used by:27 | |
Symbol 12 Graphic | Used by:27 | |
Symbol 13 Graphic | Used by:27 | |
Symbol 14 Graphic | Used by:27 | |
Symbol 15 Graphic | Used by:27 | |
Symbol 16 Graphic | Used by:27 | |
Symbol 17 Graphic | Used by:27 | |
Symbol 18 Graphic | Used by:27 | |
Symbol 19 Graphic | Used by:27 | |
Symbol 20 Graphic | Used by:27 | |
Symbol 21 Graphic | Used by:27 | |
Symbol 22 Graphic | Used by:27 | |
Symbol 23 Graphic | Used by:27 | |
Symbol 24 Graphic | Used by:27 | |
Symbol 25 Graphic | Used by:27 | |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 MovieClip | Uses:10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | Used by:39 |
Symbol 28 Graphic | Used by:39 | |
Symbol 29 Bitmap | Used by:30 | |
Symbol 30 Graphic | Uses:29 | Used by:31 |
Symbol 31 Button | Uses:30 | Used by:39 Timeline |
Symbol 32 Graphic | Used by:39 | |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip | Uses:33 | Used by:39 |
Symbol 35 Graphic | Used by:39 | |
Symbol 36 Font | Used by:37 | |
Symbol 37 EditableText | Uses:36 | Used by:39 |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:9 27 28 31 32 34 35 37 38 | Used by:Timeline |
Symbol 40 Graphic | Used by:Timeline | |
Symbol 41 Graphic | Used by:42 | |
Symbol 42 MovieClip | Uses:41 | Used by:Timeline |
Symbol 43 Graphic | Used by:47 | |
Symbol 44 Graphic | Used by:47 | |
Symbol 45 Graphic | Used by:47 | |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:43 44 45 46 | Used by:Timeline |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip | Uses:48 | Used by:52 |
Symbol 50 Graphic | Used by:52 | |
Symbol 51 Graphic | Used by:52 | |
Symbol 52 MovieClip | Uses:49 50 51 | Used by:61 |
Symbol 53 Graphic | Used by:55 | |
Symbol 54 Graphic | Used by:55 | |
Symbol 55 MovieClip | Uses:53 54 | Used by:60 |
Symbol 56 Sound | Used by:60 | |
Symbol 57 Graphic | Used by:59 | |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip | Uses:57 58 | Used by:60 |
Symbol 60 MovieClip | Uses:55 8 56 59 | Used by:61 |
Symbol 61 MovieClip | Uses:52 60 | Used by:Timeline |
Symbol 62 MovieClip | Uses:9 | Used by:Timeline |
Symbol 63 Graphic | Used by:Timeline | |
Symbol 64 Graphic | Used by:65 78 | |
Symbol 65 Button | Uses:64 | Used by:Timeline |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 Button | Uses:66 | Used by:Timeline |
Symbol 68 Graphic | Used by:Timeline | |
Symbol 69 Graphic | Used by:Timeline | |
Symbol 70 Graphic | Used by:72 | |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 Button | Uses:70 71 | Used by:Timeline |
Symbol 73 Graphic | Used by:79 | |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 Button | Uses:74 | Used by:79 |
Symbol 76 Font | Used by:77 100 102 120 124 | |
Symbol 77 Text | Uses:76 | Used by:79 |
Symbol 78 Button | Uses:64 | Used by:79 |
Symbol 79 MovieClip | Uses:73 75 77 78 | Used by:Timeline |
Symbol 80 Font | Used by:81 | |
Symbol 81 EditableText | Uses:80 | Used by:Timeline |
Symbol 82 Graphic | Used by:84 | |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:82 83 | Used by:88 |
Symbol 85 Graphic | Used by:88 | |
Symbol 86 Sound | Used by:88 | |
Symbol 87 Graphic | Used by:88 | |
Symbol 88 MovieClip | Uses:84 85 86 87 | Used by:Timeline |
Symbol 89 Graphic | Used by:96 | |
Symbol 90 Graphic | Used by:96 | |
Symbol 91 Sound | Used by:96 | |
Symbol 92 Graphic | Used by:96 | |
Symbol 93 Graphic | Used by:96 | |
Symbol 94 Graphic | Used by:96 | |
Symbol 95 Graphic | Used by:96 | |
Symbol 96 MovieClip | Uses:89 90 91 92 93 94 95 | Used by:Timeline |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 MovieClip | Uses:97 | Used by:Timeline |
Symbol 99 Graphic | Used by:110 | |
Symbol 100 EditableText | Uses:76 | Used by:110 |
Symbol 101 Graphic | Used by:110 | |
Symbol 102 EditableText | Uses:76 | Used by:110 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:110 |
Symbol 105 Graphic | Used by:110 | |
Symbol 106 Graphic | Used by:107 | |
Symbol 107 MovieClip | Uses:106 | Used by:110 |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:108 | Used by:110 |
Symbol 110 MovieClip | Uses:99 100 101 102 104 105 107 109 | Used by:Timeline |
Symbol 111 Graphic | Used by:116 | |
Symbol 112 Graphic | Used by:116 | |
Symbol 113 Graphic | Used by:116 | |
Symbol 114 Graphic | Used by:116 | |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:111 112 113 114 115 | Used by:118 |
Symbol 117 Sound | Used by:118 | |
Symbol 118 MovieClip | Uses:116 117 | Used by:Timeline |
Symbol 119 Graphic | Used by:Timeline | |
Symbol 120 EditableText | Uses:76 | Used by:Timeline |
Symbol 121 Graphic | Used by:122 125 | |
Symbol 122 Button | Uses:121 | Used by:Timeline |
Symbol 123 Graphic | Used by:Timeline | |
Symbol 124 EditableText | Uses:76 | Used by:Timeline |
Symbol 125 Button | Uses:121 | Used by:Timeline |
Instance Names
"MyGame" | Frame 1 | Symbol 39 MovieClip |
"Lazer" | Frame 4 | Symbol 47 MovieClip |
"PlaneClip" | Frame 4 | Symbol 61 MovieClip |
"GroundBottom" | Frame 4 | Symbol 62 MovieClip |
"GroundTop" | Frame 4 | Symbol 62 MovieClip |
"GroundRight" | Frame 4 | Symbol 62 MovieClip |
"GroundLeft" | Frame 4 | Symbol 62 MovieClip |
"About" | Frame 4 | Symbol 79 MovieClip |
"Balkyrie" | Frame 5 | Symbol 88 MovieClip |
"Robotnik" | Frame 5 | Symbol 96 MovieClip |
"Balkyrie2" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie3" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie4" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie5" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie6" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie7" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie8" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie9" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie10" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie11" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie12" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie13" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie14" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie15" | Frame 5 | Symbol 88 MovieClip |
"Balkyrie16" | Frame 5 | Symbol 88 MovieClip |
"PlaneClip" | Frame 5 | Symbol 61 MovieClip |
"Clouds" | Frame 5 | Symbol 98 MovieClip |
"Clouds" | Frame 5 | Symbol 98 MovieClip |
"Hud" | Frame 5 | Symbol 110 MovieClip |
"LevelStart" | Frame 5 | Symbol 118 MovieClip |
"progressbar" | Symbol 39 MovieClip Frame 1 | Symbol 34 MovieClip |
"Sonic_Stand" | Symbol 60 MovieClip Frame 1 | Symbol 55 MovieClip |
"Sonic_Ball" | Symbol 60 MovieClip Frame 2 | Symbol 8 MovieClip [Son_Ball] |
"Sonic_Hurt" | Symbol 60 MovieClip Frame 3 | Symbol 59 MovieClip |
"AirPlane" | Symbol 61 MovieClip Frame 1 | Symbol 52 MovieClip |
"Player" | Symbol 61 MovieClip Frame 1 | Symbol 60 MovieClip |
"HealthBar" | Symbol 110 MovieClip Frame 1 | Symbol 104 MovieClip |
"RobotnikHead" | Symbol 110 MovieClip Frame 1 | Symbol 107 MovieClip |
"SonicHead" | Symbol 110 MovieClip Frame 1 | Symbol 109 MovieClip |
"Levelname" | Symbol 118 MovieClip Frame 1 | Symbol 116 MovieClip |
"Levelname" | Symbol 118 MovieClip Frame 9 | Symbol 116 MovieClip |
"Levelname" | Symbol 118 MovieClip Frame 16 | Symbol 116 MovieClip |
"Levelname" | Symbol 118 MovieClip Frame 22 | Symbol 116 MovieClip |
"Levelname" | Symbol 118 MovieClip Frame 27 | Symbol 116 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 31 bytes "..$1$rT$zVrFw1n5hC6LDlLq4zvcR.." |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "Music" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "BossMusic" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "ActPass" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "Timer" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 4 | Symbol 8 as "Son_Ball" |
ExportAssets (56) | Timeline Frame 4 | Symbol 5 as "Timer" |
ExportAssets (56) | Timeline Frame 5 | Symbol 5 as "Timer" |
ExportAssets (56) | Timeline Frame 6 | Symbol 5 as "Timer" |
ExportAssets (56) | Timeline Frame 7 | Symbol 5 as "Timer" |
Labels
"Title" | Frame 4 |
"Game" | Frame 5 |
"GameLose" | Frame 6 |
"GameWin" | Frame 7 |
Dynamic Text Variables
_root.loading | Symbol 37 EditableText | "000" |
_root.currenttime | Symbol 81 EditableText | "00" |
_root.ScoreTotalB | Symbol 100 EditableText | "" |
_root.Life | Symbol 102 EditableText | "" |
_root.ScoreTotalB | Symbol 120 EditableText | "" |
_root.ScoreTotal | Symbol 124 EditableText | "" |
|