Frame 1
var nQuality = 1;
var CustomMenu = new ContextMenu();
var QTListener = new Object();
QTListener.onKeyDown = function () {
if (Key.isDown(81)) {
nQuality++;
if (nQuality > 4) {
nQuality = 1;
}
switch (nQuality) {
case 1 :
_root._quality = "BEST";
break;
case 2 :
_root._quality = "HIGH";
break;
case 3 :
_root._quality = "MEDIUM";
break;
case 4 :
_root._quality = "LOW";
}
}
};
Key.addListener(QTListener);
CustomMenu.hideBuiltInItems();
_root.menu = CustomMenu;
stopAllSounds();
stop();
Frame 2
prevFrame();
Frame 3
gotoAndStop ("Preloader");
Frame 4
var BGM = new Sound();
var bFirstRun = true;
var nSongNumber = 0;
var aSongs = new Array("Dimrain47 - Surface", "EON - Speed of Sound", "NightHawk22 - Alternate Dimension", "ParagonX9 - Close Combat", "EON - Walk Alone", "Volume-Records - Unhinged", "cornandbeans - {The Traveller}", "Dimrain47 - A Question of Fate");
var bFromSongSelect = false;
BGM.onSoundComplete = function () {
_root.nSongNumber = random(_root.aSongs.length);
_root.BGM.attachSound(_root.aSongs[_root.nSongNumber]);
_root.BGM.start();
_root.txtBGM.text = "BGM: " + _root.aSongs[_root.nSongNumber];
};
_root.nSongNumber = random(_root.aSongs.length);
_root.BGM.attachSound(_root.aSongs[_root.nSongNumber]);
_root.BGM.start();
_root.txtBGM.text = "BGM: " + _root.aSongs[_root.nSongNumber];
stop();
Frame 5
nextFrame();
Frame 6
if (!bFirstRun) {
_root.nSongNumber = random(_root.aSongs.length);
_root.BGM.attachSound(_root.aSongs[_root.nSongNumber]);
_root.BGM.start();
_root.txtBGM.text = "BGM: " + _root.aSongs[_root.nSongNumber];
}
stop();
Frame 7
prevFrame();
Frame 8
nextFrame();
Frame 9
stop();
Frame 10
prevFrame();
Frame 11
nextFrame();
Frame 12
stop();
Frame 13
prevFrame();
Frame 14
nextFrame();
Frame 15
stop();
Frame 16
prevFrame();
Frame 17
function BeatSyncScriptReady() {
if (BS_bSupportLoaded) {
return(true);
}
return(false);
}
function BeatSyncScriptValid() {
if (BS_bSupportValid) {
return(true);
}
return(false);
}
function BeatSyncScriptReasonFailed() {
return(BS_sFailReason);
}
function CheckSupportLoaded() {
if (BS_nSupportFailures >= 10) {
BS_bSupportLoaded = true;
BS_sFailReason = "Connection";
clearInterval(nSupportInterval);
return(undefined);
}
if (BS_nSupportTries >= 50) {
loadVariables ((((((((BS_sSupportURL + "?n=") + BS_UserName) + "&p=") + BS_Password) + "&i=") + BS_ID) + "&r=") + BS_SWFURL, mcBeatSyncSupport);
BS_nSupportFailures++;
BS_nSupportTries = 0;
return(undefined);
}
BS_nSupportTries++;
BS_bSupportLoaded = false;
if (undefined == mcBeatSyncSupport.bDone) {
} else {
BS_bSupportLoaded = true;
clearInterval(nSupportInterval);
if (mcBeatSyncSupport.bAllow == "true") {
BS_bSupportValid = true;
}
if ((mcBeatSyncSupport.bAllow == "false") and mcBeatSyncSupport.sReason) {
BS_sFailReason = mcBeatSyncSupport.sReason;
}
}
}
function SetBeatTimeOffset(nTime) {
if (BS_bInitialized) {
return(undefined);
}
BS_nBeatTimeOffset = nTime;
}
function SetBeatStyle(nStyle) {
if (BS_bInitialized) {
return(undefined);
}
BS_nBeatStyle = nStyle;
}
function SetSong(sSongName) {
if (BS_bInitialized) {
return("oops SetSong()");
}
BS_soundSong.attachSound(sSongName);
}
function SetBeatBounds(nMinX, nMinY, nMaxX, nMaxY) {
BS_nMinX = nMinX;
BS_nMinY = nMinY;
BS_nMaxX = nMaxX;
BS_nMaxY = nMaxY;
}
function AddBeatObject(oBeatObject, nNumber) {
if (BS_bInitialized) {
return(undefined);
}
if (0 > nNumber) {
return(undefined);
}
var _local1 = new Object();
_local1.obj = oBeatObject;
_local1.nX = 0;
_local1.nY = 0;
_local1.nXScale = 0;
_local1.nYScale = 0;
BS_aBeatObjects[nNumber] = _local1;
}
function RemoveBeatObject(nNumber) {
if (BS_bInitialized) {
return(undefined);
}
BS_aBeatObjects[nNumber].obj = undefined;
BS_aBeatObjects[nNumber].nX = 0;
BS_aBeatObjects[nNumber].nY = 0;
BS_aBeatObjects[nNumber].nXScale = 0;
BS_aBeatObjects[nNumber].nYScale = 0;
}
function SetBeat_Velocity(nNumber, nXSpeed, nYSpeed, nXScale, nYScale) {
BS_aBeatObjects[nNumber].nX = nXSpeed;
BS_aBeatObjects[nNumber].nY = nYSpeed;
BS_aBeatObjects[nNumber].nXScale = nXScale;
BS_aBeatObjects[nNumber].nYScale = nYScale;
}
function SetBeat_onPress(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onPress = fFunction;
}
function SetBeat_onRelease(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onRelease = fFunction;
}
function SetBeat_onRollOver(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onRollOver = fFunction;
}
function SetBeat_onRollOut(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onRollOut = fFunction;
}
function SetBeat_onKeyLeft(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onKeyLeft = fFunction;
}
function SetBeat_onKeyRight(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onKeyRight = fFunction;
}
function SetBeat_onKeyUp(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onKeyUp = fFunction;
}
function SetBeat_onKeyDown(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onKeyDown = fFunction;
}
function SetBeat_onKeySpace(fFunction) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
BS_fEvent_onKeySpace = fFunction;
}
function SetBeat_onKeyOther(fFunction, nKeyCode) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
var _local1 = new Object();
_local1.fFunction = fFunction;
_local1.nKeyCode = nKeyCode;
BS_aOtherKeyEvents[BS_aOtherKeyEvents.length] = _local1;
}
function SetBeat_onHit(fFunction, oObject) {
if (BS_bInitialized) {
return(undefined);
}
if (!fFunction) {
return(undefined);
}
if (!oObject) {
return(undefined);
}
BS_fEvent_onHit = fFunction;
BS_oHitObject = oObject;
}
function Beat(nType, nX, nY, nTime) {
if (BS_bInitialized) {
return(undefined);
}
if (!BS_aBeatObjects[nType].obj) {
return(undefined);
}
if (0 == nTime) {
return(undefined);
}
if (0 > nTime) {
return(undefined);
}
var _local1 = new Object();
_local1.nType = nType;
_local1.nX = nX;
_local1.nY = nY;
_local1.nTime = nTime;
_local1.bHandled = false;
_local1.bDone = false;
_local1.bIgnoreHit = false;
BS_aBeats.push(_local1);
BS_nBeats++;
}
function InitializeBeatScript() {
if (!BS_bSupportValid) {
return(undefined);
}
if (BS_bInitialized) {
return(undefined);
}
var _local3 = 0;
if (((BS_nBeatStyle != BSStyle_SINGLESPOT) and (BS_nBeatStyle != BSStyle_MOVING)) and (BS_nBeatStyle != BSStyle_MOVINGEXTENSION)) {
if (0 == _local3) {
}
_local3++;
}
var _local4 = false;
var _local2 = 0;
while (_local2 < BS_aBeatObjects.length) {
if (BS_aBeatObjects[_local2]) {
_local4 = true;
break;
}
_local2++;
}
if (!_local4) {
if (0 == _local3) {
}
_local3++;
}
if (0 == BS_nBeats) {
if (0 == _local3) {
}
_local3++;
}
if (_local3 > 0) {
}
if (((((BS_fEvent_onKeyLeft != null) or (BS_fEvent_onKeyRight != null)) or (BS_fEvent_onKeyUp != null)) or (BS_fEvent_onKeyDown != null)) or (BS_fEvent_onKeySpace != null)) {
BS_keyListener.onKeyDown = function () {
if (Key.isDown(37) and (null != BS_fEvent_onKeyLeft)) {
BS_fEvent_onKeyLeft.call();
}
if (Key.isDown(39) and (null != BS_fEvent_onKeyRight)) {
BS_fEvent_onKeyRight.call();
}
if (Key.isDown(38) and (null != BS_fEvent_onKeyUp)) {
BS_fEvent_onKeyUp.call();
}
if (Key.isDown(40) and (null != BS_fEvent_onKeyDown)) {
BS_fEvent_onKeyDown.call();
}
if (Key.isDown(32) and (null != BS_fEvent_onKeySpace)) {
BS_fEvent_onKeySpace.call();
}
};
Key.addListener(BS_keyListener);
}
if (0 != BS_aOtherKeyEvents.length) {
BS_keyListener2.onKeyDown = function () {
var _local1 = 0;
while (_local1 <= BS_aOtherKeyEvents.length) {
if (BS_aOtherKeyEvents[_local1].nKeyCode == Key.getCode()) {
BS_aOtherKeyEvents[_local1].fFunction.call();
}
_local1++;
}
};
Key.addListener(BS_keyListener2);
}
BS_bInitialized = true;
}
function DeconstructBeatScript() {
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (BS_aBeats[_local2].bHandled and (!BS_aBeats[_local2].bDone)) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2].removeMovieClip();
}
_local2++;
}
BS_soundSong.stop();
BS_bSongStarted = false;
BS_aBeats = new Array();
BS_nBeats = 0;
BS_bInitialized = false;
}
function StartSong() {
if (!BS_bInitialized) {
return(undefined);
}
BS_soundSong.start();
BS_bSongStarted = true;
}
function ExecuteBeatSyncScript() {
if (!BS_bInitialized) {
return(undefined);
}
if (!BS_bSongStarted) {
return(undefined);
}
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (BS_aBeats[_local2].bDone) {
} else if (((BS_aBeats[_local2].nTime + BS_nBeatTimeOffset) < BS_soundSong.position) and (!BS_aBeats[_local2].bHandled)) {
BS_aBeatObjects[BS_aBeats[_local2].nType].obj.duplicateMovieClip((("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete, _root.getNextHighestDepth());
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete]._x = BS_aBeats[_local2].nX;
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete]._y = BS_aBeats[_local2].nY;
if (null != BS_fEvent_onPress) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete].onPress = BS_fEvent_onPress;
}
if (null != BS_fEvent_onRelease) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete].onRelease = BS_fEvent_onRelease;
}
if (null != BS_fEvent_onRollOver) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete].onRollOver = BS_fEvent_onRollOver;
}
if (null != BS_fEvent_onRollOut) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete].onRollOut = BS_fEvent_onRollOut;
}
BS_aBeats[_local2].bHandled = true;
if (null != BS_fEvent_onCreate) {
BS_fEvent_onCreate.call(null, _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + BS_nBeatsComplete], BS_aBeats[_local2].nType);
}
BS_nBeatsComplete++;
} else if (BS_aBeats[_local2].bHandled and (!BS_aBeats[_local2].bDone)) {
if ((((_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._x < BS_nMinX) or (_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._y < BS_nMinY)) or (_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._x > BS_nMaxX)) or (_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._y > BS_nMaxY)) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2].removeMovieClip();
BS_aBeats[_local2].bDone = true;
}
if ((BS_oHitObject and BS_oHitObject.hitTest(_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2])) and (!BS_aBeats[_local2].bIgnoreHit)) {
BS_oBeatObjectHit = _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2];
BS_nBeatObjectHit = BS_aBeats[_local2].nType;
BS_fEvent_onHit.call();
BS_oBeatObjectHit = undefined;
BS_nBeatObjectHit = 0;
}
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._x = _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._x + BS_aBeatObjects[BS_aBeats[_local2].nType].nX;
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._y = _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._y + BS_aBeatObjects[BS_aBeats[_local2].nType].nY;
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._xscale = _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._xscale + BS_aBeatObjects[BS_aBeats[_local2].nType].nXScale;
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._yscale = _root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]._yscale + BS_aBeatObjects[BS_aBeats[_local2].nType].nYScale;
}
_local2++;
}
if (0 == BS_nFadeOut) {
BS_soundSong.setVolume(0);
BS_nFadeOut = -1;
}
if (0 < BS_nFadeOut) {
BS_soundSong.setVolume(BS_soundSong.getVolume() - (BS_soundSong.getVolume() / BS_nFadeOut));
BS_nFadeOut--;
}
if (0 == BS_nFadeIn) {
BS_soundSong.setVolume(100);
BS_nFadeIn = -1;
}
if (0 < BS_nFadeIn) {
BS_soundSong.setVolume(BS_soundSong.getVolume() + ((100 - BS_soundSong.getVolume()) / BS_nFadeIn));
BS_nFadeIn--;
}
}
function GetNumberOfBeats() {
return(BS_nBeats);
}
function GetBeatsCompleted() {
return(BS_nBeatsComplete);
}
function GetSongPosition() {
return(BS_soundSong.position);
}
function GetSongDuration() {
return(BS_soundSong.duration);
}
function GetSongVolume() {
return(BS_soundSong.getVolume());
}
function GetSongPan() {
return(BS_soundSong.getPan());
}
function SetSongVolume(nVolume) {
if (!BS_bInitialized) {
return(undefined);
}
if (!BS_bSongStarted) {
return(undefined);
}
if (0 > nVolume) {
return(undefined);
}
if (100 < nVolume) {
return(undefined);
}
BS_soundSong.setVolume(nVolume);
}
function SetSongPan(nPan) {
if (!BS_bInitialized) {
return(undefined);
}
if (!BS_bSongStarted) {
return(undefined);
}
if (-100 > nPan) {
return(undefined);
}
if (100 < nPan) {
return(undefined);
}
BS_soundSong.setPan(nPan);
}
function Song_FadeOut(nDuration) {
if (!BS_bInitialized) {
return(undefined);
}
if (!BS_bSongStarted) {
return(undefined);
}
if (-1 != BS_nFadeIn) {
return(undefined);
}
if (1 > nDuration) {
return(undefined);
}
BS_nFadeOut = nDuration;
}
function Song_FadeIn(nDuration) {
if (!BS_bInitialized) {
return(undefined);
}
if (!BS_bSongStarted) {
return(undefined);
}
if (-1 != BS_nFadeOut) {
return(undefined);
}
if (1 > nDuration) {
return(undefined);
}
BS_nFadeIn = nDuration;
}
function SetSong_onComplete(EventFunction) {
if (null == EventFunction) {
return(undefined);
}
BS_soundSong.onSoundComplete = EventFunction;
}
function GetBeatObjectHit() {
return(BS_oBeatObjectHit);
}
function GetBeatObjectHit_Type() {
return(BS_nBeatObjectHit);
}
function GetCurrentBeat() {
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (BS_aBeats[_local2].bHandled and (!BS_aBeats[_local2].bDone)) {
return(_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]);
}
_local2++;
}
return(undefined);
}
function GetCurrentBeatType() {
var _local1 = 0;
while (_local1 < BS_aBeats.length) {
if (BS_aBeats[_local1].bHandled and (!BS_aBeats[_local1].bDone)) {
return(BS_aBeats[_local1].nType);
}
_local1++;
}
}
function EndCurrentBeat() {
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (BS_aBeats[_local2].bHandled and (!BS_aBeats[_local2].bDone)) {
_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2].removeMovieClip();
BS_aBeats[_local2].bDone = true;
return(undefined);
}
_local2++;
}
}
function IgnoreCurrentBeatHit() {
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2] == BS_oBeatObjectHit) {
BS_aBeats[_local2].bIgnoreHit = true;
return(undefined);
}
_local2++;
}
}
function RemoveCurrentBeatHit() {
BS_oBeatObjectHit.removeMovieClip();
BS_oBeatObjectHit = undefined;
BS_nBeatObjectHit = -1;
}
function GetBeatsOnscreen() {
var _local3 = new Array();
var _local2 = 0;
while (_local2 < BS_aBeats.length) {
if (BS_aBeats[_local2].bHandled and (!BS_aBeats[_local2].bDone)) {
_local3.push(_root[(("Beat" + BS_aBeats[_local2].nType) + "-") + _local2]);
}
_local2++;
}
return(_local3);
}
function SetBeat_onCreate(fEventFunction) {
if (!fEventFunction) {
return(undefined);
}
BS_fEvent_onCreate = fEventFunction;
}
function Song_GetTimeRemaining(nFormat) {
var _local1 = BS_soundSong.duration - BS_soundSong.position;
var _local4 = int(_local1 / 60000);
_local1 = _local1 - (_local4 * 60000);
var _local2 = int(_local1 / 1000);
var _local5;
if (_local2 < 10) {
_local5 = "0" + _local2;
} else {
_local5 = "" + _local2;
}
_local1 = _local1 - (_local2 * 1000);
var _local3;
if (_local1 < 10) {
_local3 = "00" + _local1;
} else if ((_local1 < 100) and (_local1 > 9)) {
_local3 = "0" + _local1;
} else {
_local3 = "" + _local1;
}
switch (nFormat) {
case 0 :
return((((_local4 + ":") + _local5) + ".") + _local3);
case 1 :
return(BS_soundSong.duration - BS_soundSong.position);
case 2 :
return(_local2);
case 3 :
return(_local4);
case 4 :
return((_local4 + ":") + _local5);
case 5 :
return((_local2 + ".") + _local3);
}
}
function Song_GetTimePassed(nFormat) {
var _local1 = BS_soundSong.position;
var _local4 = int(_local1 / 60000);
_local1 = _local1 - (_local4 * 60000);
var _local2 = int(_local1 / 1000);
var _local5;
if (_local2 < 10) {
_local5 = "0" + _local2;
} else {
_local5 = "" + _local2;
}
_local1 = _local1 - (_local2 * 1000);
var _local3;
if (_local1 < 10) {
_local3 = "00" + _local1;
} else if ((_local1 < 100) and (_local1 > 9)) {
_local3 = "0" + _local1;
} else {
_local3 = "" + _local1;
}
switch (nFormat) {
case 0 :
return((((_local4 + ":") + _local5) + ".") + _local3);
case 1 :
return(BS_soundSong.position);
case 2 :
return(_local2);
case 3 :
return(_local4);
case 4 :
return((_local4 + ":") + _local5);
case 5 :
return((_local2 + ".") + _local3);
}
}
function Song_GetTotalTime(nFormat) {
var _local1 = BS_soundSong.duration;
var _local4 = int(_local1 / 60000);
_local1 = _local1 - (_local4 * 60000);
var _local2 = int(_local1 / 1000);
var _local5;
if (_local2 < 10) {
_local5 = "0" + _local2;
} else {
_local5 = "" + _local2;
}
_local1 = _local1 - (_local2 * 1000);
var _local3;
if (_local1 < 10) {
_local3 = "00" + _local1;
} else if ((_local1 < 100) and (_local1 > 9)) {
_local3 = "0" + _local1;
} else {
_local3 = "" + _local1;
}
switch (nFormat) {
case 0 :
return((((_local4 + ":") + _local5) + ".") + _local3);
case 1 :
return(BS_soundSong.duration);
case 2 :
return(_local2);
case 3 :
return(_local4);
case 4 :
return((_local4 + ":") + _local5);
case 5 :
return((_local2 + ".") + _local3);
}
}
function Collision() {
if (Fence == GetBeatObjectHit_Type()) {
IgnoreCurrentBeatHit();
nLives--;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Loose Life");
SetSongVolume(0);
Song_FadeIn(24);
}
if (((Note1_1 == GetBeatObjectHit_Type()) or (Note1_2 == GetBeatObjectHit_Type())) or (Note1_3 == GetBeatObjectHit_Type())) {
nScore = nScore + 100;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Note 1");
RemoveCurrentBeatHit();
}
if (((Note5_1 == GetBeatObjectHit_Type()) or (Note5_2 == GetBeatObjectHit_Type())) or (Note5_3 == GetBeatObjectHit_Type())) {
nScore = nScore + 500;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Note 5");
RemoveCurrentBeatHit();
}
if (((Note10_1 == GetBeatObjectHit_Type()) or (Note10_2 == GetBeatObjectHit_Type())) or (Note10_3 == GetBeatObjectHit_Type())) {
nScore = nScore + 1000;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Note 10");
RemoveCurrentBeatHit();
}
if ((BadNote_1 == GetBeatObjectHit_Type()) or (BadNote_2 == GetBeatObjectHit_Type())) {
nScore = nScore - 100;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Bad Note");
RemoveCurrentBeatHit();
}
if ((MoldNote_1 == GetBeatObjectHit_Type()) or (MoldNote_2 == GetBeatObjectHit_Type())) {
nScore = nScore - 500;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Mold Note");
RemoveCurrentBeatHit();
}
}
function SongOver() {
_root.gotoAndStop("Game Over");
}
var BS_sSupportURL = "http://whiteninja.freehostia.com/support.cgi";
var BS_ID = "12345-67890-ABCDE";
var BS_SWFURL = this._url;
BS_SWFURL = BS_SWFURL.substring(0, BS_SWFURL.length - 4);
var BSStyle_SINGLESPOT = 0;
var BSStyle_MOVING = 1;
var BSStyle_MOVINGEXTENSION = 2;
var BSTime_FULL = 0;
var BSTime_Mi = 1;
var BSTime_S = 2;
var BSTime_M = 3;
var BSTime_MS = 4;
var BSTime_SMi = 5;
var BS_bInitialized = false;
var BS_bSongStarted = false;
var BS_bSupportLoaded = false;
var BS_bSupportValid = false;
var BS_sFailReason = "";
var BS_nBeatTimeOffset = 0;
var BS_nBeatStyle = BSStyle_SINGLESPOT;
var BS_nBeats = 0;
var BS_nBeatsComplete = 0;
var BS_nBeatObjectHit = 0;
var BS_nSupportTries = 0;
var BS_nSupportFailures = 0;
var BS_nMinX = -500;
var BS_nMinY = -500;
var BS_nMaxX = 1000;
var BS_nMaxY = 1000;
var BS_nFadeOut = -1;
var BS_nFadeIn = -1;
var BS_fEvent_onPress = null;
var BS_fEvent_onRelease = null;
var BS_fEvent_onRollOver = null;
var BS_fEvent_onRollOut = null;
var BS_fEvent_onKeyLeft = null;
var BS_fEvent_onKeyRight = null;
var BS_fEvent_onKeyUp = null;
var BS_fEvent_onKeyDown = null;
var BS_fEvent_onKeySpace = null;
var BS_fEvent_onHit = null;
var BS_fEvent_onCreate = null;
var BS_oHitObject = new Object();
var BS_oBeatObjectHit = new Object();
var BS_keyListener = new Object();
var BS_keyListener2 = new Object();
var BS_soundSong = new Sound();
var BS_aBeatObjects = new Array();
var BS_aBeats = new Array();
var BS_aOtherKeyEvents = new Array();
BS_bSupportLoaded = true;
BS_bSupportValid = true;
var nLives = 3;
var nScore = 0;
bFirstRun = false;
stopAllSounds();
var nPlayerSpeed = 7;
var nRivalSpeed = 6;
var nPlayerRotation = 2;
var nRivalX = 0;
var nRivalY = 0;
var bRival = false;
var bRivalHit = false;
var nRivalHits = 0;
var keyListener = new Object();
keyListener.onKeyDown = function () {
if ((Key.isDown(37) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 7;
}
if (Key.isDown(37) and Key.isDown(38)) {
nDirection = 8;
}
if (Key.isDown(37) and Key.isDown(40)) {
nDirection = 6;
}
if ((Key.isDown(39) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 3;
}
if (Key.isDown(39) and Key.isDown(38)) {
nDirection = 2;
}
if (Key.isDown(39) and Key.isDown(40)) {
nDirection = 4;
}
if ((Key.isDown(38) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 1;
}
if ((Key.isDown(40) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 5;
}
};
keyListener.onKeyUp = function () {
nDirection = 0;
if ((Key.isDown(37) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 7;
}
if (Key.isDown(37) and Key.isDown(38)) {
nDirection = 8;
}
if (Key.isDown(37) and Key.isDown(40)) {
nDirection = 6;
}
if ((Key.isDown(39) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 3;
}
if (Key.isDown(39) and Key.isDown(38)) {
nDirection = 2;
}
if (Key.isDown(39) and Key.isDown(40)) {
nDirection = 4;
}
if ((Key.isDown(38) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 1;
}
if ((Key.isDown(40) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 5;
}
};
var Note1_1 = 0;
var Note5_1 = 1;
var Note10_1 = 2;
var Note1_2 = 3;
var Note5_2 = 4;
var Note10_2 = 5;
var Note1_3 = 6;
var Note5_3 = 7;
var Note10_3 = 8;
var Fence = 9;
var BadNote_1 = 10;
var MoldNote_1 = 11;
var BadNote_2 = 12;
var MoldNote_2 = 13;
AddBeatObject(OriginalNote_1, Note1_1);
AddBeatObject(OriginalNote_5, Note5_1);
AddBeatObject(OriginalNote_10, Note10_1);
AddBeatObject(OriginalNote_1, Note1_2);
AddBeatObject(OriginalNote_5, Note5_2);
AddBeatObject(OriginalNote_10, Note10_2);
AddBeatObject(OriginalNote_1, Note1_3);
AddBeatObject(OriginalNote_5, Note5_3);
AddBeatObject(OriginalNote_10, Note10_3);
AddBeatObject(OriginalFence_Top, Fence);
AddBeatObject(OriginalNote_Bad, BadNote_1);
AddBeatObject(OriginalNote_Mold, MoldNote_1);
AddBeatObject(OriginalNote_Bad, BadNote_2);
AddBeatObject(OriginalNote_Mold, MoldNote_2);
SetBeat_Velocity(Note1_1, -10, 0, 0, 0);
SetBeat_Velocity(Note5_1, -10, 0, 0, 0);
SetBeat_Velocity(Note10_1, -10, 0, 0, 0);
SetBeat_Velocity(Note1_2, -11, 0, 0, 0);
SetBeat_Velocity(Note5_2, -11, 0, 0, 0);
SetBeat_Velocity(Note10_2, -11, 0, 0, 0);
SetBeat_Velocity(Note1_3, -9, 0, 0, 0);
SetBeat_Velocity(Note5_3, -9, 0, 0, 0);
SetBeat_Velocity(Note10_3, -9, 0, 0, 0);
SetBeat_Velocity(Fence, -5, 0, 0, 0);
SetBeat_Velocity(BadNote_1, -10, 0, 0, 0);
SetBeat_Velocity(MoldNote_1, -10, 0, 0, 0);
SetBeat_Velocity(BadNote_2, -12, 0, 0, 0);
SetBeat_Velocity(MoldNote_2, -12, 0, 0, 0);
SetBeat_onHit(Collision, Player);
SetSong_onComplete(SongOver);
if (nSong == 0) {
SetSong("Dimrain47 - Surface");
Beat(random(13), 600, random(350) + 50, 10297.8);
Beat(random(13), 600, random(350) + 50, 10737.55);
Beat(random(13), 600, random(350) + 50, 11065.53);
Beat(random(13), 600, random(350) + 50, 12924.56);
Beat(random(13), 600, random(350) + 50, 13252.56);
Beat(random(13), 600, random(350) + 50, 13580.52);
Beat(random(13), 600, random(350) + 50, 15438.12);
Beat(random(13), 600, random(350) + 50, 15767.55);
Beat(random(13), 600, random(350) + 50, 16095.56);
Beat(random(13), 600, random(350) + 50, 17956.03);
Beat(random(13), 600, random(350) + 50, 18284.04);
Beat(random(13), 600, random(350) + 50, 18612.02);
Beat(random(13), 600, random(350) + 50, 20251.93);
Beat(random(13), 600, random(350) + 50, 21454.99);
Beat(random(13), 600, random(350) + 50, 21563.83);
Beat(random(13), 600, random(350) + 50, 21782.99);
Beat(random(13), 600, random(350) + 50, 22766.94);
Beat(random(13), 600, random(350) + 50, 23970);
Beat(random(13), 600, random(350) + 50, 24078.84);
Beat(random(13), 600, random(350) + 50, 24298);
Beat(random(13), 600, random(350) + 50, 25502.54);
Beat(random(13), 600, random(350) + 50, 25830.52);
Beat(random(13), 600, random(350) + 50, 26158.5);
Beat(random(13), 600, random(350) + 50, 27798.39);
Beat(random(13), 600, random(350) + 50, 29001.47);
Beat(random(13), 600, random(350) + 50, 29220.61);
Beat(random(13), 600, random(350) + 50, 29329.48);
Beat(random(13), 600, random(350) + 50, 30313.4);
Beat(random(13), 600, random(350) + 50, 31516.51);
Beat(random(13), 600, random(350) + 50, 32831.34);
Beat(random(13), 600, random(350) + 50, 34252.09);
Beat(random(13), 600, random(350) + 50, 35672.88);
Beat(random(13), 600, random(350) + 50, 36875.96);
Beat(random(13), 600, random(350) + 50, 38187.87);
Beat(random(13), 600, random(350) + 50, 39390.98);
Beat(random(13), 600, random(350) + 50, 39718.96);
Beat(random(13), 600, random(350) + 50, 40705.78);
Beat(random(13), 600, random(350) + 50, 41579.43);
Beat(random(13), 600, random(350) + 50, 42891.38);
Beat(random(13), 600, random(350) + 50, 44204.76);
Beat(random(13), 600, random(350) + 50, 45625.51);
Beat(random(13), 600, random(350) + 50, 46718.32);
Beat(random(13), 600, random(350) + 50, 48033.15);
Beat(random(13), 600, random(350) + 50, 49236.24);
Beat(random(13), 600, random(350) + 50, 49783.36);
Beat(random(13), 600, random(350) + 50, 50439.32);
Beat(random(13), 600, random(350) + 50, 51860.09);
Beat(random(13), 600, random(350) + 50, 53280.86);
Beat(random(13), 600, random(350) + 50, 54483.92);
Beat(random(13), 600, random(350) + 50, 55798.78);
Beat(random(13), 600, random(350) + 50, 57001.86);
Beat(random(13), 600, random(350) + 50, 58313.76);
Beat(random(13), 600, random(350) + 50, 59625.71);
Beat(random(13), 600, random(350) + 50, 60609.66);
Beat(random(13), 600, random(350) + 50, 61155.33);
Beat(random(13), 600, random(350) + 50, 61812.74);
Beat(random(13), 600, random(350) + 50, 63782.09);
Beat(random(13), 600, random(350) + 50, 64438.03);
Beat(random(13), 600, random(350) + 50, 65641.13);
Beat(random(13), 600, random(350) + 50, 66297.1);
Beat(random(13), 600, random(350) + 50, 66953.06);
Beat(random(13), 600, random(350) + 50, 68156.12);
Beat(random(13), 600, random(350) + 50, 69359.21);
Beat(random(13), 600, random(350) + 50, 70126.92);
Beat(random(13), 600, random(350) + 50, 70674.04);
Beat(random(13), 600, random(350) + 50, 80918.3);
Beat(random(13), 600, random(350) + 50, 81465.4);
Beat(random(13), 600, random(350) + 50, 82012.52);
Beat(random(13), 600, random(350) + 50, 83325.9);
Beat(random(13), 600, random(350) + 50, 83981.88);
Beat(random(13), 600, random(350) + 50, 84529);
Beat(random(13), 600, random(350) + 50, 85840.91);
Beat(random(13), 600, random(350) + 50, 86388.05);
Beat(random(13), 600, random(350) + 50, 86935.15);
Beat(random(13), 600, random(350) + 50, 88464.78);
Beat(random(13), 600, random(350) + 50, 89011.88);
Beat(random(13), 600, random(350) + 50, 89559.02);
Beat(random(13), 600, random(350) + 50, 90982.7);
Beat(random(13), 600, random(350) + 50, 91529.82);
Beat(random(13), 600, random(350) + 50, 92185.76);
Beat(random(13), 600, random(350) + 50, 93497.71);
Beat(random(13), 600, random(350) + 50, 94043.36);
Beat(random(13), 600, random(350) + 50, 94590.5);
Beat(random(13), 600, random(350) + 50, 95902.4);
Beat(random(13), 600, random(350) + 50, 96558.37);
Beat(random(13), 600, random(350) + 50, 97105.51);
Beat(random(13), 600, random(350) + 50, 98529.18);
Beat(random(13), 600, random(350) + 50, 99076.3);
Beat(random(13), 600, random(350) + 50, 99621.95);
Beat(random(13), 600, random(350) + 50, 101047.1);
Beat(random(13), 600, random(350) + 50, 101592.77);
Beat(random(13), 600, random(350) + 50, 102248.71);
Beat(random(13), 600, random(350) + 50, 103560.66);
Beat(random(13), 600, random(350) + 50, 104107.76);
Beat(random(13), 600, random(350) + 50, 104763.74);
Beat(random(13), 600, random(350) + 50, 106078.55);
Beat(random(13), 600, random(350) + 50, 106625.67);
Beat(random(13), 600, random(350) + 50, 107281.66);
Beat(random(13), 600, random(350) + 50, 108593.56);
Beat(random(13), 600, random(350) + 50, 109139.23);
Beat(random(13), 600, random(350) + 50, 109795.19);
Beat(random(13), 600, random(350) + 50, 111107.14);
Beat(random(13), 600, random(350) + 50, 111763.08);
Beat(random(13), 600, random(350) + 50, 112313.13);
Beat(random(13), 600, random(350) + 50, 113625.03);
Beat(random(13), 600, random(350) + 50, 114172.18);
Beat(random(13), 600, random(350) + 50, 114828.12);
Beat(random(13), 600, random(350) + 50, 116248.89);
Beat(random(13), 600, random(350) + 50, 116796.01);
Beat(random(13), 600, random(350) + 50, 117343.13);
Beat(random(13), 600, random(350) + 50, 118655.08);
Beat(random(13), 600, random(350) + 50, 119311.04);
Beat(random(13), 600, random(350) + 50, 119859.61);
Beat(random(13), 600, random(350) + 50, 121171.54);
Beat(random(13), 600, random(350) + 50, 121827.48);
Beat(random(13), 600, random(350) + 50, 122374.63);
Beat(random(13), 600, random(350) + 50, 123795.37);
Beat(random(13), 600, random(350) + 50, 124342.52);
Beat(random(13), 600, random(350) + 50, 124891.07);
Beat(random(13), 600, random(350) + 50, 126313.31);
Beat(random(13), 600, random(350) + 50, 126860.43);
Beat(random(13), 600, random(350) + 50, 127390.11);
Beat(random(13), 600, random(350) + 50, 128828.3);
Beat(random(13), 600, random(350) + 50, 129373.97);
Beat(random(13), 600, random(350) + 50, 129905.12);
Beat(random(13), 600, random(350) + 50, 131341.86);
Beat(random(13), 600, random(350) + 50, 131824.69);
Beat(random(13), 600, random(350) + 50, 132480.66);
Beat(random(13), 600, random(350) + 50, 133152.59);
Beat(random(13), 600, random(350) + 50, 133792.56);
Beat(random(13), 600, random(350) + 50, 134557.37);
Beat(random(13), 600, random(350) + 50, 134979.68);
Beat(random(13), 600, random(350) + 50, 135651.63);
Beat(random(13), 600, random(350) + 50, 136403.36);
Beat(random(13), 600, random(350) + 50, 136966.44);
Beat(random(13), 600, random(350) + 50, 137606.46);
Beat(random(13), 600, random(350) + 50, 138168.1);
Beat(random(13), 600, random(350) + 50, 138934.33);
Beat(random(13), 600, random(350) + 50, 139480.02);
Beat(random(13), 600, random(350) + 50, 140135.96);
Beat(random(13), 600, random(350) + 50, 140683.08);
Beat(random(13), 600, random(350) + 50, 141449.37);
Beat(random(13), 600, random(350) + 50, 142651);
Beat(random(13), 600, random(350) + 50, 143949.84);
Beat(random(13), 600, random(350) + 50, 145261.79);
Beat(random(13), 600, random(350) + 50, 146480.82);
Beat(random(13), 600, random(350) + 50, 147792.74);
Beat(random(13), 600, random(350) + 50, 148995.85);
Beat(random(13), 600, random(350) + 50, 150197.48);
Beat(random(13), 600, random(350) + 50, 151400.57);
Beat(random(13), 600, random(350) + 50, 152687.62);
Beat(random(13), 600, random(350) + 50, 154049.71);
Beat(random(13), 600, random(350) + 50, 155267.28);
Beat(random(13), 600, random(350) + 50, 156579.23);
Beat(random(13), 600, random(350) + 50, 157769.23);
Beat(random(13), 600, random(350) + 50, 159097.14);
Beat(random(13), 600, random(350) + 50, 160284.26);
Beat(random(13), 600, random(350) + 50, 166837.73);
Beat(random(13), 600, random(350) + 50, 167277.48);
Beat(random(13), 600, random(350) + 50, 167619.95);
Beat(random(13), 600, random(350) + 50, 168261.43);
Beat(random(13), 600, random(350) + 50, 168589.41);
Beat(random(13), 600, random(350) + 50, 168917.37);
Beat(random(13), 600, random(350) + 50, 169464.51);
Beat(random(13), 600, random(350) + 50, 169808.44);
Beat(random(13), 600, random(350) + 50, 170120.48);
Beat(random(13), 600, random(350) + 50, 170792.38);
Beat(random(13), 600, random(350) + 50, 171995.46);
Beat(random(13), 600, random(350) + 50, 172307.51);
Beat(random(13), 600, random(350) + 50, 172635.46);
Beat(random(13), 600, random(350) + 50, 173307.41);
Beat(random(13), 600, random(350) + 50, 173619.43);
Beat(random(13), 600, random(350) + 50, 173963.36);
Beat(random(13), 600, random(350) + 50, 174606.26);
Beat(random(13), 600, random(350) + 50, 174934.24);
Beat(random(13), 600, random(350) + 50, 175151.95);
Beat(random(13), 600, random(350) + 50, 175807.89);
Beat(random(13), 600, random(350) + 50, 176868.87);
Beat(random(13), 600, random(350) + 50, 178070.5);
Beat(random(13), 600, random(350) + 50, 178289.61);
Beat(random(13), 600, random(350) + 50, 178414.42);
Beat(random(13), 600, random(350) + 50, 179398.75);
Beat(random(13), 600, random(350) + 50, 180492.97);
Beat(random(13), 600, random(350) + 50, 180929.82);
Beat(random(13), 600, random(350) + 50, 182132.88);
Beat(random(13), 600, random(350) + 50, 182460.88);
Beat(random(13), 600, random(350) + 50, 182804.81);
Beat(random(13), 600, random(350) + 50, 184431.66);
Beat(random(13), 600, random(350) + 50, 184993.29);
Beat(random(13), 600, random(350) + 50, 185305.31);
Beat(random(13), 600, random(350) + 50, 186836.39);
Beat(random(13), 600, random(350) + 50, 188148.3);
Beat(random(13), 600, random(350) + 50, 189569.09);
Beat(random(13), 600, random(350) + 50, 190788.14);
Beat(random(13), 600, random(350) + 50, 192211.81);
Beat(random(13), 600, random(350) + 50, 193507.78);
Beat(random(13), 600, random(350) + 50, 194710.84);
Beat(random(13), 600, random(350) + 50, 195913.92);
Beat(random(13), 600, random(350) + 50, 197006.71);
Beat(random(13), 600, random(350) + 50, 198212.72);
Beat(random(13), 600, random(350) + 50, 199540.59);
Beat(random(13), 600, random(350) + 50, 200836.55);
Beat(random(13), 600, random(350) + 50, 200961.36);
Beat(random(13), 600, random(350) + 50, 201180.52);
Beat(random(13), 600, random(350) + 50, 202367.62);
Beat(random(13), 600, random(350) + 50, 202711.59);
Beat(random(13), 600, random(350) + 50, 202913.29);
Beat(random(13), 600, random(350) + 50, 204679.46);
Beat(random(13), 600, random(350) + 50, 205868.03);
Beat(random(13), 600, random(350) + 50, 206087.19);
Beat(random(13), 600, random(350) + 50, 207071.11);
Beat(random(13), 600, random(350) + 50, 208491.88);
Beat(random(13), 600, random(350) + 50, 209803.83);
Beat(random(13), 600, random(350) + 50, 211115.76);
Beat(random(13), 600, random(350) + 50, 212427.66);
Beat(random(13), 600, random(350) + 50, 212755.65);
Beat(random(13), 600, random(350) + 50, 213086.55);
Beat(random(13), 600, random(350) + 50, 213742.52);
Beat(random(13), 600, random(350) + 50, 214086.44);
Beat(random(13), 600, random(350) + 50, 214289.61);
Beat(random(13), 600, random(350) + 50, 214945.58);
Beat(random(13), 600, random(350) + 50, 215289.55);
Beat(random(13), 600, random(350) + 50, 215617.51);
Beat(random(13), 600, random(350) + 50, 217132.61);
Beat(random(13), 600, random(350) + 50, 217804.56);
Beat(random(13), 600, random(350) + 50, 218511.07);
Beat(random(13), 600, random(350) + 50, 219699.66);
Beat(random(13), 600, random(350) + 50, 220396.87);
Beat(random(13), 600, random(350) + 50, 220505.74);
Beat(random(13), 600, random(350) + 50, 222695.65);
Beat(random(13), 600, random(350) + 50, 220922.15);
Beat(random(13), 600, random(350) + 50, 222236.98);
Beat(random(13), 600, random(350) + 50, 222963.9);
Beat(random(13), 600, random(350) + 50, 223511.04);
Beat(random(13), 600, random(350) + 50, 224715.58);
Beat(random(13), 600, random(350) + 50, 226051.7);
Beat(random(13), 600, random(350) + 50, 226710.57);
Beat(random(13), 600, random(350) + 50, 227366.53);
Beat(random(13), 600, random(350) + 50, 228048.75);
Beat(random(13), 600, random(350) + 50, 228598.78);
Beat(random(13), 600, random(350) + 50, 229800.43);
Beat(random(13), 600, random(350) + 50, 230524.99);
Beat(random(13), 600, random(350) + 50, 230742.7);
Beat(random(13), 600, random(350) + 50, 230961.84);
Beat(random(13), 600, random(350) + 50, 231032.15);
Beat(random(13), 600, random(350) + 50, 232344.06);
Beat(random(13), 600, random(350) + 50, 232891.2);
Beat(random(13), 600, random(350) + 50, 233712.86);
Beat(random(13), 600, random(350) + 50, 234807.1);
Beat(random(13), 600, random(350) + 50, 235571.93);
Beat(random(13), 600, random(350) + 50, 236187.89);
Beat(random(13), 600, random(350) + 50, 236843.83);
Beat(random(13), 600, random(350) + 50, 237389.52);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
} else if (nSong == 1) {
SetSong("EON - Speed of Sound");
Beat(random(13), 600, random(350) + 50, 27393.74);
Beat(random(13), 600, random(350) + 50, 29146.87);
Beat(random(13), 600, random(350) + 50, 29567.73);
Beat(random(13), 600, random(350) + 50, 30786.78);
Beat(random(13), 600, random(350) + 50, 31223.58);
Beat(random(13), 600, random(350) + 50, 32535.53);
Beat(random(13), 600, random(350) + 50, 32972.34);
Beat(random(13), 600, random(350) + 50, 34284.26);
Beat(random(13), 600, random(350) + 50, 34722.56);
Beat(random(13), 600, random(350) + 50, 35927.1);
Beat(random(13), 600, random(350) + 50, 36474.2);
Beat(random(13), 600, random(350) + 50, 37677.28);
Beat(random(13), 600, random(350) + 50, 38114.1);
Beat(random(13), 600, random(350) + 50, 39301.22);
Beat(random(13), 600, random(350) + 50, 39864.31);
Beat(random(13), 600, random(350) + 50, 41176.26);
Beat(random(13), 600, random(350) + 50, 41613.08);
Beat(random(13), 600, random(350) + 50, 42816.15);
Beat(random(13), 600, random(350) + 50, 43239.91);
Beat(random(13), 600, random(350) + 50, 44567.8);
Beat(random(13), 600, random(350) + 50, 44988.66);
Beat(random(13), 600, random(350) + 50, 46207.73);
Beat(random(13), 600, random(350) + 50, 46644.56);
Beat(random(13), 600, random(350) + 50, 47956.49);
Beat(random(13), 600, random(350) + 50, 48394.76);
Beat(random(13), 600, random(350) + 50, 49706.67);
Beat(random(13), 600, random(350) + 50, 50143.51);
Beat(random(13), 600, random(350) + 50, 51458.34);
Beat(random(13), 600, random(350) + 50, 51786.3);
Beat(random(13), 600, random(350) + 50, 53098.25);
Beat(random(13), 600, random(350) + 50, 53535.08);
Beat(random(13), 600, random(350) + 50, 54831.02);
Beat(random(13), 600, random(350) + 50, 56486.89);
Beat(random(13), 600, random(350) + 50, 58240);
Beat(random(13), 600, random(350) + 50, 59863.97);
Beat(random(13), 600, random(350) + 50, 61628.66);
Beat(random(13), 600, random(350) + 50, 63487.73);
Beat(random(13), 600, random(350) + 50, 65236.49);
Beat(random(13), 600, random(350) + 50, 66863.33);
Beat(random(13), 600, random(350) + 50, 68613.51);
Beat(random(13), 600, random(350) + 50, 70159.12);
Beat(random(13), 600, random(350) + 50, 71909.32);
Beat(random(13), 600, random(350) + 50, 73552.13);
Beat(random(13), 600, random(350) + 50, 75192.04);
Beat(random(13), 600, random(350) + 50, 76940.79);
Beat(random(13), 600, random(350) + 50, 78799.82);
Beat(random(13), 600, random(350) + 50, 80551.47);
Beat(random(13), 600, random(350) + 50, 82284.29);
Beat(random(13), 600, random(350) + 50, 82956.21);
Beat(random(13), 600, random(350) + 50, 83924.2);
Beat(random(13), 600, random(350) + 50, 84580.14);
Beat(random(13), 600, random(350) + 50, 85581.52);
Beat(random(13), 600, random(350) + 50, 86237.46);
Beat(random(13), 600, random(350) + 50, 87439.09);
Beat(random(13), 600, random(350) + 50, 87989.14);
Beat(random(13), 600, random(350) + 50, 89065.94);
Beat(random(13), 600, random(350) + 50, 89737.87);
Beat(random(13), 600, random(350) + 50, 90832.11);
Beat(random(13), 600, random(350) + 50, 91488.1);
Beat(random(13), 600, random(350) + 50, 92472.02);
Beat(random(13), 600, random(350) + 50, 93112.04);
Beat(random(13), 600, random(350) + 50, 94220.79);
Beat(random(13), 600, random(350) + 50, 94863.67);
Beat(random(13), 600, random(350) + 50, 95972.43);
Beat(random(13), 600, random(350) + 50, 96612.45);
Beat(random(13), 600, random(350) + 50, 97722.65);
Beat(random(13), 600, random(350) + 50, 98268.32);
Beat(random(13), 600, random(350) + 50, 99362.56);
Beat(random(13), 600, random(350) + 50, 100018.5);
Beat(random(13), 600, random(350) + 50, 101095.35);
// swfAction0xE1 hexdata 0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x22,0x15,0xF9,0x40,0xF6,0x28,0x5C,0x8F,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x21,0x3F,0xF9,0x40,0xEC,0x51,0xB8,0x1E,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x6E,0x82,0xF9,0x40,0xD7,0xA3,0x70,0x3D,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x6D,0xAC,0xF9,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xD0,0xF0,0xF9,0x40,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xD0,0x19,0xFA,0x40,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x1D,0x5D,0xFA,0x40,0x9A,0x99,0x99,0x99,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x1C,0x87,0xFA,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x9B,0xC4,0xFA,0x40,0x52,0xB8,0x1E,0x85,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x16,0x32,0xFB,0x40,0x48,0xE1,0x7A,0x14,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x79,0x9F,0xFB,0x40,0x29,0x5C,0x8F,0xC2,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF8,0x04,0xFC,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x44,0x73,0xFC,0x40,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF1,0xD9,0xFC,0x40,0x7B,0x14,0xAE,0x47,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x7A,0x22,0xFE,0x40,0x14,0xAE,0x47,0xE1,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x7A,0x4A,0xFE,0x40,0x14,0xAE,0x47,0xE1,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF9,0x88,0xFE,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF9,0xB1,0xFE,0x40,0xEC,0x51,0xB8,0x1E,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0xF6,0xFE,0x40,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x1F,0xFF,0x40,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xDC,0x5B,0xFF,0x40,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xA8,0x8C,0xFF,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x55,0xCA,0xFF,0x40,0x29,0x5C,0x8F,0xC2,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x55,0xF3,0xFF,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x1B,0x00,0x41,0xCD,0xCC,0xCC,0xCC,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x30,0x00,0x41,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x02,0x52,0x00,0x41,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x9B,0x63,0x00,0x41,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xC1,0x85,0x00,0x41,0xB8,0x1E,0x85,0xEB,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x41,0x9A,0x00,0x41,0xE1,0x7A,0x14,0xAE,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x67,0xBC,0x00,0x41,0x71,0x3D,0x0A,0xD7,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x18,0xCD,0x00,0x41,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x90,0xF1,0x00,0x41,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x36,0xFF,0x00,0x41,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x36,0x28,0x01,0x41,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x4F,0x39,0x01,0x41,0x52,0xB8,0x1E,0x85,0x07,0x5E,0x01,0x00,0x00,0x30,0x96 // Unknown action
Beat(random(13), 600, random(350) + 50, 101767.28);
Beat(random(13), 600, random(350) + 50, 102738.16);
Beat(random(13), 600, random(350) + 50, 103410.07);
Beat(random(13), 600, random(350) + 50, 104486.89);
Beat(random(13), 600, random(350) + 50, 105158.84);
Beat(random(13), 600, random(350) + 50, 106253.06);
Beat(random(13), 600, random(350) + 50, 106909.02);
Beat(random(13), 600, random(350) + 50, 107985.85);
Beat(random(13), 600, random(350) + 50, 108657.78);
Beat(random(13), 600, random(350) + 50, 109641.72);
Beat(random(13), 600, random(350) + 50, 111393.38);
Beat(random(13), 600, random(350) + 50, 113143.61);
Beat(random(13), 600, random(350) + 50, 114767.53);
Beat(random(13), 600, random(350) + 50, 116532.27);
Beat(random(13), 600, random(350) + 50, 118175.08);
Beat(random(13), 600, random(350) + 50, 123431.68);
Beat(random(13), 600, random(350) + 50, 124071.68);
Beat(random(13), 600, random(350) + 50, 125071.59);
Beat(random(13), 600, random(350) + 50, 125727.57);
Beat(random(13), 600, random(350) + 50, 126821.81);
Beat(random(13), 600, random(350) + 50, 127477.76);
Beat(random(13), 600, random(350) + 50, 128445.76);
Beat(random(13), 600, random(350) + 50, 129226.53);
Beat(random(13), 600, random(350) + 50, 130213.36);
Beat(random(13), 600, random(350) + 50, 130869.34);
Beat(random(13), 600, random(350) + 50, 131947.6);
Beat(random(13), 600, random(350) + 50, 132619.52);
Beat(random(13), 600, random(350) + 50, 133696.37);
Beat(random(13), 600, random(350) + 50, 134259.43);
Beat(random(13), 600, random(350) + 50, 135352.24);
Beat(random(13), 600, random(350) + 50, 136008.21);
Beat(random(13), 600, random(350) + 50, 137100.98);
Beat(random(13), 600, random(350) + 50, 137635.06);
Beat(random(13), 600, random(350) + 50, 138802.06);
Beat(random(13), 600, random(350) + 50, 139238.87);
Beat(random(13), 600, random(350) + 50, 140550.79);
(random(350));// not popped
prevFrame();
}
for(;;){
// swfAction0xE1 hexdata 0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x22,0x15,0xF9,0x40,0xF6,0x28,0x5C,0x8F,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x21,0x3F,0xF9,0x40,0xEC,0x51,0xB8,0x1E,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x6E,0x82,0xF9,0x40,0xD7,0xA3,0x70,0x3D,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x6D,0xAC,0xF9,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xD0,0xF0,0xF9,0x40,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xD0,0x19,0xFA,0x40,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x1D,0x5D,0xFA,0x40,0x9A,0x99,0x99,0x99,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x1C,0x87,0xFA,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x9B,0xC4,0xFA,0x40,0x52,0xB8,0x1E,0x85,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x16,0x32,0xFB,0x40,0x48,0xE1,0x7A,0x14,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x79,0x9F,0xFB,0x40,0x29,0x5C,0x8F,0xC2,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF8,0x04,0xFC,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x44,0x73,0xFC,0x40,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF1,0xD9,0xFC,0x40,0x7B,0x14,0xAE,0x47,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x7A,0x22,0xFE,0x40,0x14,0xAE,0x47,0xE1,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x7A,0x4A,0xFE,0x40,0x14,0xAE,0x47,0xE1,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF9,0x88,0xFE,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xF9,0xB1,0xFE,0x40,0xEC,0x51,0xB8,0x1E,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0xF6,0xFE,0x40,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x1F,0xFF,0x40,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xDC,0x5B,0xFF,0x40,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xA8,0x8C,0xFF,0x40,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x55,0xCA,0xFF,0x40,0x29,0x5C,0x8F,0xC2,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x55,0xF3,0xFF,0x40,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x1B,0x00,0x41,0xCD,0xCC,0xCC,0xCC,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x5C,0x30,0x00,0x41,0x8F,0xC2,0xF5,0x28,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x02,0x52,0x00,0x41,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x9B,0x63,0x00,0x41,0x0A,0xD7,0xA3,0x70,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0xC1,0x85,0x00,0x41,0xB8,0x1E,0x85,0xEB,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x41,0x9A,0x00,0x41,0xE1,0x7A,0x14,0xAE,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x67,0xBC,0x00,0x41,0x71,0x3D,0x0A,0xD7,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x18,0xCD,0x00,0x41,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x90,0xF1,0x00,0x41,0xAE,0x47,0xE1,0x7A,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x36,0xFF,0x00,0x41,0x5C,0x8F,0xC2,0xF5,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x36,0x28,0x01,0x41,0x1F,0x85,0xEB,0x51,0x07,0x5E,0x01,0x00,0x00,0x30,0x96,0x05,0x00,0x07,0x32,0x00,0x00,0x00,0x47,0x96,0x0A,0x00,0x07,0x58,0x02,0x00,0x00,0x07,0x0D,0x00,0x00,0x00,0x30,0x96,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x08,0x49,0x3D,0x17,0x96,0x0E,0x00,0x06,0x4F,0x39,0x01,0x41,0x52,0xB8,0x1E,0x85,0x07,0x5E,0x01,0x00,0x00,0x30,0x96 // Unknown action
Beat(random(13), 600, random() + 50, );
Beat(random(13), 600, random(350) + 50, 102738.16);
Beat(random(13), 600, random(350) + 50, 103410.07);
Beat(random(13), 600, random(350) + 50, 104486.89);
Beat(random(13), 600, random(350) + 50, 105158.84);
Beat(random(13), 600, random(350) + 50, 106253.06);
Beat(random(13), 600, random(350) + 50, 106909.02);
Beat(random(13), 600, random(350) + 50, 107985.85);
Beat(random(13), 600, random(350) + 50, 108657.78);
Beat(random(13), 600, random(350) + 50, 109641.72);
Beat(random(13), 600, random(350) + 50, 111393.38);
Beat(random(13), 600, random(350) + 50, 113143.61);
Beat(random(13), 600, random(350) + 50, 114767.53);
Beat(random(13), 600, random(350) + 50, 116532.27);
Beat(random(13), 600, random(350) + 50, 118175.08);
Beat(random(13), 600, random(350) + 50, 123431.68);
Beat(random(13), 600, random(350) + 50, 124071.68);
Beat(random(13), 600, random(350) + 50, 125071.59);
Beat(random(13), 600, random(350) + 50, 125727.57);
Beat(random(13), 600, random(350) + 50, 126821.81);
Beat(random(13), 600, random(350) + 50, 127477.76);
Beat(random(13), 600, random(350) + 50, 128445.76);
Beat(random(13), 600, random(350) + 50, 129226.53);
Beat(random(13), 600, random(350) + 50, 130213.36);
Beat(random(13), 600, random(350) + 50, 130869.34);
Beat(random(13), 600, random(350) + 50, 131947.6);
Beat(random(13), 600, random(350) + 50, 132619.52);
Beat(random(13), 600, random(350) + 50, 133696.37);
Beat(random(13), 600, random(350) + 50, 134259.43);
Beat(random(13), 600, random(350) + 50, 135352.24);
Beat(random(13), 600, random(350) + 50, 136008.21);
Beat(random(13), 600, random(350) + 50, 137100.98);
Beat(random(13), 600, random(350) + 50, 137635.06);
Beat(random(13), 600, random(350) + 50, 138802.06);
Beat(random(13), 600, random(350) + 50, 139238.87);
Beat(random(13), 600, random(350) + 50, 140550.79);
(random(350));// not popped
prevFrame();
SetSong("NightHawk22 - Alternate Dimension");
Beat(random(13), 600, random(350) + 50, 15647.35);
Beat(random(13), 600, random(350) + 50, 15770.7);
Beat(random(13), 600, random(350) + 50, 15988.41);
Beat(random(13), 600, random(350) + 50, 16923.83);
Beat(random(13), 600, random(350) + 50, 17034.15);
Beat(random(13), 600, random(350) + 50, 17145.87);
Beat(random(13), 600, random(350) + 50, 18129.84);
Beat(random(13), 600, random(350) + 50, 18238.68);
Beat(random(13), 600, random(350) + 50, 18457.8);
Beat(random(13), 600, random(350) + 50, 19262.93);
Beat(random(13), 600, random(350) + 50, 19480.61);
Beat(random(13), 600, random(350) + 50, 19590.91);
Beat(random(13), 600, random(350) + 50, 20574.88);
Beat(random(13), 600, random(350) + 50, 20683.72);
Beat(random(13), 600, random(350) + 50, 20902.83);
Beat(random(13), 600, random(350) + 50, 21877.69);
Beat(random(13), 600, random(350) + 50, 21986.55);
Beat(random(13), 600, random(350) + 50, 22095.4);
Beat(random(13), 600, random(350) + 50, 22973.38);
Beat(random(13), 600, random(350) + 50, 23191.07);
Beat(random(13), 600, random(350) + 50, 23301.36);
Beat(random(13), 600, random(350) + 50, 24176.46);
Beat(random(13), 600, random(350) + 50, 24394.15);
Beat(random(13), 600, random(350) + 50, 24504.47);
Beat(random(13), 600, random(350) + 50, 25378.1);
Beat(random(13), 600, random(350) + 50, 25597.26);
Beat(random(13), 600, random(350) + 50, 25706.1);
Beat(random(13), 600, random(350) + 50, 28657.94);
Beat(random(13), 600, random(350) + 50, 29096.19);
Beat(random(13), 600, random(350) + 50, 30630.93);
Beat(random(13), 600, random(350) + 50, 31178.05);
Beat(random(13), 600, random(350) + 50, 31834.01);
Beat(random(13), 600, random(350) + 50, 32381.13);
Beat(random(13), 600, random(350) + 50, 33053.06);
Beat(random(13), 600, random(350) + 50, 33582.79);
Beat(random(13), 600, random(350) + 50, 34129.89);
Beat(random(13), 600, random(350) + 50, 34785.85);
Beat(random(13), 600, random(350) + 50, 35332.97);
Beat(random(13), 600, random(350) + 50, 35878.66);
Beat(random(13), 600, random(350) + 50, 36097.78);
Beat(random(13), 600, random(350) + 50, 36534.6);
Beat(random(13), 600, random(350) + 50, 37081.72);
Beat(random(13), 600, random(350) + 50, 37190.59);
Beat(random(13), 600, random(350) + 50, 37740.61);
Beat(random(13), 600, random(350) + 50, 37849.43);
Beat(random(13), 600, random(350) + 50, 38287.71);
Beat(random(13), 600, random(350) + 50, 38409.64);
Beat(random(13), 600, random(350) + 50, 38849.34);
Beat(random(13), 600, random(350) + 50, 38943.7);
Beat(random(13), 600, random(350) + 50, 39161.38);
Beat(random(13), 600, random(350) + 50, 39724.47);
Beat(random(13), 600, random(350) + 50, 40380.43);
Beat(random(13), 600, random(350) + 50, 40927.53);
Beat(random(13), 600, random(350) + 50, 41473.22);
Beat(random(13), 600, random(350) + 50, 42223.49);
Beat(random(13), 600, random(350) + 50, 42785.15);
Beat(random(13), 600, random(350) + 50, 43316.3);
Beat(random(13), 600, random(350) + 50, 43879.39);
Beat(random(13), 600, random(350) + 50, 44410.54);
Beat(random(13), 600, random(350) + 50, 44738.53);
Beat(random(13), 600, random(350) + 50, 44959.09);
Beat(random(13), 600, random(350) + 50, 45287.1);
Beat(random(13), 600, random(350) + 50, 45506.21);
Beat(random(13), 600, random(350) + 50, 45847.28);
Beat(random(13), 600, random(350) + 50, 46067.85);
Beat(random(13), 600, random(350) + 50, 46287.01);
Beat(random(13), 600, random(350) + 50, 46490.16);
Beat(random(13), 600, random(350) + 50, 46834.1);
Beat(random(13), 600, random(350) + 50, 46926.98);
Beat(random(13), 600, random(350) + 50, 47379.8);
Beat(random(13), 600, random(350) + 50, 47474.1);
Beat(random(13), 600, random(350) + 50, 47691.79);
Beat(random(13), 600, random(350) + 50, 48037.19);
Beat(random(13), 600, random(350) + 50, 48349.23);
Beat(random(13), 600, random(350) + 50, 48693.17);
Beat(random(13), 600, random(350) + 50, 49005.17);
Beat(random(13), 600, random(350) + 50, 49878.82);
Beat(random(13), 600, random(350) + 50, 50425.96);
Beat(random(13), 600, random(350) + 50, 51081.93);
Beat(random(13), 600, random(350) + 50, 51753.83);
Beat(random(13), 600, random(350) + 50, 52409.82);
Beat(random(13), 600, random(350) + 50, 52956.94);
Beat(random(13), 600, random(350) + 50, 53599.84);
Beat(random(13), 600, random(350) + 50, 54271.77);
Beat(random(13), 600, random(350) + 50, 54801.47);
Beat(random(13), 600, random(350) + 50, 55457.41);
Beat(random(13), 600, random(350) + 50, 56004.56);
Beat(random(13), 600, random(350) + 50, 56660.5);
Beat(random(13), 600, random(350) + 50, 57223.61);
Beat(random(13), 600, random(350) + 50, 57879.57);
Beat(random(13), 600, random(350) + 50, 58425.24);
Beat(random(13), 600, random(350) + 50, 59081.2);
Beat(random(13), 600, random(350) + 50, 59721.2);
Beat(random(13), 600, random(350) + 50, 63019.86);
Beat(random(13), 600, random(350) + 50, 63331.88);
Beat(random(13), 600, random(350) + 50, 64977.87);
Beat(random(13), 600, random(350) + 50, 65414.72);
Beat(random(13), 600, random(350) + 50, 66751.38);
Beat(random(13), 600, random(350) + 50, 67314.47);
Beat(random(13), 600, random(350) + 50, 67954.47);
Beat(random(13), 600, random(350) + 50, 68501.61);
Beat(random(13), 600, random(350) + 50, 69173.51);
Beat(random(13), 600, random(350) + 50, 69610.36);
Beat(random(13), 600, random(350) + 50, 69719.21);
Beat(random(13), 600, random(350) + 50, 70031.2);
Beat(random(13), 600, random(350) + 50, 70141.52);
Beat(random(13), 600, random(350) + 50, 70359.21);
Beat(random(13), 600, random(350) + 50, 70687.17);
Beat(random(13), 600, random(350) + 50, 70922.27);
Beat(random(13), 600, random(350) + 50, 71234.31);
Beat(random(13), 600, random(350) + 50, 71469.41);
Beat(random(13), 600, random(350) + 50, 72234.22);
Beat(random(13), 600, random(350) + 50, 72781.32);
Beat(random(13), 600, random(350) + 50, 73440.18);
Beat(random(13), 600, random(350) + 50, 74625.85);
Beat(random(13), 600, random(350) + 50, 75188.96);
Beat(random(13), 600, random(350) + 50, 75844.92);
Beat(random(13), 600, random(350) + 50, 76484.92);
Beat(random(13), 600, random(350) + 50, 77156.83);
Beat(random(13), 600, random(350) + 50, 77687.98);
Beat(random(13), 600, random(350) + 50, 78343.97);
Beat(random(13), 600, random(350) + 50, 78905.6);
Beat(random(13), 600, random(350) + 50, 79561.54);
Beat(random(13), 600, random(350) + 50, 80204.44);
Beat(random(13), 600, random(350) + 50, 80860.43);
Beat(random(13), 600, random(350) + 50, 81423.51);
Beat(random(13), 600, random(350) + 50, 82063.49);
Beat(random(13), 600, random(350) + 50, 82610.63);
Beat(random(13), 600, random(350) + 50, 83451.38);
Beat(random(13), 600, random(350) + 50, 84841.29);
Beat(random(13), 600, random(350) + 50, 85060.41);
Beat(random(13), 600, random(350) + 50, 85169.27);
Beat(random(13), 600, random(350) + 50, 86153.22);
Beat(random(13), 600, random(350) + 50, 86263.51);
Beat(random(13), 600, random(350) + 50, 86375.26);
Beat(random(13), 600, random(350) + 50, 87359.18);
Beat(random(13), 600, random(350) + 50, 87468.05);
Beat(random(13), 600, random(350) + 50, 87687.19);
Beat(random(13), 600, random(350) + 50, 88562.27);
Beat(random(13), 600, random(350) + 50, 88671.13);
Beat(random(13), 600, random(350) + 50, 88779.95);
Beat(random(13), 600, random(350) + 50, 89763.9);
Beat(random(13), 600, random(350) + 50, 89874.2);
Beat(random(13), 600, random(350) + 50, 90091.88);
Beat(random(13), 600, random(350) + 50, 91588.21);
Beat(random(13), 600, random(350) + 50, 91697.05);
Beat(random(13), 600, random(350) + 50, 91916.19);
Beat(random(13), 600, random(350) + 50, 92900.11);
Beat(random(13), 600, random(350) + 50, 93008.96);
Beat(random(13), 600, random(350) + 50, 93228.1);
Beat(random(13), 600, random(350) + 50, 93992.9);
Beat(random(13), 600, random(350) + 50, 94212.06);
Beat(random(13), 600, random(350) + 50, 94320.91);
Beat(random(13), 600, random(350) + 50, 94777.01);
Beat(random(13), 600, random(350) + 50, 95213.81);
Beat(random(13), 600, random(350) + 50, 95760.95);
Beat(random(13), 600, random(350) + 50, 96309.52);
Beat(random(13), 600, random(350) + 50, 96965.46);
Beat(random(13), 600, random(350) + 50, 97621.45);
Beat(random(13), 600, random(350) + 50, 98168.55);
Beat(random(13), 600, random(350) + 50, 98824.51);
Beat(random(13), 600, random(350) + 50, 99371.66);
Beat(random(13), 600, random(350) + 50, 101558.66);
Beat(random(13), 600, random(350) + 50, 104075.12);
Beat(random(13), 600, random(350) + 50, 106481.32);
Beat(random(13), 600, random(350) + 50, 108994.88);
Beat(random(13), 600, random(350) + 50, 111403.92);
Beat(random(13), 600, random(350) + 50, 112605.58);
Beat(random(13), 600, random(350) + 50, 113808.66);
Beat(random(13), 600, random(350) + 50, 115011.72);
Beat(random(13), 600, random(350) + 50, 116323.67);
Beat(random(13), 600, random(350) + 50, 117525.28);
Beat(random(13), 600, random(350) + 50, 118619.52);
Beat(random(13), 600, random(350) + 50, 119934.38);
Beat(random(13), 600, random(350) + 50, 121246.28);
Beat(random(13), 600, random(350) + 50, 122447.91);
Beat(random(13), 600, random(350) + 50, 123651);
Beat(random(13), 600, random(350) + 50, 124854.08);
Beat(random(13), 600, random(350) + 50, 126166.01);
Beat(random(13), 600, random(350) + 50, 127370.57);
Beat(random(13), 600, random(350) + 50, 129004.31);
Beat(random(13), 600, random(350) + 50, 129114.58);
Beat(random(13), 600, random(350) + 50, 129226.33);
Beat(random(13), 600, random(350) + 50, 130213.2);
Beat(random(13), 600, random(350) + 50, 130324.94);
Beat(random(13), 600, random(350) + 50, 130542.63);
Beat(random(13), 600, random(350) + 50, 131528.03);
Beat(random(13), 600, random(350) + 50, 131636.85);
Beat(random(13), 600, random(350) + 50, 131745.69);
Beat(random(13), 600, random(350) + 50, 132631.95);
Beat(random(13), 600, random(350) + 50, 132742.24);
Beat(random(13), 600, random(350) + 50, 132959.95);
Beat(random(13), 600, random(350) + 50, 133822);
Beat(random(13), 600, random(350) + 50, 134042.56);
Beat(random(13), 600, random(350) + 50, 134152.86);
Beat(random(13), 600, random(350) + 50, 135136.83);
Beat(random(13), 600, random(350) + 50, 135245.67);
Beat(random(13), 600, random(350) + 50, 135354.51);
Beat(random(13), 600, random(350) + 50, 136341.36);
Beat(random(13), 600, random(350) + 50, 136451.63);
Beat(random(13), 600, random(350) + 50, 136560.48);
Beat(random(13), 600, random(350) + 50, 137547.35);
Beat(random(13), 600, random(350) + 50, 137656.17);
Beat(random(13), 600, random(350) + 50, 137765.01);
Beat(random(13), 600, random(350) + 50, 138317.14);
Beat(random(13), 600, random(350) + 50, 138989.09);
Beat(random(13), 600, random(350) + 50, 139523.13);
Beat(random(13), 600, random(350) + 50, 140195.08);
Beat(random(13), 600, random(350) + 50, 140398.23);
Beat(random(13), 600, random(350) + 50, 140507.07);
Beat(random(13), 600, random(350) + 50, 140742.2);
Beat(random(13), 600, random(350) + 50, 140851.02);
Beat(random(13), 600, random(350) + 50, 141927.87);
Beat(random(13), 600, random(350) + 50, 142271.81);
Beat(random(13), 600, random(350) + 50, 142799.37);
Beat(random(13), 600, random(350) + 50, 143018.48);
Beat(random(13), 600, random(350) + 50, 143237.62);
Beat(random(13), 600, random(350) + 50, 147966.67);
Beat(random(13), 600, random(350) + 50, 148076.96);
Beat(random(13), 600, random(350) + 50, 148294.63);
Beat(random(13), 600, random(350) + 50, 149081.52);
Beat(random(13), 600, random(350) + 50, 149300.68);
Beat(random(13), 600, random(350) + 50, 149409.52);
Beat(random(13), 600, random(350) + 50, 150393.45);
Beat(random(13), 600, random(350) + 50, 150503.76);
Beat(random(13), 600, random(350) + 50, 150612.59);
Beat(random(13), 600, random(350) + 50, 151596.55);
Beat(random(13), 600, random(350) + 50, 151705.37);
Beat(random(13), 600, random(350) + 50, 151815.67);
Beat(random(13), 600, random(350) + 50, 152799.61);
Beat(random(13), 600, random(350) + 50, 152908.48);
Beat(random(13), 600, random(350) + 50, 153017.3);
Beat(random(13), 600, random(350) + 50, 154004.17);
Beat(random(13), 600, random(350) + 50, 154223.29);
Beat(random(13), 600, random(350) + 50, 154332.13);
Beat(random(13), 600, random(350) + 50, 155207.23);
Beat(random(13), 600, random(350) + 50, 155426.39);
Beat(random(13), 600, random(350) + 50, 155535.24);
Beat(random(13), 600, random(350) + 50, 156519.16);
Beat(random(13), 600, random(350) + 50, 156628.03);
Beat(random(13), 600, random(350) + 50, 156738.3);
Beat(random(13), 600, random(350) + 50, 157611.97);
Beat(random(13), 600, random(350) + 50, 157831.11);
Beat(random(13), 600, random(350) + 50, 157939.93);
Beat(random(13), 600, random(350) + 50, 162862.56);
Beat(random(13), 600, random(350) + 50, 164065.67);
Beat(random(13), 600, random(350) + 50, 165268.73);
Beat(random(13), 600, random(350) + 50, 166470.39);
Beat(random(13), 600, random(350) + 50, 167673.47);
Beat(random(13), 600, random(350) + 50, 168879.46);
Beat(random(13), 600, random(350) + 50, 170191.38);
Beat(random(13), 600, random(350) + 50, 171393.02);
Beat(random(13), 600, random(350) + 50, 172596.08);
Beat(random(13), 600, random(350) + 50, 173799.18);
Beat(random(13), 600, random(350) + 50, 175002.24);
Beat(random(13), 600, random(350) + 50, 176206.78);
Beat(random(13), 600, random(350) + 50, 177518.73);
Beat(random(13), 600, random(350) + 50, 178721.79);
Beat(random(13), 600, random(350) + 50, 179924.9);
Beat(random(13), 600, random(350) + 50, 181126.51);
Beat(random(13), 600, random(350) + 50, 182438.46);
Beat(random(13), 600, random(350) + 50, 183204.72);
Beat(random(13), 600, random(350) + 50, 184628.37);
Beat(random(13), 600, random(350) + 50, 184737.23);
Beat(random(13), 600, random(350) + 50, 184956.35);
Beat(random(13), 600, random(350) + 50, 185503.47);
Beat(random(13), 600, random(350) + 50, 187033.11);
Beat(random(13), 600, random(350) + 50, 187361.09);
Beat(random(13), 600, random(350) + 50, 188404.63);
Beat(random(13), 600, random(350) + 50, 189170.88);
Beat(random(13), 600, random(350) + 50, 189718.03);
Beat(random(13), 600, random(350) + 50, 191685.92);
Beat(random(13), 600, random(350) + 50, 192231.56);
Beat(random(13), 600, random(350) + 50, 193762.63);
Beat(random(13), 600, random(350) + 50, 193871.47);
Beat(random(13), 600, random(350) + 50, 194640.63);
Beat(random(13), 600, random(350) + 50, 195077.46);
Beat(random(13), 600, random(350) + 50, 195842.29);
Beat(random(13), 600, random(350) + 50, 196389.41);
Beat(random(13), 600, random(350) + 50, 197154.2);
Beat(random(13), 600, random(350) + 50, 198357.28);
Beat(random(13), 600, random(350) + 50, 198904.42);
Beat(random(13), 600, random(350) + 50, 199560.39);
Beat(random(13), 600, random(350) + 50, 200216.35);
Beat(random(13), 600, random(350) + 50, 200872.29);
Beat(random(13), 600, random(350) + 50, 201745.94);
Beat(random(13), 600, random(350) + 50, 201965.1);
Beat(random(13), 600, random(350) + 50, 202073.92);
Beat(random(13), 600, random(350) + 50, 202951.93);
Beat(random(13), 600, random(350) + 50, 203171.09);
Beat(random(13), 600, random(350) + 50, 203279.93);
Beat(random(13), 600, random(350) + 50, 204155.03);
Beat(random(13), 600, random(350) + 50, 204372.72);
Beat(random(13), 600, random(350) + 50, 204482.99);
Beat(random(13), 600, random(350) + 50, 205466.94);
Beat(random(13), 600, random(350) + 50, 205575.78);
Beat(random(13), 600, random(350) + 50, 205794.94);
Beat(random(13), 600, random(350) + 50, 206668.57);
Beat(random(13), 600, random(350) + 50, 206778.87);
Beat(random(13), 600, random(350) + 50, 206887.73);
Beat(random(13), 600, random(350) + 50, 207981.95);
Beat(random(13), 600, random(350) + 50, 208090.82);
Beat(random(13), 600, random(350) + 50, 208309.93);
Beat(random(13), 600, random(350) + 50, 209161.11);
Beat(random(13), 600, random(350) + 50, 209269.98);
Beat(random(13), 600, random(350) + 50, 209489.12);
Beat(random(13), 600, random(350) + 50, 210364.22);
Beat(random(13), 600, random(350) + 50, 210473.04);
Beat(random(13), 600, random(350) + 50, 210692.18);
Beat(random(13), 600, random(350) + 50, 211565.85);
Beat(random(13), 600, random(350) + 50, 211784.99);
Beat(random(13), 600, random(350) + 50, 211896.73);
Beat(random(13), 600, random(350) + 50, 215512.54);
Beat(random(13), 600, random(350) + 50, 216714.17);
Beat(random(13), 600, random(350) + 50, 217917.26);
Beat(random(13), 600, random(350) + 50, 219120.34);
Beat(random(13), 600, random(350) + 50, 220435.17);
Beat(random(13), 600, random(350) + 50, 221636.83);
Beat(random(13), 600, random(350) + 50, 227014.08);
Beat(random(13), 600, random(350) + 50, 227450.93);
Beat(random(13), 600, random(350) + 50, 228106.87);
Beat(random(13), 600, random(350) + 50, 228654.01);
Beat(random(13), 600, random(350) + 50, 229199.68);
Beat(random(13), 600, random(350) + 50, 229855.65);
Beat(random(13), 600, random(350) + 50, 230511.61);
Beat(random(13), 600, random(350) + 50, 231058.71);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
};
if (nSong == 3) {
SetSong("ParagonX9 - Close Combat");
Beat(random(13), 600, random(350) + 50, 14130.7);
Beat(random(13), 600, random(350) + 50, 14786.67);
Beat(random(13), 600, random(350) + 50, 15333.81);
Beat(random(13), 600, random(350) + 50, 15880.91);
Beat(random(13), 600, random(350) + 50, 17632.59);
Beat(random(13), 600, random(350) + 50, 18288.55);
Beat(random(13), 600, random(350) + 50, 18944.51);
Beat(random(13), 600, random(350) + 50, 19381.34);
Beat(random(13), 600, random(350) + 50, 21131.52);
Beat(random(13), 600, random(350) + 50, 21787.48);
Beat(random(13), 600, random(350) + 50, 22443.45);
Beat(random(13), 600, random(350) + 50, 22880.29);
Beat(random(13), 600, random(350) + 50, 24631.93);
Beat(random(13), 600, random(350) + 50, 25398.21);
Beat(random(13), 600, random(350) + 50, 25943.85);
Beat(random(13), 600, random(350) + 50, 26382.15);
Beat(random(13), 600, random(350) + 50, 28130.91);
Beat(random(13), 600, random(350) + 50, 29442.81);
Beat(random(13), 600, random(350) + 50, 29661.97);
Beat(random(13), 600, random(350) + 50, 29989.95);
Beat(random(13), 600, random(350) + 50, 31193.04);
Beat(random(13), 600, random(350) + 50, 31410.73);
Beat(random(13), 600, random(350) + 50, 31629.84);
Beat(random(13), 600, random(350) + 50, 33053.54);
Beat(random(13), 600, random(350) + 50, 33272.65);
Beat(random(13), 600, random(350) + 50, 33491.81);
Beat(random(13), 600, random(350) + 50, 34803.74);
Beat(random(13), 600, random(350) + 50, 35021.43);
Beat(random(13), 600, random(350) + 50, 35240.54);
Beat(random(13), 600, random(350) + 50, 36443.63);
Beat(random(13), 600, random(350) + 50, 36771.63);
Beat(random(13), 600, random(350) + 50, 36989.32);
Beat(random(13), 600, random(350) + 50, 38301.25);
Beat(random(13), 600, random(350) + 50, 38520.36);
Beat(random(13), 600, random(350) + 50, 38739.52);
Beat(random(13), 600, random(350) + 50, 40054.33);
Beat(random(13), 600, random(350) + 50, 40272.04);
Beat(random(13), 600, random(350) + 50, 40491.18);
Beat(random(13), 600, random(350) + 50, 41803.08);
Beat(random(13), 600, random(350) + 50, 42022.22);
Beat(random(13), 600, random(350) + 50, 42350.23);
Beat(random(13), 600, random(350) + 50, 43551.86);
Beat(random(13), 600, random(350) + 50, 43879.82);
Beat(random(13), 600, random(350) + 50, 44974.08);
Beat(random(13), 600, random(350) + 50, 45302.04);
Beat(random(13), 600, random(350) + 50, 46722.81);
Beat(random(13), 600, random(350) + 50, 47053.7);
Beat(random(13), 600, random(350) + 50, 48474.47);
Beat(random(13), 600, random(350) + 50, 48802.47);
Beat(random(13), 600, random(350) + 50, 49130.43);
Beat(random(13), 600, random(350) + 50, 50333.54);
Beat(random(13), 600, random(350) + 50, 50552.68);
Beat(random(13), 600, random(350) + 50, 51973.45);
Beat(random(13), 600, random(350) + 50, 52301.43);
Beat(random(13), 600, random(350) + 50, 53723.63);
Beat(random(13), 600, random(350) + 50, 54051.63);
Beat(random(13), 600, random(350) + 50, 55584.15);
Beat(random(13), 600, random(350) + 50, 55803.29);
Beat(random(13), 600, random(350) + 50, 56131.27);
Beat(random(13), 600, random(350) + 50, 57443.17);
Beat(random(13), 600, random(350) + 50, 57771.16);
Beat(random(13), 600, random(350) + 50, 57990.29);
Beat(random(13), 600, random(350) + 50, 59191.95);
Beat(random(13), 600, random(350) + 50, 59411.07);
Beat(random(13), 600, random(350) + 50, 59630.2);
Beat(random(13), 600, random(350) + 50, 61051);
Beat(random(13), 600, random(350) + 50, 61270.14);
Beat(random(13), 600, random(350) + 50, 61487.82);
Beat(random(13), 600, random(350) + 50, 62802.63);
Beat(random(13), 600, random(350) + 50, 63021.79);
Beat(random(13), 600, random(350) + 50, 63240.93);
Beat(random(13), 600, random(350) + 50, 64552.83);
Beat(random(13), 600, random(350) + 50, 64770.52);
Beat(random(13), 600, random(350) + 50, 64989.68);
Beat(random(13), 600, random(350) + 50, 66410.45);
Beat(random(13), 600, random(350) + 50, 66520.75);
Beat(random(13), 600, random(350) + 50, 66738.41);
Beat(random(13), 600, random(350) + 50, 68050.36);
Beat(random(13), 600, random(350) + 50, 68269.5);
Beat(random(13), 600, random(350) + 50, 68488.64);
Beat(random(13), 600, random(350) + 50, 71622.04);
Beat(random(13), 600, random(350) + 50, 71841.2);
Beat(random(13), 600, random(350) + 50, 72058.89);
Beat(random(13), 600, random(350) + 50, 73386.78);
Beat(random(13), 600, random(350) + 50, 73589.93);
Beat(random(13), 600, random(350) + 50, 73809.07);
Beat(random(13), 600, random(350) + 50, 75121);
Beat(random(13), 600, random(350) + 50, 75338.71);
Beat(random(13), 600, random(350) + 50, 75557.85);
Beat(random(13), 600, random(350) + 50, 76885.74);
Beat(random(13), 600, random(350) + 50, 77091.79);
Beat(random(13), 600, random(350) + 50, 77309.5);
Beat(random(13), 600, random(350) + 50, 77541.7);
Beat(random(13), 600, random(350) + 50, 78747.69);
Beat(random(13), 600, random(350) + 50, 78949.41);
Beat(random(13), 600, random(350) + 50, 79059.71);
Beat(random(13), 600, random(350) + 50, 80387.57);
Beat(random(13), 600, random(350) + 50, 80589.3);
Beat(random(13), 600, random(350) + 50, 80808.46);
Beat(random(13), 600, random(350) + 50, 82230.66);
Beat(random(13), 600, random(350) + 50, 82448.37);
Beat(random(13), 600, random(350) + 50, 82683.45);
Beat(random(13), 600, random(350) + 50, 83886.55);
Beat(random(13), 600, random(350) + 50, 84088.25);
Beat(random(13), 600, random(350) + 50, 84307.41);
Beat(random(13), 600, random(350) + 50, 84528);
Beat(random(13), 600, random(350) + 50, 85747.05);
Beat(random(13), 600, random(350) + 50, 85966.19);
Beat(random(13), 600, random(350) + 50, 86167.89);
Beat(random(13), 600, random(350) + 50, 87481.29);
Beat(random(13), 600, random(350) + 50, 87698.96);
Beat(random(13), 600, random(350) + 50, 87934.08);
Beat(random(13), 600, random(350) + 50, 89246.01);
Beat(random(13), 600, random(350) + 50, 89465.12);
Beat(random(13), 600, random(350) + 50, 89666.85);
Beat(random(13), 600, random(350) + 50, 90994.74);
Beat(random(13), 600, random(350) + 50, 91197.91);
Beat(random(13), 600, random(350) + 50, 91433.02);
Beat(random(13), 600, random(350) + 50, 92853.81);
Beat(random(13), 600, random(350) + 50, 93059.86);
Beat(random(13), 600, random(350) + 50, 93168.71);
Beat(random(13), 600, random(350) + 50, 94496.6);
Beat(random(13), 600, random(350) + 50, 94715.76);
Beat(random(13), 600, random(350) + 50, 94933.45);
Beat(random(13), 600, random(350) + 50, 96339.71);
Beat(random(13), 600, random(350) + 50, 96557.37);
Beat(random(13), 600, random(350) + 50, 96776.51);
Beat(random(13), 600, random(350) + 50, 98694.58);
Beat(random(13), 600, random(350) + 50, 99241.68);
Beat(random(13), 600, random(350) + 50, 99681.41);
Beat(random(13), 600, random(350) + 50, 100118.23);
Beat(random(13), 600, random(350) + 50, 100211.13);
Beat(random(13), 600, random(350) + 50, 100446.21);
Beat(random(13), 600, random(350) + 50, 101758.14);
Beat(random(13), 600, random(350) + 50, 101961.34);
Beat(random(13), 600, random(350) + 50, 102180.45);
Beat(random(13), 600, random(350) + 50, 103508.34);
Beat(random(13), 600, random(350) + 50, 103836.35);
Beat(random(13), 600, random(350) + 50, 104054.01);
Beat(random(13), 600, random(350) + 50, 105257.1);
Beat(random(13), 600, random(350) + 50, 105476.24);
Beat(random(13), 600, random(350) + 50, 105677.98);
Beat(random(13), 600, random(350) + 50, 107103.11);
Beat(random(13), 600, random(350) + 50, 107336.73);
Beat(random(13), 600, random(350) + 50, 107555.87);
Beat(random(13), 600, random(350) + 50, 108867.8);
Beat(random(13), 600, random(350) + 50, 109086.94);
Beat(random(13), 600, random(350) + 50, 109304.65);
Beat(random(13), 600, random(350) + 50, 110616.55);
Beat(random(13), 600, random(350) + 50, 110835.69);
Beat(random(13), 600, random(350) + 50, 111038.89);
Beat(random(13), 600, random(350) + 50, 112366.78);
Beat(random(13), 600, random(350) + 50, 112584.44);
Beat(random(13), 600, random(350) + 50, 112803.61);
Beat(random(13), 600, random(350) + 50, 114115.53);
Beat(random(13), 600, random(350) + 50, 114334.67);
Beat(random(13), 600, random(350) + 50, 114539.3);
Beat(random(13), 600, random(350) + 50, 115961.5);
Beat(random(13), 600, random(350) + 50, 116195.15);
Beat(random(13), 600, random(350) + 50, 116305.46);
Beat(random(13), 600, random(350) + 50, 117617.39);
Beat(random(13), 600, random(350) + 50, 117835.08);
Beat(random(13), 600, random(350) + 50, 118038.25);
Beat(random(13), 600, random(350) + 50, 119460.45);
Beat(random(13), 600, random(350) + 50, 119694.1);
Beat(random(13), 600, random(350) + 50, 119897.28);
Beat(random(13), 600, random(350) + 50, 121212.13);
Beat(random(13), 600, random(350) + 50, 121334.01);
Beat(random(13), 600, random(350) + 50, 121553.15);
Beat(random(13), 600, random(350) + 50, 122960.88);
Beat(random(13), 600, random(350) + 50, 123180.02);
Beat(random(13), 600, random(350) + 50, 123397.69);
Beat(random(13), 600, random(350) + 50, 124711.09);
Beat(random(13), 600, random(350) + 50, 124944.74);
Beat(random(13), 600, random(350) + 50, 125147.91);
Beat(random(13), 600, random(350) + 50, 126896.64);
Beat(random(13), 600, random(350) + 50, 127334.92);
Beat(random(13), 600, random(350) + 50, 127880.61);
Beat(random(13), 600, random(350) + 50, 128208.57);
Beat(random(13), 600, random(350) + 50, 128443.67);
Beat(random(13), 600, random(350) + 50, 129430.52);
Beat(random(13), 600, random(350) + 50, 129867.37);
Beat(random(13), 600, random(350) + 50, 130195.35);
Beat(random(13), 600, random(350) + 50, 131273.61);
Beat(random(13), 600, random(350) + 50, 131617.55);
Beat(random(13), 600, random(350) + 50, 131945.56);
Beat(random(13), 600, random(350) + 50, 133147.19);
Beat(random(13), 600, random(350) + 50, 133459.18);
Beat(random(13), 600, random(350) + 50, 133694.31);
Beat(random(13), 600, random(350) + 50, 134897.37);
Beat(random(13), 600, random(350) + 50, 135225.37);
Beat(random(13), 600, random(350) + 50, 135553.33);
Beat(random(13), 600, random(350) + 50, 136517.3);
Beat(random(13), 600, random(350) + 50, 136861.25);
Beat(random(13), 600, random(350) + 50, 137173.27);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
} else if (nSong == 4) {
SetSong("EON - Walk Alone");
Beat(random(13), 600, random(350) + 50, 13181.68);
Beat(random(13), 600, random(350) + 50, 13946.51);
Beat(random(13), 600, random(350) + 50, 14715.65);
Beat(random(13), 600, random(350) + 50, 15480.48);
Beat(random(13), 600, random(350) + 50, 16245.28);
Beat(random(13), 600, random(350) + 50, 17011.54);
Beat(random(13), 600, random(350) + 50, 17776.33);
Beat(random(13), 600, random(350) + 50, 18541.13);
Beat(random(13), 600, random(350) + 50, 19307.41);
Beat(random(13), 600, random(350) + 50, 20072.2);
Beat(random(13), 600, random(350) + 50, 20728.16);
Beat(random(13), 600, random(350) + 50, 21495.87);
Beat(random(13), 600, random(350) + 50, 22262.13);
Beat(random(13), 600, random(350) + 50, 23026.94);
Beat(random(13), 600, random(350) + 50, 23791.77);
Beat(random(13), 600, random(350) + 50, 24558.03);
Beat(random(13), 600, random(350) + 50, 24994.83);
Beat(random(13), 600, random(350) + 50, 27946.67);
Beat(random(13), 600, random(350) + 50, 30026.3);
Beat(random(13), 600, random(350) + 50, 30901.41);
Beat(random(13), 600, random(350) + 50, 31557.39);
Beat(random(13), 600, random(350) + 50, 32213.33);
Beat(random(13), 600, random(350) + 50, 33525.26);
Beat(random(13), 600, random(350) + 50, 33853.27);
Beat(random(13), 600, random(350) + 50, 36040.29);
Beat(random(13), 600, random(350) + 50, 36807.98);
Beat(random(13), 600, random(350) + 50, 37463.95);
Beat(random(13), 600, random(350) + 50, 38230.2);
Beat(random(13), 600, random(350) + 50, 39870.14);
Beat(random(13), 600, random(350) + 50, 40634.94);
Beat(random(13), 600, random(350) + 50, 41293.79);
Beat(random(13), 600, random(350) + 50, 42933.7);
Beat(random(13), 600, random(350) + 50, 43901.68);
Beat(random(13), 600, random(350) + 50, 44354.49);
Beat(random(13), 600, random(350) + 50, 45994.38);
Beat(random(13), 600, random(350) + 50, 46650.34);
Beat(random(13), 600, random(350) + 50, 47416.6);
Beat(random(13), 600, random(350) + 50, 48933.15);
Beat(random(13), 600, random(350) + 50, 49824.24);
Beat(random(13), 600, random(350) + 50, 50371.34);
Beat(random(13), 600, random(350) + 50, 51776.15);
Beat(random(13), 600, random(350) + 50, 52667.21);
Beat(random(13), 600, random(350) + 50, 53432.02);
Beat(random(13), 600, random(350) + 50, 54087.98);
Beat(random(13), 600, random(350) + 50, 54839.73);
Beat(random(13), 600, random(350) + 50, 55606.01);
Beat(random(13), 600, random(350) + 50, 56370.82);
Beat(random(13), 600, random(350) + 50, 57917.82);
Beat(random(13), 600, random(350) + 50, 58666.69);
Beat(random(13), 600, random(350) + 50, 59448.91);
Beat(random(13), 600, random(350) + 50, 60869.68);
Beat(random(13), 600, random(350) + 50, 61634.49);
Beat(random(13), 600, random(350) + 50, 63824.4);
Beat(random(13), 600, random(350) + 50, 64699.52);
Beat(random(13), 600, random(350) + 50, 65339.52);
Beat(random(13), 600, random(350) + 50, 66776.26);
Beat(random(13), 600, random(350) + 50, 67651.36);
Beat(random(13), 600, random(350) + 50, 68416.15);
Beat(random(13), 600, random(350) + 50, 69950.14);
Beat(random(13), 600, random(350) + 50, 70714.92);
Beat(random(13), 600, random(350) + 50, 72135.71);
Beat(random(13), 600, random(350) + 50, 72886.01);
Beat(random(13), 600, random(350) + 50, 73650.82);
Beat(random(13), 600, random(350) + 50, 75853.81);
Beat(random(13), 600, random(350) + 50, 78917.37);
Beat(random(13), 600, random(350) + 50, 81525.26);
Beat(random(13), 600, random(350) + 50, 84916.85);
Beat(random(13), 600, random(350) + 50, 87759.84);
Beat(random(13), 600, random(350) + 50, 90837.91);
Beat(random(13), 600, random(350) + 50, 93901.5);
Beat(random(13), 600, random(350) + 50, 96856.24);
Beat(random(13), 600, random(350) + 50, 99808.07);
Beat(random(13), 600, random(350) + 50, 100572.88);
Beat(random(13), 600, random(350) + 50, 102746.87);
Beat(random(13), 600, random(350) + 50, 104183.58);
Beat(random(13), 600, random(350) + 50, 105717.55);
Beat(random(13), 600, random(350) + 50, 107138.32);
Beat(random(13), 600, random(350) + 50, 108653.42);
Beat(random(13), 600, random(350) + 50, 110293.33);
Beat(random(13), 600, random(350) + 50, 111827.3);
Beat(random(13), 600, random(350) + 50, 112592.11);
Beat(random(13), 600, random(350) + 50, 113356.92);
Beat(random(13), 600, random(350) + 50, 114123.2);
Beat(random(13), 600, random(350) + 50, 114903.95);
Beat(random(13), 600, random(350) + 50, 115652.79);
Beat(random(13), 600, random(350) + 50, 116419.05);
Beat(random(13), 600, random(350) + 50, 117964.65);
Beat(random(13), 600, random(350) + 50, 118604.65);
Beat(random(13), 600, random(350) + 50, 119386.87);
Beat(random(13), 600, random(350) + 50, 120903.42);
Beat(random(13), 600, random(350) + 50, 121559.37);
Beat(random(13), 600, random(350) + 50, 123762.36);
Beat(random(13), 600, random(350) + 50, 124637.48);
Beat(random(13), 600, random(350) + 50, 125402.29);
Beat(random(13), 600, random(350) + 50, 126152.56);
Beat(random(13), 600, random(350) + 50, 126830.07);
Beat(random(13), 600, random(350) + 50, 128361.11);
Beat(random(13), 600, random(350) + 50, 129125.94);
Beat(random(13), 600, random(350) + 50, 129893.63);
Beat(random(13), 600, random(350) + 50, 131424.69);
Beat(random(13), 600, random(350) + 50, 132189.52);
Beat(random(13), 600, random(350) + 50, 132955.76);
Beat(random(13), 600, random(350) + 50, 135907.62);
Beat(random(13), 600, random(350) + 50, 136469.25);
Beat(random(13), 600, random(350) + 50, 137003.29);
Beat(random(13), 600, random(350) + 50, 138862.34);
Beat(random(13), 600, random(350) + 50, 139518.3);
Beat(random(13), 600, random(350) + 50, 140063.99);
Beat(random(13), 600, random(350) + 50, 141814.17);
Beat(random(13), 600, random(350) + 50, 142470.14);
Beat(random(13), 600, random(350) + 50, 143017.26);
Beat(random(13), 600, random(350) + 50, 144768.93);
Beat(random(13), 600, random(350) + 50, 145424.9);
Beat(random(13), 600, random(350) + 50, 146080.86);
Beat(random(13), 600, random(350) + 50, 147939.91);
Beat(random(13), 600, random(350) + 50, 148485.58);
Beat(random(13), 600, random(350) + 50, 149144.44);
Beat(random(13), 600, random(350) + 50, 150893.2);
Beat(random(13), 600, random(350) + 50, 151440.29);
Beat(random(13), 600, random(350) + 50, 152096.26);
Beat(random(13), 600, random(350) + 50, 153846.49);
Beat(random(13), 600, random(350) + 50, 154502.43);
Beat(random(13), 600, random(350) + 50, 155158.39);
Beat(random(13), 600, random(350) + 50, 156910.05);
Beat(random(13), 600, random(350) + 50, 157457.19);
Beat(random(13), 600, random(350) + 50, 158117.48);
Beat(random(13), 600, random(350) + 50, 159867.69);
Beat(random(13), 600, random(350) + 50, 162166.46);
Beat(random(13), 600, random(350) + 50, 162931.29);
Beat(random(13), 600, random(350) + 50, 163478.41);
Beat(random(13), 600, random(350) + 50, 165446.28);
Beat(random(13), 600, random(350) + 50, 165883.11);
Beat(random(13), 600, random(350) + 50, 168179);
Beat(random(13), 600, random(350) + 50, 168834.94);
Beat(random(13), 600, random(350) + 50, 169493.83);
Beat(random(13), 600, random(350) + 50, 170258.64);
Beat(random(13), 600, random(350) + 50, 171789.71);
Beat(random(13), 600, random(350) + 50, 172554.51);
Beat(random(13), 600, random(350) + 50, 173210.45);
Beat(random(13), 600, random(350) + 50, 174085.56);
Beat(random(13), 600, random(350) + 50, 174960.68);
Beat(random(13), 600, random(350) + 50, 176088.12);
Beat(random(13), 600, random(350) + 50, 178929.64);
Beat(random(13), 600, random(350) + 50, 177943.38);
Beat(random(13), 600, random(350) + 50, 178599.34);
Beat(random(13), 600, random(350) + 50, 179367.05);
Beat(random(13), 600, random(350) + 50, 180898.12);
Beat(random(13), 600, random(350) + 50, 181989.43);
Beat(random(13), 600, random(350) + 50, 182427.73);
Beat(random(13), 600, random(350) + 50, 184067.64);
Beat(random(13), 600, random(350) + 50, 185354.83);
Beat(random(13), 600, random(350) + 50, 186885.9);
Beat(random(13), 600, random(350) + 50, 188309.57);
Beat(random(13), 600, random(350) + 50, 189939.57);
Beat(random(13), 600, random(350) + 50, 191361.77);
Beat(random(13), 600, random(350) + 50, 192891.38);
Beat(random(13), 600, random(350) + 50, 196065.26);
Beat(random(13), 600, random(350) + 50, 198901.81);
Beat(random(13), 600, random(350) + 50, 200324.06);
Beat(random(13), 600, random(350) + 50, 201744.81);
Beat(random(13), 600, random(350) + 50, 203384.74);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
} else if (nSong == 5) {
SetSong("Volume-Records - Unhinged");
Beat(random(13), 600, random(350) + 50, 6460.98);
Beat(random(13), 600, random(350) + 50, 7116.92);
Beat(random(13), 600, random(350) + 50, 7756.92);
Beat(random(13), 600, random(350) + 50, 9290.91);
Beat(random(13), 600, random(350) + 50, 10071.68);
Beat(random(13), 600, random(350) + 50, 10714.58);
Beat(random(13), 600, random(350) + 50, 12469.12);
Beat(random(13), 600, random(350) + 50, 13235.4);
Beat(random(13), 600, random(350) + 50, 13891.34);
Beat(random(13), 600, random(350) + 50, 14659.07);
Beat(random(13), 600, random(350) + 50, 15538.53);
Beat(random(13), 600, random(350) + 50, 16304.78);
Beat(random(13), 600, random(350) + 50, 17053.61);
Beat(random(13), 600, random(350) + 50, 18586.12);
Beat(random(13), 600, random(350) + 50, 19352.4);
Beat(random(13), 600, random(350) + 50, 20011.25);
Beat(random(13), 600, random(350) + 50, 20776.05);
Beat(random(13), 600, random(350) + 50, 21775.96);
Beat(random(13), 600, random(350) + 50, 22418.87);
Beat(random(13), 600, random(350) + 50, 23183.67);
Beat(random(13), 600, random(350) + 50, 24826.49);
Beat(random(13), 600, random(350) + 50, 25592.77);
Beat(random(13), 600, random(350) + 50, 26248.71);
Beat(random(13), 600, random(350) + 50, 26906.15);
Beat(random(13), 600, random(350) + 50, 27890.07);
Beat(random(13), 600, random(350) + 50, 28656.33);
Beat(random(13), 600, random(350) + 50, 29315.19);
Beat(random(13), 600, random(350) + 50, 30080);
Beat(random(13), 600, random(350) + 50, 30955.12);
Beat(random(13), 600, random(350) + 50, 31719.93);
Beat(random(13), 600, random(350) + 50, 32375.87);
Beat(random(13), 600, random(350) + 50, 33140.68);
Beat(random(13), 600, random(350) + 50, 34015.8);
Beat(random(13), 600, random(350) + 50, 34782.06);
Beat(random(13), 600, random(350) + 50, 35546.85);
Beat(random(13), 600, random(350) + 50, 37079.37);
Beat(random(13), 600, random(350) + 50, 37954.47);
Beat(random(13), 600, random(350) + 50, 38610.45);
Beat(random(13), 600, random(350) + 50, 39272.2);
Beat(random(13), 600, random(350) + 50, 40243.11);
Beat(random(13), 600, random(350) + 50, 41010.79);
Beat(random(13), 600, random(350) + 50, 41666.76);
Beat(random(13), 600, random(350) + 50, 42322.74);
Beat(random(13), 600, random(350) + 50, 43306.67);
Beat(random(13), 600, random(350) + 50, 44618.59);
Beat(random(13), 600, random(350) + 50, 46152.56);
Beat(random(13), 600, random(350) + 50, 46920.27);
Beat(random(13), 600, random(350) + 50, 47796.83);
Beat(random(13), 600, random(350) + 50, 49327.91);
Beat(random(13), 600, random(350) + 50, 50863.31);
Beat(random(13), 600, random(350) + 50, 51957.57);
Beat(random(13), 600, random(350) + 50, 52832.65);
Beat(random(13), 600, random(350) + 50, 53490.09);
Beat(random(13), 600, random(350) + 50, 54349.23);
Beat(random(13), 600, random(350) + 50, 55785.94);
Beat(random(13), 600, random(350) + 50, 56428.84);
Beat(random(13), 600, random(350) + 50, 57743.67);
Beat(random(13), 600, random(350) + 50, 58837.94);
Beat(random(13), 600, random(350) + 50, 59493.88);
Beat(random(13), 600, random(350) + 50, 60711.5);
Beat(random(13), 600, random(350) + 50, 61898.62);
Beat(random(13), 600, random(350) + 50, 63541.41);
Beat(random(13), 600, random(350) + 50, 64197.39);
Beat(random(13), 600, random(350) + 50, 65072.47);
Beat(random(13), 600, random(350) + 50, 66602.11);
Beat(random(13), 600, random(350) + 50, 68313.11);
Beat(random(13), 600, random(350) + 50, 68519.18);
Beat(random(13), 600, random(350) + 50, 68863.15);
Beat(random(13), 600, random(350) + 50, 69299.98);
Beat(random(13), 600, random(350) + 50, 69614.88);
Beat(random(13), 600, random(350) + 50, 70053.17);
Beat(random(13), 600, random(350) + 50, 70381.13);
Beat(random(13), 600, random(350) + 50, 70817.98);
Beat(random(13), 600, random(350) + 50, 71145.96);
Beat(random(13), 600, random(350) + 50, 71598.75);
Beat(random(13), 600, random(350) + 50, 71926.71);
Beat(random(13), 600, random(350) + 50, 72365.01);
Beat(random(13), 600, random(350) + 50, 72677.03);
Beat(random(13), 600, random(350) + 50, 73113.83);
Beat(random(13), 600, random(350) + 50, 73441.84);
Beat(random(13), 600, random(350) + 50, 73894.6);
Beat(random(13), 600, random(350) + 50, 74206.64);
Beat(random(13), 600, random(350) + 50, 74644.92);
Beat(random(13), 600, random(350) + 50, 74988.87);
Beat(random(13), 600, random(350) + 50, 75412.63);
Beat(random(13), 600, random(350) + 50, 75740.61);
Beat(random(13), 600, random(350) + 50, 76177.44);
Beat(random(13), 600, random(350) + 50, 76505.4);
Beat(random(13), 600, random(350) + 50, 76943.7);
Beat(random(13), 600, random(350) + 50, 77273.13);
Beat(random(13), 600, random(350) + 50, 77711.41);
Beat(random(13), 600, random(350) + 50, 78039.39);
Beat(random(13), 600, random(350) + 50, 78476.21);
Beat(random(13), 600, random(350) + 50, 78804.17);
Beat(random(13), 600, random(350) + 50, 79242.47);
Beat(random(13), 600, random(350) + 50, 79570.43);
Beat(random(13), 600, random(350) + 50, 80007.26);
Beat(random(13), 600, random(350) + 50, 80480.82);
Beat(random(13), 600, random(350) + 50, 81122.27);
Beat(random(13), 600, random(350) + 50, 81778.21);
Beat(random(13), 600, random(350) + 50, 82416.94);
Beat(random(13), 600, random(350) + 50, 83072.93);
Beat(random(13), 600, random(350) + 50, 83728.89);
Beat(random(13), 600, random(350) + 50, 84361.68);
Beat(random(13), 600, random(350) + 50, 85017.64);
Beat(random(13), 600, random(350) + 50, 86001.61);
Beat(random(13), 600, random(350) + 50, 86621.61);
Beat(random(13), 600, random(350) + 50, 87168.71);
Beat(random(13), 600, random(350) + 50, 88043.81);
Beat(random(13), 600, random(350) + 50, 88543.88);
Beat(random(13), 600, random(350) + 50, 89075.01);
Beat(random(13), 600, random(350) + 50, 89855.78);
Beat(random(13), 600, random(350) + 50, 90621.47);
Beat(random(13), 600, random(350) + 50, 91389.18);
Beat(random(13), 600, random(350) + 50, 92045.12);
Beat(random(13), 600, random(350) + 50, 92075.31);
Beat(random(13), 600, random(350) + 50, 92122.63);
Beat(random(13), 600, random(350) + 50, 92294.47);
Beat(random(13), 600, random(350) + 50, 92434.65);
Beat(random(13), 600, random(350) + 50, 92513.58);
Beat(random(13), 600, random(350) + 50, 92656.69);
Beat(random(13), 600, random(350) + 50, 94408.32);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
} else if (nSong == 6) {
SetSong("cornandbeans - {The Traveller}");
Beat(random(13), 600, random(350) + 50, 11086.12);
Beat(random(13), 600, random(350) + 50, 12180.34);
Beat(random(13), 600, random(350) + 50, 13492.29);
Beat(random(13), 600, random(350) + 50, 14804.22);
Beat(random(13), 600, random(350) + 50, 16227.87);
Beat(random(13), 600, random(350) + 50, 17539.8);
Beat(random(13), 600, random(350) + 50, 18758.84);
Beat(random(13), 600, random(350) + 50, 20163.65);
Beat(random(13), 600, random(350) + 50, 21585.87);
Beat(random(13), 600, random(350) + 50, 22257.82);
Beat(random(13), 600, random(350) + 50, 23006.67);
Beat(random(13), 600, random(350) + 50, 24321.5);
Beat(random(13), 600, random(350) + 50, 24977.46);
Beat(random(13), 600, random(350) + 50, 25742.27);
Beat(random(13), 600, random(350) + 50, 26398.23);
Beat(random(13), 600, random(350) + 50, 26968.93);
Beat(random(13), 600, random(350) + 50, 27735.19);
Beat(random(13), 600, random(350) + 50, 28508.71);
Beat(random(13), 600, random(350) + 50, 29601.5);
Beat(random(13), 600, random(350) + 50, 30913.4);
Beat(random(13), 600, random(350) + 50, 31897.35);
Beat(random(13), 600, random(350) + 50, 32444.47);
Beat(random(13), 600, random(350) + 50, 33756.39);
Beat(random(13), 600, random(350) + 50, 35180.07);
Beat(random(13), 600, random(350) + 50, 36603.76);
Beat(random(13), 600, random(350) + 50, 38025.99);
Beat(random(13), 600, random(350) + 50, 39227.6);
Beat(random(13), 600, random(350) + 50, 40649.84);
Beat(random(13), 600, random(350) + 50, 41961.75);
Beat(random(13), 600, random(350) + 50, 43273.7);
Beat(random(13), 600, random(350) + 50, 44478.23);
Beat(random(13), 600, random(350) + 50, 46009.3);
Beat(random(13), 600, random(350) + 50, 47431.52);
Beat(random(13), 600, random(350) + 50, 48743.45);
Beat(random(13), 600, random(350) + 50, 50164.22);
Beat(random(13), 600, random(350) + 50, 51479.05);
Beat(random(13), 600, random(350) + 50, 52790.95);
Beat(random(13), 600, random(350) + 50, 54102.88);
Beat(random(13), 600, random(350) + 50, 55523.65);
Beat(random(13), 600, random(350) + 50, 56835.6);
Beat(random(13), 600, random(350) + 50, 58260.73);
Beat(random(13), 600, random(350) + 50, 59572.65);
Beat(random(13), 600, random(350) + 50, 60884.56);
Beat(random(13), 600, random(350) + 50, 62196.51);
Beat(random(13), 600, random(350) + 50, 63617.26);
Beat(random(13), 600, random(350) + 50, 64929.21);
Beat(random(13), 600, random(350) + 50, 66352.88);
Beat(random(13), 600, random(350) + 50, 67775.08);
Beat(random(13), 600, random(350) + 50, 69087.01);
Beat(random(13), 600, random(350) + 50, 69742.97);
Beat(random(13), 600, random(350) + 50, 71819.73);
Beat(random(13), 600, random(350) + 50, 72475.69);
Beat(random(13), 600, random(350) + 50, 74446.46);
Beat(random(13), 600, random(350) + 50, 75102.45);
Beat(random(13), 600, random(350) + 50, 77180.63);
Beat(random(13), 600, random(350) + 50, 77836.6);
Beat(random(13), 600, random(350) + 50, 79913.33);
Beat(random(13), 600, random(350) + 50, 80572.18);
Beat(random(13), 600, random(350) + 50, 82648.93);
Beat(random(13), 600, random(350) + 50, 83304.9);
Beat(random(13), 600, random(350) + 50, 85272.79);
Beat(random(13), 600, random(350) + 50, 85928.73);
Beat(random(13), 600, random(350) + 50, 88118.66);
Beat(random(13), 600, random(350) + 50, 89430.59);
Beat(random(13), 600, random(350) + 50, 89752.74);
Beat(random(13), 600, random(350) + 50, 90189.57);
Beat(random(13), 600, random(350) + 50, 90955.83);
Beat(random(13), 600, random(350) + 50, 92376.58);
Beat(random(13), 600, random(350) + 50, 93141.38);
Beat(random(13), 600, random(350) + 50, 93907.64);
Beat(random(13), 600, random(350) + 50, 95547.55);
Beat(random(13), 600, random(350) + 50, 96315.26);
Beat(random(13), 600, random(350) + 50, 97080.07);
Beat(random(13), 600, random(350) + 50, 98611.16);
Beat(random(13), 600, random(350) + 50, 99375.96);
Beat(random(13), 600, random(350) + 50, 100251.04);
Beat(random(13), 600, random(350) + 50, 100907.01);
Beat(random(13), 600, random(350) + 50, 101782.11);
Beat(random(13), 600, random(350) + 50, 102546.92);
Beat(random(13), 600, random(350) + 50, 103314.63);
Beat(random(13), 600, random(350) + 50, 103970.61);
Beat(random(13), 600, random(350) + 50, 104845.71);
Beat(random(13), 600, random(350) + 50, 105720.79);
Beat(random(13), 600, random(350) + 50, 106485.6);
Beat(random(13), 600, random(350) + 50, 107141.56);
Beat(random(13), 600, random(350) + 50, 108016.67);
Beat(random(13), 600, random(350) + 50, 109656.58);
Beat(random(13), 600, random(350) + 50, 110315.44);
Beat(random(13), 600, random(350) + 50, 111189.09);
Beat(random(13), 600, random(350) + 50, 111955.35);
Beat(random(13), 600, random(350) + 50, 112829);
Beat(random(13), 600, random(350) + 50, 114360.07);
Beat(random(13), 600, random(350) + 50, 115891.13);
Beat(random(13), 600, random(350) + 50, 117423.65);
Beat(random(13), 600, random(350) + 50, 119065.01);
Beat(random(13), 600, random(350) + 50, 120594.63);
Beat(random(13), 600, random(350) + 50, 121469.75);
Beat(random(13), 600, random(350) + 50, 122234.54);
Beat(random(13), 600, random(350) + 50, 123765.62);
Beat(random(13), 600, random(350) + 50, 125299.57);
Beat(random(13), 600, random(350) + 50, 126173.24);
Beat(random(13), 600, random(350) + 50, 126939.5);
Beat(random(13), 600, random(350) + 50, 128469.09);
Beat(random(13), 600, random(350) + 50, 130109.02);
Beat(random(13), 600, random(350) + 50, 131640.09);
Beat(random(13), 600, random(350) + 50, 132407.78);
Beat(random(13), 600, random(350) + 50, 133282.9);
Beat(random(13), 600, random(350) + 50, 134813.97);
Beat(random(13), 600, random(350) + 50, 136345.01);
Beat(random(13), 600, random(350) + 50, 137877.53);
Beat(random(13), 600, random(350) + 50, 139501.47);
Beat(random(13), 600, random(350) + 50, 140282.24);
Beat(random(13), 600, random(350) + 50, 141048.53);
Beat(random(13), 600, random(350) + 50, 142675.35);
Beat(random(13), 600, random(350) + 50, 144220.95);
Beat(random(13), 600, random(350) + 50, 145846.33);
Beat(random(13), 600, random(350) + 50, 146630);
Beat(random(13), 600, random(350) + 50, 148925.9);
Beat(random(13), 600, random(350) + 50, 149677.62);
Beat(random(13), 600, random(350) + 50, 150552.72);
Beat(random(13), 600, random(350) + 50, 152082.36);
Beat(random(13), 600, random(350) + 50, 152848.59);
Beat(random(13), 600, random(350) + 50, 153722.24);
Beat(random(13), 600, random(350) + 50, 155144.49);
Beat(random(13), 600, random(350) + 50, 156806.17);
Beat(random(13), 600, random(350) + 50, 158322.72);
Beat(random(13), 600, random(350) + 50, 159744.92);
Beat(random(13), 600, random(350) + 50, 161165.69);
Beat(random(13), 600, random(350) + 50, 162586.46);
Beat(random(13), 600, random(350) + 50, 165213.22);
Beat(random(13), 600, random(350) + 50, 168056.24);
Beat(random(13), 600, random(350) + 50, 170571.25);
Beat(random(13), 600, random(350) + 50, 173309.75);
Beat(random(13), 600, random(350) + 50, 174621.68);
Beat(random(13), 600, random(350) + 50, 175933.61);
Beat(random(13), 600, random(350) + 50, 177354.38);
Beat(random(13), 600, random(350) + 50, 178669.18);
Beat(random(13), 600, random(350) + 50, 179981.13);
Beat(random(13), 600, random(350) + 50, 181403.36);
Beat(random(13), 600, random(350) + 50, 182385.9);
Beat(random(13), 600, random(350) + 50, 183697.82);
Beat(random(13), 600, random(350) + 50, 185121.52);
Beat(random(13), 600, random(350) + 50, 188620.48);
Beat(random(13), 600, random(350) + 50, 187771.38);
Beat(random(13), 600, random(350) + 50, 189083.33);
Beat(random(13), 600, random(350) + 50, 190506.98);
Beat(random(13), 600, random(350) + 50, 191818.91);
Beat(random(13), 600, random(350) + 50, 195211.95);
Beat(random(13), 600, random(350) + 50, 194508.1);
Beat(random(13), 600, random(350) + 50, 195820.02);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
} else if (nSong == 7) {
SetSong("Dimrain47 - A Question of Fate");
Beat(random(13), 600, random(350) + 50, 13292.54);
Beat(random(13), 600, random(350) + 50, 14497.05);
Beat(random(13), 600, random(350) + 50, 15263.31);
Beat(random(13), 600, random(350) + 50, 16028.14);
Beat(random(13), 600, random(350) + 50, 16684.08);
Beat(random(13), 600, random(350) + 50, 17231.22);
Beat(random(13), 600, random(350) + 50, 17887.19);
Beat(random(13), 600, random(350) + 50, 18654.88);
Beat(random(13), 600, random(350) + 50, 19857.96);
Beat(random(13), 600, random(350) + 50, 20513.95);
Beat(random(13), 600, random(350) + 50, 21278.75);
Beat(random(13), 600, random(350) + 50, 22583.42);
Beat(random(13), 600, random(350) + 50, 23348.21);
Beat(random(13), 600, random(350) + 50, 24660.16);
Beat(random(13), 600, random(350) + 50, 25866.12);
Beat(random(13), 600, random(350) + 50, 26302.95);
Beat(random(13), 600, random(350) + 50, 27286.89);
Beat(random(13), 600, random(350) + 50, 27942.86);
Beat(random(13), 600, random(350) + 50, 28598.82);
Beat(random(13), 600, random(350) + 50, 29254.81);
Beat(random(13), 600, random(350) + 50, 30457.89);
Beat(random(13), 600, random(350) + 50, 31222.7);
Beat(random(13), 600, random(350) + 50, 31990.41);
Beat(random(13), 600, random(350) + 50, 33302.31);
Beat(random(13), 600, random(350) + 50, 33961.2);
Beat(random(13), 600, random(350) + 50, 34727.46);
Beat(random(13), 600, random(350) + 50, 37241.02);
Beat(random(13), 600, random(350) + 50, 38664.67);
Beat(random(13), 600, random(350) + 50, 39430.95);
Beat(random(13), 600, random(350) + 50, 39978.07);
Beat(random(13), 600, random(350) + 50, 40634.01);
Beat(random(13), 600, random(350) + 50, 41401.72);
Beat(random(13), 600, random(350) + 50, 42057.69);
Beat(random(13), 600, random(350) + 50, 42713.67);
Beat(random(13), 600, random(350) + 50, 45233.04);
Beat(random(13), 600, random(350) + 50, 46655.26);
Beat(random(13), 600, random(350) + 50, 47311.22);
Beat(random(13), 600, random(350) + 50, 47967.19);
Beat(random(13), 600, random(350) + 50, 49386.24);
Beat(random(13), 600, random(350) + 50, 50587.85);
Beat(random(13), 600, random(350) + 50, 51243.83);
Beat(random(13), 600, random(350) + 50, 51698.07);
Beat(random(13), 600, random(350) + 50, 52010.07);
Beat(random(13), 600, random(350) + 50, 52555.76);
Beat(random(13), 600, random(350) + 50, 53211.72);
Beat(random(13), 600, random(350) + 50, 53758.82);
Beat(random(13), 600, random(350) + 50, 54539.59);
Beat(random(13), 600, random(350) + 50, 55292.79);
Beat(random(13), 600, random(350) + 50, 55964.72);
Beat(random(13), 600, random(350) + 50, 57276.64);
Beat(random(13), 600, random(350) + 50, 58575.51);
Beat(random(13), 600, random(350) + 50, 59888.91);
Beat(random(13), 600, random(350) + 50, 60544.88);
Beat(random(13), 600, random(350) + 50, 61203.72);
Beat(random(13), 600, random(350) + 50, 62625.96);
Beat(random(13), 600, random(350) + 50, 63937.87);
Beat(random(13), 600, random(350) + 50, 64483.56);
Beat(random(13), 600, random(350) + 50, 65361.54);
Beat(random(13), 600, random(350) + 50, 66017.53);
Beat(random(13), 600, random(350) + 50, 66564.63);
Beat(random(13), 600, random(350) + 50, 67879.48);
Beat(random(13), 600, random(350) + 50, 69191.38);
Beat(random(13), 600, random(350) + 50, 70615.08);
Beat(random(13), 600, random(350) + 50, 71271.04);
Beat(random(13), 600, random(350) + 50, 71911.02);
Beat(random(13), 600, random(350) + 50, 74649.55);
Beat(random(13), 600, random(350) + 50, 76066.26);
Beat(random(13), 600, random(350) + 50, 77267.87);
Beat(random(13), 600, random(350) + 50, 77939.82);
Beat(random(13), 600, random(350) + 50, 79894.63);
Beat(random(13), 600, random(350) + 50, 80660.88);
Beat(random(13), 600, random(350) + 50, 81862.52);
Beat(random(13), 600, random(350) + 50, 82628.78);
Beat(random(13), 600, random(350) + 50, 84052.47);
Beat(random(13), 600, random(350) + 50, 85255.53);
Beat(random(13), 600, random(350) + 50, 86460.09);
Beat(random(13), 600, random(350) + 50, 87991.16);
Beat(random(13), 600, random(350) + 50, 88647.1);
Beat(random(13), 600, random(350) + 50, 90509.05);
Beat(random(13), 600, random(350) + 50, 91273.85);
Beat(random(13), 600, random(350) + 50, 91929.84);
Beat(random(13), 600, random(350) + 50, 93353.51);
Beat(random(13), 600, random(350) + 50, 94665.44);
Beat(random(13), 600, random(350) + 50, 95993.33);
Beat(random(13), 600, random(350) + 50, 97311.04);
Beat(random(13), 600, random(350) + 50, 98059.91);
Beat(random(13), 600, random(350) + 50, 99262.99);
Beat(random(13), 600, random(350) + 50, 99606.94);
Beat(random(13), 600, random(350) + 50, 100590.88);
Beat(random(13), 600, random(350) + 50, 101138);
Beat(random(13), 600, random(350) + 50, 101905.69);
Beat(random(13), 600, random(350) + 50, 102329.48);
Beat(random(13), 600, random(350) + 50, 103095.74);
Beat(random(13), 600, random(350) + 50, 104641.29);
Beat(random(13), 600, random(350) + 50, 105281.29);
Beat(random(13), 600, random(350) + 50, 106812.36);
Beat(random(13), 600, random(350) + 50, 107359.48);
Beat(random(13), 600, random(350) + 50, 108031.43);
Beat(random(13), 600, random(350) + 50, 110531.93);
Beat(random(13), 600, random(350) + 50, 111843.85);
Beat(random(13), 600, random(350) + 50, 113390.88);
Beat(random(13), 600, random(350) + 50, 114686.83);
Beat(random(13), 600, random(350) + 50, 116014.72);
Beat(random(13), 600, random(350) + 50, 117313.58);
Beat(random(13), 600, random(350) + 50, 118625.51);
Beat(random(13), 600, random(350) + 50, 119937.44);
Beat(random(13), 600, random(350) + 50, 121281.29);
Beat(random(13), 600, random(350) + 50, 122735.44);
Beat(random(13), 600, random(350) + 50, 123937.07);
Beat(random(13), 600, random(350) + 50, 124484.22);
Beat(random(13), 600, random(350) + 50, 125015.35);
Beat(random(13), 600, random(350) + 50, 126563.85);
Beat(random(13), 600, random(350) + 50, 127110.95);
Beat(random(13), 600, random(350) + 50, 127859.82);
Beat(random(13), 600, random(350) + 50, 129283.45);
Beat(random(13), 600, random(350) + 50, 129836.44);
Beat(random(13), 600, random(350) + 50, 130586.73);
Beat(random(13), 600, random(350) + 50, 131901.59);
Beat(random(13), 600, random(350) + 50, 133213.51);
Beat(random(13), 600, random(350) + 50, 133981.22);
Beat(random(13), 600, random(350) + 50, 134650.25);
Beat(random(13), 600, random(350) + 50, 135952.02);
Beat(random(13), 600, random(350) + 50, 137263.92);
Beat(random(13), 600, random(350) + 50, 137811.04);
Beat(random(13), 600, random(350) + 50, 138578.78);
Beat(random(13), 600, random(350) + 50, 139893.61);
Beat(random(13), 600, random(350) + 50, 141205.51);
Beat(random(13), 600, random(350) + 50, 142626.3);
Beat(random(13), 600, random(350) + 50, 143944.01);
Beat(random(13), 600, random(350) + 50, 144600);
Beat(random(13), 600, random(350) + 50, 145242.9);
Beat(random(13), 600, random(350) + 50, 147885.62);
Beat(random(13), 600, random(350) + 50, 149197.53);
Beat(random(13), 600, random(350) + 50, 150605.24);
Beat(random(13), 600, random(350) + 50, 151264.13);
Beat(random(13), 600, random(350) + 50, 152576.03);
Beat(random(13), 600, random(350) + 50, 153234.9);
Beat(random(13), 600, random(350) + 50, 154436.55);
Beat(random(13), 600, random(350) + 50, 155967.62);
Beat(random(13), 600, random(350) + 50, 157279.55);
Beat(random(13), 600, random(350) + 50, 158591.45);
Beat(random(13), 600, random(350) + 50, 159800.36);
Beat(random(13), 600, random(350) + 50, 161221.13);
Beat(random(13), 600, random(350) + 50, 162425.67);
Beat(random(13), 600, random(350) + 50, 163847.89);
Beat(random(13), 600, random(350) + 50, 165050.98);
Beat(random(13), 600, random(350) + 50, 166567.51);
Beat(random(13), 600, random(350) + 50, 167879.43);
Beat(random(13), 600, random(350) + 50, 169317.62);
Beat(random(13), 600, random(350) + 50, 170631.02);
InitializeBeatScript();
StartSong();
SetSongVolume(0);
Song_FadeIn(120);
gotoAndPlay ("Game Loop");
}
Frame 18
gotoAndPlay ("Game Loop");
Frame 19
ExecuteBeatSyncScript();
nScore++;
if (Song_GetTimeRemaining(BSTime_Mi) <= 0) {
DeconstructBeatScript();
gotoAndStop ("Game Over");
}
if (nLives <= 0) {
DeconstructBeatScript();
gotoAndStop ("Game Over");
}
if ((!bRival) and (Song_GetTimeRemaining(BSTime_Mi) <= Song_GetTimePassed(BSTime_Mi))) {
nRivalX = random(400) + 140;
nRivalY = random(375) + 30;
bRival = true;
}
if (bRival) {
if ((((Rival._x + nRivalSpeed) >= nRivalX) and ((Rival._x - nRivalSpeed) <= nRivalX)) and (((Rival._y + nRivalSpeed) >= nRivalY) and ((Rival._y - nRivalSpeed) <= nRivalY))) {
nRivalX = random(350) + 200;
nRivalY = random(375) + 30;
}
if ((Rival._x < nRivalX) and ((Rival._x + nRivalSpeed) < nRivalX)) {
Rival._rotation = Rival._rotation + nRivalSpeed;
Rival._x = Rival._x + nRivalSpeed;
}
if ((Rival._x > nRivalX) and ((Rival._x - nRivalSpeed) > nRivalX)) {
Rival._rotation = Rival._rotation - nRivalSpeed;
Rival._x = Rival._x - nRivalSpeed;
}
if ((Rival._y < nRivalY) and ((Rival._y + nRivalSpeed) < nRivalY)) {
Rival._rotation = Rival._rotation + nRivalSpeed;
Rival._y = Rival._y + nRivalSpeed;
}
if ((Rival._y > nRivalY) and ((Rival._y - nRivalSpeed) > nRivalY)) {
Rival._rotation = Rival._rotation - nRivalSpeed;
Rival._y = Rival._y - nRivalSpeed;
}
if ((!bRivalHit) and Rival.hitTest(Player)) {
nRivalHits++;
SFX.setPan((((Player._x + 50) / 750) * 200) - 100);
SFX.gotoAndPlay("Rival");
if (0 == (nRivalHits % 3)) {
nLives--;
}
bRivalHit = true;
nScore = nScore - 1000;
nRivalX = random(350) + 200;
nRivalY = random(375) + 30;
}
if (!Rival.hitTest(Player)) {
bRivalHit = false;
}
}
nDirection = 0;
if ((Key.isDown(37) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 7;
}
if (Key.isDown(37) and Key.isDown(38)) {
nDirection = 8;
}
if (Key.isDown(37) and Key.isDown(40)) {
nDirection = 6;
}
if ((Key.isDown(39) and (!Key.isDown(40))) and (!Key.isDown(38))) {
nDirection = 3;
}
if (Key.isDown(39) and Key.isDown(38)) {
nDirection = 2;
}
if (Key.isDown(39) and Key.isDown(40)) {
nDirection = 4;
}
if ((Key.isDown(38) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 1;
}
if ((Key.isDown(40) and (!Key.isDown(37))) and (!Key.isDown(39))) {
nDirection = 5;
}
switch (nDirection) {
case 0 :
nRotateTo = 0;
break;
case 1 :
nRotateTo = -20;
if (Player._y > -45) {
Player._y = Player._y - nPlayerSpeed;
}
break;
case 2 :
nRotateTo = 10;
if (Player._x < 550) {
Player._x = Player._x + nPlayerSpeed;
}
if (Player._y > -45) {
Player._y = Player._y - nPlayerSpeed;
}
break;
case 3 :
nRotateTo = 20;
if (Player._x < 550) {
Player._x = Player._x + nPlayerSpeed;
}
break;
case 4 :
nRotateTo = 30;
if (Player._x < 550) {
Player._x = Player._x + nPlayerSpeed;
}
if (Player._y < 350) {
Player._y = Player._y + nPlayerSpeed;
}
break;
case 5 :
nRotateTo = -20;
if (Player._y < 350) {
Player._y = Player._y + nPlayerSpeed;
}
break;
case 6 :
nRotateTo = -30;
if (Player._x > -45) {
Player._x = Player._x - nPlayerSpeed;
}
if (Player._y < 350) {
Player._y = Player._y + nPlayerSpeed;
}
break;
case 7 :
nRotateTo = -20;
if (Player._x > -45) {
Player._x = Player._x - nPlayerSpeed;
}
break;
case 8 :
nRotateTo = -10;
if (Player._x > -45) {
Player._x = Player._x - nPlayerSpeed;
}
if (Player._y <= -45) {
break;
}
Player._y = Player._y - nPlayerSpeed;
}
if (Player._rotation < nRotateTo) {
Player._rotation = Player._rotation + nPlayerRotation;
}
if (Player._rotation > nRotateTo) {
Player._rotation = Player._rotation - nPlayerRotation;
}
txtTime.text = Song_GetTimeRemaining(BSTime_FULL);
play();
Frame 20
gotoAndPlay ("Game Loop");
Frame 21
gotoAndPlay ("Game Loop");
Frame 22
nextFrame();
Frame 23
DeconstructBeatScript();
nScore = nScore + (5000 * nLives);
SFX.setPan(0);
if (nLives <= 0) {
SFX.gotoAndPlay("Boo");
}
if (nLives > 0) {
SFX.gotoAndPlay("Cheer");
}
stop();
Frame 24
prevFrame();
Symbol 6 MovieClip Frame 1
Filler._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
play();
Symbol 6 MovieClip Frame 2
if (_root.getBytesLoaded() >= _root.getBytesTotal()) {
_root.gotoAndPlay("Start");
} else {
gotoAndPlay (1);
}
Symbol 91 MovieClip Frame 141
gotoAndPlay ("bb");
Symbol 181 MovieClip Frame 100
stop();
Symbol 182 MovieClip Frame 240
_root.gotoAndStop("Main Menu");
Symbol 195 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 246 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 250 Button
on (release) {
getURL ("http://whiteninja.freehostia.com/index.cgi?rg=technosurff", "_blank");
}
Symbol 271 Button
on (release) {
sSection = "Song Select";
}
Symbol 278 Button
on (release) {
_root.gotoAndStop("Song Select");
}
Symbol 279 Button
on (release) {
sSection = "How To Play";
gotoAndPlay ("Hide");
}
Symbol 280 Button
on (release) {
sSection = "Credits";
gotoAndPlay ("Hide");
}
Symbol 282 MovieClip Frame 1
if (_root.bFromSongSelect) {
gotoAndStop ("On");
}
play();
Symbol 282 MovieClip Frame 75
stop();
Symbol 282 MovieClip Frame 76
play();
Symbol 282 MovieClip Frame 100
stop();
_root.gotoAndPlay(sSection);
Symbol 355 Button
on (release) {
_root.bFromSongSelect = false;
_root.gotoAndStop("Main Menu");
}
Symbol 356 MovieClip Frame 1
play();
Symbol 356 MovieClip Frame 31
stop();
Symbol 359 MovieClip Frame 1
play();
Symbol 359 MovieClip Frame 250
stop();
_root.gotoAndStop("Main Menu");
Symbol 361 Button
on (release) {
gotoAndPlay ("Hide");
}
Symbol 363 Button
on (release) {
_root.nSong = 4;
_root.gotoAndStop("Game Setup");
}
Symbol 365 Button
on (release) {
_root.nSong = 3;
_root.gotoAndStop("Game Setup");
}
Symbol 367 Button
on (release) {
_root.nSong = 5;
_root.gotoAndStop("Game Setup");
}
Symbol 369 Button
on (release) {
_root.nSong = 6;
_root.gotoAndStop("Game Setup");
}
Symbol 371 Button
on (release) {
_root.nSong = 7;
_root.gotoAndStop("Game Setup");
}
Symbol 373 Button
on (release) {
_root.nSong = 2;
_root.gotoAndStop("Game Setup");
}
Symbol 375 Button
on (release) {
_root.nSong = 1;
_root.gotoAndStop("Game Setup");
}
Symbol 377 Button
on (release) {
_root.nSong = 0;
_root.gotoAndStop("Game Setup");
}
Symbol 378 MovieClip Frame 1
play();
Symbol 378 MovieClip Frame 28
stop();
Symbol 378 MovieClip Frame 29
play();
Symbol 378 MovieClip Frame 56
stop();
_root.bFromSongSelect = true;
_root.gotoAndStop("Main Menu");
Symbol 401 MovieClip Frame 1
stop();
Symbol 401 MovieClip Frame 6
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 65
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 281
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 329
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 361
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 379
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 404
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 429
gotoAndStop ("Off");
Symbol 401 MovieClip Frame 439
gotoAndStop ("Off");
Symbol 405 Button
on (release) {
_root.gotoAndStop("Game Setup");
}
Symbol 407 Button
on (release) {
_root.bFromSongSelect = false;
_root.gotoAndStop("Main Menu");
}
Symbol 415 MovieClip Frame 1
play();
Symbol 415 MovieClip Frame 45
txtScore.text = _root.nScore;
stop();
Instance of Symbol 411 MovieClip "btnSubmit" in Symbol 415 MovieClip Frame 45
on (release) {
var sLevelName = "surface";
switch (_root.nSong) {
case 0 :
sLevelName = "surface";
break;
case 1 :
sLevelName = "speedofsound";
break;
case 2 :
sLevelName = "alternatedimension";
break;
case 3 :
sLevelName = "closecombat";
break;
case 4 :
sLevelName = "walkalone";
break;
case 5 :
sLevelName = "unhinged";
break;
case 6 :
sLevelName = "thetraveller";
break;
case 7 :
sLevelName = "questionoffate";
}
if ((_parent.txtName.text != "") and (_parent.txtName.text != "Your Name Here")) {
loadVariables ((((("http://whiteninja.freehostia.com/highscoresend.cgi?u=adman&i=94JGV-CK3I9-IREJD&g=technosurff&l=" + sLevelName) + "&n=") + _parent.txtName.text) + "&s=") + _root.nScore, _root);
_parent.btnSubmit._x = _parent.btnSubmit._x + 400;
getURL ("http://whiteninja.freehostia.com/customcgi/technosurffhighscores.cgi?" + sLevelName, TechnoSurff);
}
}