Frame 1
_root.gVersionNum = "1.0";
fscommand ("showmenu", "false");
pLoadInit = false;
pTrackLoadCalled = false;
if (/:gGameID eq "") {
Set("/:gGameID", "game_taz_skate_pipe");
}
if (/:gHSRoot_swf eq "") {
Set("/:gHSRoot_swf", "/games/med/");
}
if (/:gHSRoot_jsp eq "") {
Set("/:gHSRoot_jsp", "/web/load_variables/games/");
}
if (/:gHSRoot_top100 eq "") {
Set("/:gHSRoot_top100", "/web/games/");
}
function cGame() {
this.piLevelTime = 0;
this.piStartTime = 0;
this.piScore = 0;
_root.giScore = 0;
this.piScoreDelay = 0;
this.piLevel = 1;
this.piTotalScore = 0;
_root.giTotalScore = 0;
this.paLevelScores = new Array(0, 0, 0);
this.psTime = "90";
_root.gsTime = this.psTime;
this.psLevel1 = "";
this.psLevel2 = "";
this.psLevel3 = "";
_root.gsLevel1 = this.psLevel1;
_root.gsLevel2 = this.psLevel2;
_root.gsLevel3 = this.psLevel3;
}
cGame.prototype.mGoLevel = function (liLevel) {
this.piLevel = liLevel;
_root.gotoAndPlay("NextLevel");
};
cGame.prototype.mStartLevel = function () {
this.poBackground = new cBGObject(_root.bg_bg, _root.bg_cl, _root.bg_fg);
this.piLevelTime = 90;
this.piScore = 0;
_root.giScore = 0;
this.psScoreMsg = "";
this.psStickScoreMsg = "";
this.psWipeScoreMsg = "";
this.psTrickMsg = "";
this.piTrickScore = 0;
var liJump;
if (this.piLevel == 1) {
liJump = 1;
} else if (this.piLevel == 2) {
liJump = 1.2;
} else {
liJump = 1.4;
}
this.poPlayer = new cPlayer(liJump);
this.psTime = String(piLevelTime);
_root.gsTime = this.psTime;
this.piStartTime = getTimer();
_root.gsWipeScoreMsg = this.psWipeScoreMsg;
_root.gsStickScoreMsg = this.psStickScoreMsg;
_root.gsScoreMsg = this.psScoreMsg;
_root.gsTrickMsg = this.psTrickMsg;
};
cGame.prototype.mLevelDone = function () {
this.poPlayer.mDispose();
this.poBackground.mDispose();
this.mWipeDone();
this.paLevelScores[this.piLevel - 1] = this.piScore;
this.piTotalScore = 0;
i = 0;
while (i < 3) {
this.piTotalScore = this.piTotalScore + this.paLevelScores[i];
i++;
}
_root.giTotalScore = this.piTotalScore;
stopAllSounds();
this.psLevel1 = "";
this.psLevel2 = "";
this.psLevel3 = "";
if (0 < this.paLevelScores[0]) {
this.psLevel1 = "Last: " + this.paLevelScores[0];
}
if (0 < this.paLevelScores[1]) {
this.psLevel2 = "Last: " + this.paLevelScores[1];
}
if (0 < this.paLevelScores[2]) {
this.psLevel3 = "Last: " + this.paLevelScores[2];
}
_root.gsLevel1 = this.psLevel1;
_root.gsLevel2 = this.psLevel2;
_root.gsLevel3 = this.psLevel3;
if (this.piScore >= 2000) {
this.mPlaySound("cheers.wav");
} else {
this.mPlaySound("awww.wav");
}
if (this.piTotalScore < 2000) {
gotoAndPlay (55);
} else {
gotoAndPlay (46);
}
};
cGame.prototype.mUpdate = function () {
var liRemaining = (this.piLevelTime - int((getTimer() - this.piStartTime) / 1000));
this.psTime = String(liRemaining);
_root.gsTime = this.psTime;
if (liRemaining == 0) {
this.mLevelDone();
} else {
this.poPlayer.mUpdate();
}
if (this.piScoreDelay < getTimer()) {
this.mWipeDone();
}
};
cGame.prototype.mTryScore = function (liScore, lsTrick, liCount) {
if (0 < this.piTrickScore) {
this.psTrickMsg = (this.psTrickMsg + " + ") + lsTrick;
} else {
this.psTrickMsg = lsTrick;
}
this.piTrickScore = this.piTrickScore + liScore;
this.psScoreMsg = this.piTrickScore + " points";
this.psWipeScoreMsg = "";
this.psStickScoreMsg = "";
this.piScoreDelay = getTimer() + 10000;
if (1 < liCount) {
this.psScoreMsg = this.psScoreMsg + (" x " + liCount);
}
_root.gsWipeScoreMsg = this.psWipeScoreMsg;
_root.gsStickScoreMsg = this.psStickScoreMsg;
_root.gsScoreMsg = this.psScoreMsg;
_root.gsTrickMsg = this.psTrickMsg;
};
cGame.prototype.mStartGrind = function (lbAdd, liCount) {
if (lbAdd) {
if (0 < this.piTrickScore) {
this.psTrickMsg = this.psTrickMsg + " + Grind";
} else {
this.psTrickMsg = "Grind";
this.piTrickScore = this.piTrickScore + 1;
}
}
this.psScoreMsg = this.piTrickScore + " points";
this.psWipeScoreMsg = "";
this.psStickScoreMsg = "";
this.piScoreDelay = getTimer() + 10000;
if (1 < liCount) {
this.psScoreMsg = this.psScoreMsg + (" x " + liCount);
}
_root.gsWipeScoreMsg = this.psWipeScoreMsg;
_root.gsStickScoreMsg = this.psStickScoreMsg;
_root.gsScoreMsg = this.psScoreMsg;
_root.gsTrickMsg = this.psTrickMsg;
};
cGame.prototype.mStickScore = function (liCount) {
var liScore = (this.piTrickScore * liCount);
if (200 < liScore) {
this.mPlaySound("cheers.wav");
}
this.piScore = this.piScore + liScore;
_root.giScore = this.piScore;
this.piTrickScore = 0;
this.psWipeScoreMsg = "";
this.psStickScoreMsg = this.psScoreMsg;
this.piScoreDelay = getTimer() + 1000;
_root.gsWipeScoreMsg = this.psWipeScoreMsg;
_root.gsStickScoreMsg = this.psStickScoreMsg;
_root.gsScoreMsg = this.psScoreMsg;
_root.gsTrickMsg = this.psTrickMsg;
};
cGame.prototype.mWipeScore = function () {
this.piTrickScore = 0;
this.psWipeScoreMsg = this.psScoreMsg;
this.psStickScoreMsg = "";
this.mPlaySound("awww.wav");
_root.gsWipeScoreMsg = this.psWipeScoreMsg;
_root.gsStickScoreMsg = this.psStickScoreMsg;
_root.gsScoreMsg = this.psScoreMsg;
_root.gsTrickMsg = this.psTrickMsg;
};
cGame.prototype.mWipeDone = function () {
this.psScoreMsg = "";
this.psStickScoreMsg = "";
this.psWipeScoreMsg = "";
this.psTrickMsg = "";
_root.gsScoreMsg = "";
_root.gsStickScoreMsg = "";
_root.gsWipeScoreMsg = "";
_root.gsTrickMsg = "";
};
cGame.prototype.mPlaySound = function (lsSound) {
loSound = new Sound();
loSound.attachSound(lsSound);
loSound.start();
};
function cPoint(liX, liY) {
this.x = liX;
this.y = liY;
}
function cPoint3D(liX, liY, liZ) {
this.x = liX;
this.y = liY;
this.z = liZ;
}
cPoint3D.prototype.mAdd = function (lpAdd) {
this.x = this.x + lpAdd.x;
this.y = this.y + lpAdd.y;
this.z = this.z + lpAdd.z;
};
function cBGObject(bg_clip, cl_clip, fg_clip) {
this.pBGClip = bg_clip;
this.pCLClip = cl_clip;
this.pFGClip = fg_clip;
this.pStatsClip = _root.stats_clip;
this.pStartX = this.pBGClip._x;
this.pStartY = this.pBGClip._y;
cl_clip.duplicateMovieClip("bg_cl2", 230);
this.pCLClip = _root.bg_cl2;
cl_clip._visible = 0;
fg_clip.duplicateMovieClip("bg_fg2", 240);
this.pFGClip = _root.bg_fg2;
fg_clip._visible = 0;
this.pStatsClip.duplicateMovieClip("stats2", 300);
this.pStatsClip = _root.stats2;
}
cBGObject.prototype.mSync = function (liX, liY) {
this.pBGClip._x = this.pStartX - liX;
this.pBGClip._y = this.pStartY + liY;
this.pCLClip._x = this.pStartX - liX;
this.pCLClip._y = this.pStartY + liY;
this.pFGClip._x = this.pStartX - liX;
this.pFGClip._y = this.pStartY + liY;
};
cBGObject.prototype.mDispose = function () {
this.pFGClip._visible = false;
this.pCLClip._visible = false;
this.pStatsClip._visible = false;
_root.bg_fg2._visible = false;
_root.bg_cl2._visible = false;
this.pBGClip.removeMovieClip();
this.pCLClip.removeMovieClip();
this.pFGClip.removeMovieClip();
this.pStatsClip.removeMovieClip();
_root.bg_fg2.removeMovieClip();
_root.bg_cl2.removeMovieClip();
};
function cPlayer(lsClipType) {
this.mSetup(lsClipType);
}
cPlayer.prototype.mSetup = function (liJump) {
this.psName = "character";
this.piCharacterScale = 65;
attachMovie("taz_clip2", this.psName, 200);
this.pmClip = eval (this.psName);
this.pmClip._xscale = this.piCharacterScale;
this.pmClip._yscale = this.piCharacterScale;
this.piDistPerSec = 240;
this.piSpeed = 0;
this.piJump = liJump;
this.piGravPerSec = 1;
this.piGravity = 0;
this.piLastTime = 0;
this.pbJump = false;
this.pbSnap = true;
this.piZSnap = 2;
this.piZTarget = 0;
this.piRail = 0;
this.psPipe = "left";
this.pbPipe = true;
this.pbLip = false;
this.psAnimState = "idle";
this.psNextMove = "";
this.pbMoveDone = true;
this.pbWipeout = false;
this.pbIdle = true;
this.ppVelocity = new cPoint3D(0, 0, 0);
this.piDirection = 1;
this.ppMin3D = new cPoint3D(-200, -200, 0);
this.ppMax3D = new cPoint3D(200, 261, 0);
this.ppPos3D = new cPoint3D(0, 0, 0);
this.ppPosition = new cPoint(0, 0);
this.ppShadowPos3D = new cPoint3D(0, 0, 0);
this.ppShadowPos = new cPoint(0, 0);
this.piNextSec = 0;
this.psFPS = "";
_root.gsFPS = this.psFPS;
this.piFrameCount = 0;
this.pbFrameRate = false;
};
cPlayer.prototype.mUpdate = function () {
this.mSetSpeed();
this.mCheckBounds();
this.ppPos3D.x = _root.bg_cl.shadow_clip._x;
this.piRotation = _root.bg_cl.shadow_clip._rotation;
this.piGround = this.mCalculateGround(this.ppPosition.x);
if (!this.pbJump) {
this.ppPos3D.y = this.piGround * -1;
}
this.mCalculateGravity();
this.ppPos3D.x = this.ppPos3D.x + (this.ppVelocity.x * this.piSpeed);
this.ppPos3D.y = this.ppPos3D.y + (this.ppVelocity.y * this.piSpeed);
this.ppPos3D.z = 0;
this.mSetAnimation();
this.ppShadowPos3D.x = this.ppShadowPos3D.x + (this.ppVelocity.x * this.piSpeed);
this.ppPosition.x = this.ppPos3D.x + (this.ppPos3D.z * 0.5155);
if (this.pbJump) {
var liGround = 0;
var liRail = 0;
} else {
var liGround = 0;
var liRail = this.piRail;
}
this.ppPosition.y = ((this.ppPos3D.y - liGround) - liRail) + (this.ppPos3D.z * 0.8599);
var liDX = this.ppPosition.x;
if (this.ppPosition.y < 0) {
var liDY = (this.ppPosition.y * 0.1);
} else {
var liDY = this.ppPosition.y;
}
this.pmClip._x = 250 + liDX;
this.pmClip._y = 187 + liDY;
if (this.pbMoveDone) {
this.pmClip._rotation = this.piRotation;
}
if (this.ppPosition.y < 0) {
_root.goGame.poBackground.mSync(0, -this.ppPosition.y);
} else {
_root.goGame.poBackground.mSync(0, 0);
}
};
cPlayer.prototype.mCheckBounds = function () {
if ((((this.ppPos3D.x - (this.ppPos3D.z * 0.5155)) + (this.ppVelocity.x * this.piSpeed)) < this.ppMin3D.x) or (this.ppMax3D.x < ((this.ppPos3D.x - (this.ppPos3D.z * 0.5155)) + (this.ppVelocity.x * this.piSpeed)))) {
this.ppVelocity.x = this.ppVelocity.x * -1;
this.piDirection = this.piDirection * -1;
}
if (((this.ppPos3D.z + (this.ppVelocity.z * this.piSpeed)) < this.ppMin3D.z) or (this.ppMax3D.z < (this.ppPos3D.z + (this.ppVelocity.z * this.piSpeed)))) {
this.ppVelocity.z = this.ppVelocity.z * -1;
}
};
cPlayer.prototype.mCalculateGravity = function () {
var liY = (this.ppPos3D.y * -1);
if (this.piGround < liY) {
this.ppVelocity.y = this.ppVelocity.y + this.piGravity;
this.pbPipe = false;
} else if (liY < this.piGround) {
this.ppPos3D.y = this.piGround * -1;
this.ppShadowPos3D.y = 0;
this.ppVelocity.y = 0;
this.pbJump = false;
this.pbPipe = true;
if ((this.pbMoveDone == false) and (this.pbWipeout == false)) {
this.mWipeout();
} else {
if (this.psPipe == "left") {
this.psPipe = "right";
} else {
this.psPipe = "left";
}
_root.bg_cl.gotoAndPlay(this.psPipe);
this.ppPos3D.y = this.mCalculateGround(0) * -1;
if (this.psPipe == "left") {
this.piDirection = 1;
} else {
this.piDirection = -1;
}
}
if ((this.pbWipeout == false) and (0 < this.piTrickCount)) {
if (this.piRail == 0) {
_root.goGame.mStickScore(this.piTrickCount);
this.piTrickCount = 0;
}
}
}
};
cPlayer.prototype.mSteer = function (liHDir, liVDir) {
if (this.pbWipeout) {
return(undefined);
}
this.piHDir = 0;
this.piVDir = 0;
if ((liHDir == 0) && (liVDir == 0)) {
return(undefined);
}
if (this.pbIdle) {
this.psAnimState = "Start";
} else if ((!this.pbJump) and (this.piRail == 0)) {
this.piHDir = liHDir;
this.piVDir = liVDir;
}
};
cPlayer.prototype.mAction = function (liHDir, liVDir) {
if (this.pbWipeout) {
return(undefined);
}
var liTrick = 0;
if (liHDir == 1) {
liTrick = 1;
} else if (liHDir == 2) {
liTrick = 2;
} else if (liVDir == 1) {
liTrick = 3;
} else if (liVDir == 2) {
liTrick = 4;
}
if (this.pbIdle) {
this.psAnimState = "Start";
return(undefined);
}
if (this.pbPipe && (!this.pbLip)) {
return(undefined);
}
if (!this.pbJump) {
var laTricks = ["trick 6", "trick 6b", "trick 7", "trick 7a", "trick 7b"];
var laTrickNames = ["Lip Balance", "540 Grab Lip Balance", "Handstand", "Handstand Frontflip Grab", "Handgrab Flip"];
var laScores = [50, 60, 100, 75, 25];
} else {
var laTricks = ["trick 2b", "trick 2", "trick 2c", "trick 3", "trick 5a"];
var laTrickNames = ["Grab", "360 Grab", "720 Grab", "Taz Whirlwind", "Superman Grab"];
var laScores = [25, 30, 60, 100, 50];
}
if (this.pbMoveDone) {
this.psAnimState = laTricks[liTrick];
this.pbMoveDone = false;
this.piLastTrick = liTrick;
this.piTrickCount++;
_root.goGame.mTryScore(laScores[liTrick], laTrickNames[liTrick], this.piTrickCount);
} else if ((this.psNextMove == "") and (liTrick != this.piLastTrick)) {
this.psNextMove = laTricks[liTrick];
this.piLastTrick = liTrick;
this.piNextScore = laScores[liTrick];
this.psNextTrickName = laTrickNames[liTrick];
}
};
cPlayer.prototype.mZSnap = function (liVDir) {
this.ppPos3D.z = 100;
};
cPlayer.prototype.mCheckZTrans = function () {
};
cPlayer.prototype.mCheckCollisions = function () {
};
cPlayer.prototype.mSetAnimation = function () {
var lsAnim;
lsAnim = this.psAnimState;
if (this.piDirection == -1) {
this.pmClip._xscale = this.piCharacterScale * -1;
} else {
this.pmClip._xscale = this.piCharacterScale;
}
if (lsAnim != this.psPrevAnim) {
this.pmClip.gotoAndPlay(lsAnim);
}
this.psPrevAnim = lsAnim;
this.piLastY = this.piGround;
};
cPlayer.prototype.mCalculateGround = function (x) {
y = _root.bg_cl.shadow_clip._y * -1;
return(y);
};
cPlayer.prototype.mSetSpeed = function () {
var lfRatio = 0.1;
var liFrameTime = iFrameRateTimer.milliseconds();
var liFrameRate = Math.round((1 / liFrameTime) * 1000);
if (this.pbFrameRate) {
this.psFPS = liFrameRate + " fps";
} else {
this.psFPS = "";
}
_root.gsFPS = this.psFPS;
iFrameRateTimer.restartTimer();
this.piSpeed = this.piDistPerSec * lfRatio;
this.piGravity = this.piGravPerSec * lfRatio;
this.piLastTime = getTimer();
};
cPlayer.prototype.mMoveDone = function () {
var laRides = ["ride1", "ride2", "ride3"];
if (this.pbWipeout) {
return(undefined);
}
this.pbLip = false;
if (this.psNextMove == "") {
this.pbMoveDone = true;
this.psAnimState = laRides[Math.floor(Math.random() * laRides.length)];
if (this.psPipe == "left") {
this.piDirection = -1;
} else {
this.piDirection = 1;
}
if (this.ppVelocity.y == 0) {
if (this.psPipe == "left") {
this.psPipe = "right";
} else {
this.psPipe = "left";
}
_root.bg_cl.gotoAndPlay(this.psPipe);
this.ppPos3D.y = this.mCalculateGround(0) * -1;
if (this.psPipe == "left") {
this.piDirection = 1;
} else {
this.piDirection = -1;
}
}
} else {
this.piTrickCount++;
this.psAnimState = this.psNextMove;
_root.goGame.mTryScore(this.piNextScore, this.psNextTrickName, this.piTrickCount);
this.piNextScore = 0;
this.psNextTrickName = "";
this.psNextMove = "";
}
};
cPlayer.prototype.mPropelDone = function () {
var laRides = ["ride1", "ride2", "ride3"];
this.pbMoveDone = true;
this.psAnimState = laRides[Math.floor(Math.random() * laRides.length)];
this.psNextMove = "";
};
cPlayer.prototype.mStartDone = function () {
_root.bg_cl.gotoAndPlay(this.psPipe);
this.pbIdle = false;
var laRides = ["ride1", "ride2", "ride3"];
this.pbMoveDone = true;
this.psAnimState = laRides[Math.floor(Math.random() * laRides.length)];
this.psNextMove = "";
this.pbLip = false;
};
cPlayer.prototype.mWipeout = function () {
_root.bg_cl.gotoAndStop("wipeout");
var laMoves = ["Wipeout 1", "Wipeout 2", "Wipeout 3"];
this.psAnimState = laMoves[Math.floor(Math.random() * laMoves.length)];
if (this.psPipe == "left") {
this.piDirection = -1;
} else {
this.piDirection = 1;
}
this.pmClip._rotation = 0;
this.pbWipeout = true;
this.ppVelocity.x = 0;
this.piRail = 0;
this.psNextMove = "";
_root.goGame.mWipeScore();
this.piTrickCount = 0;
};
cPlayer.prototype.mWipeoutDone = function () {
_root.goGame.mWipeDone();
this.psAnimState = "idle";
this.pbWipeout = false;
this.pbMoveDone = true;
_root.bg_cl.gotoAndPlay(1);
this.pbIdle = true;
this.psPipe = "left";
this.pbPipe = true;
this.pbLip = false;
this.piDirection = 1;
};
cPlayer.prototype.mDispose = function () {
this.pmClip.removeMovieClip();
this.pmShadowClip.removeMovieClip();
};
cPlayer.prototype.mPosition = function (liPos) {
if ((this.piHDir == 0) && (this.piVDir == 0)) {
this.pbJump = true;
this.ppPos3D.y = this.mCalculateGround(0) * -1;
this.ppVelocity.y = this.piJump * -1;
this.pbPipe = false;
} else {
_root.goGame.mStickScore(this.piTrickCount);
this.piTrickCount = 0;
this.pmClip._rotation = 0;
this.pbLip = true;
this.mAction(this.piHDir, this.piVDir);
this.pbMoveDone = false;
}
};
function cTimer() {
this.startTime = getTimer();
}
cTimer.prototype.restartTimer = function () {
this.startTime = getTimer();
};
cTimer.prototype.milliseconds = function () {
return(getTimer() - this.startTime);
};
cTimer.prototype.seconds = function () {
return(int((getTimer() - this.startTime) / 1000));
};
iLevelPauseTimer = new cTimer();
iKBDTimer = new cTimer();
iFrameRateTimer = new cTimer();
Frame 2
if (false) {
}
Frame 4
Set("_level0:gWTE_FL", _framesloaded);
Set("_level0:gWTE_PL", int((_level0:gWTE_FL / _level0:gWTE_TF) * 100));
Set("_level0:gWTE_PLtxt", _level0:gWTE_PL add "%");
ifFrameLoaded (68) {
if (true || (truetrue)) {
gotoAndPlay (9);
}
}
if (pLoadInit != true) {
Set("/:gGameState", "LOADING");
pLoadStartTime = int(getTimer() / 1000);
tellTarget ("/hs_scripts") {
call("mLoading");
};
pLoadInit = true;
}
if (/:gHSTrackLoad && (pTrackLoadCalled != true)) {
(((("/tracking.html?game=" add /:gGameID) add "&stage=0&timer=") add pLoadStartTime) add "&random_id=") add pLoadStartTime;
pTrackLoadCalled = true;
}
Frame 6
gotoAndPlay (4);
Frame 9
tellTarget ("/hs_scripts") {
call("mLoaded");
};
Frame 15
_root.goGame = new cGame();
stop();
Frame 20
stop();
Frame 26
stopAllSounds();
if (_root.goGame.piTotalScore >= 2000) {
_root.quitBtn._x = 70;
_root.board2_clip.gotoAndPlay("on");
}
if (_root.goGame.piTotalScore >= 5000) {
_root.board3_clip.gotoAndPlay("on");
}
Frame 27
stop();
Frame 31
stopAllSounds();
_root.goGame.mStartLevel();
tellTarget ("/hs_scripts") {
call("mPlay");
};
tellTarget ("/hs_scripts") {
Set("/:gLevel", _root.goGame.piLevel);
call("mLevelStart");
};
Frame 40
_root.goGame.mUpdate();
if (Key.isDown(81)) {
_root.goGame.mLevelDone();
}
var liHDir = 0;
if (Key.isDown(37)) {
liHDir = 1;
} else if (Key.isDown(39)) {
liHDir = 2;
}
var liVDir = 0;
if (Key.isDown(38)) {
liVDir = 1;
} else if (Key.isDown(40)) {
liVDir = 2;
}
if (Key.isDown(32) && (iKBDTimer.milliseconds() >= 250)) {
_root.goGame.poPlayer.mAction(liHDir, liVDir);
iKBDTimer.restartTimer();
} else {
_root.goGame.poPlayer.mSteer(liHDir, liVDir);
}
if (Key.isDown(66)) {
_quality = "BEST";
} else if (Key.isDown(72)) {
_quality = "HIGH";
} else if (Key.isDown(77)) {
_quality = "MEDIUM";
} else if (Key.isDown(76)) {
_quality = "LOW";
} else if (Key.isDown(70)) {
_root.goGame.poPlayer.pbFrameRate = true;
}
Frame 41
gotoAndPlay(_currentframe - 1);
Frame 46
_root.iLevelPauseTimer.restartTimer();
Frame 48
if (3 < _root.iLevelPauseTimer.seconds()) {
_root.gotoAndPlay("play");
}
Frame 49
_root.gotoAndPlay(_currentframe - 1);
Frame 55
_root.iLevelPauseTimer.restartTimer();
tellTarget ("/hs_scripts") {
Set("/:gLevel", _root.goGame.piLevel);
Set("/:gScore", _root.goGame.piTotalScore);
call("mGameOver");
};
Frame 57
if (3 < _root.iLevelPauseTimer.seconds()) {
_root.gotoAndPlay("title");
}
Frame 58
_root.gotoAndPlay(_currentframe - 1);
Frame 76
stop();
Frame 77
if (false) {
}
Symbol 192 MovieClip [taz_clip2] Frame 2
stop();
Symbol 192 MovieClip [taz_clip2] Frame 21
_root.goGame.poPlayer.mStartDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 35
gotoAndPlay (29);
Symbol 192 MovieClip [taz_clip2] Frame 47
gotoAndPlay (41);
Symbol 192 MovieClip [taz_clip2] Frame 59
gotoAndPlay (29);
Symbol 192 MovieClip [taz_clip2] Frame 82
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 109
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 142
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 179
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 197
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 220
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 253
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 281
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 314
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 361
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 407
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 424
_root.goGame.poPlayer.mMoveDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 468
_root.goGame.poPlayer.mWipeoutDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 525
_root.goGame.poPlayer.mWipeoutDone();
stop();
Symbol 192 MovieClip [taz_clip2] Frame 614
_root.goGame.poPlayer.mWipeoutDone();
stop();
Symbol 202 MovieClip [taz_clip] Frame 7
gotoAndPlay(_currentframe - 1);
Symbol 202 MovieClip [taz_clip] Frame 14
gotoAndPlay(_currentframe - 1);
Symbol 202 MovieClip [taz_clip] Frame 19
stop();
Symbol 202 MovieClip [taz_clip] Frame 24
stop();
Symbol 202 MovieClip [taz_clip] Frame 30
stop();
Symbol 202 MovieClip [taz_clip] Frame 36
stop();
Symbol 202 MovieClip [taz_clip] Frame 43
Symbol 202 MovieClip [taz_clip] Frame 50
Symbol 238 MovieClip Frame 1
/:gHSRoot_swf add "HSScripts.swf";
Symbol 238 MovieClip Frame 4
stop();
Symbol 251 Button
on (release) {
gotoAndPlay (26);
}
Symbol 256 Button
on (release) {
gotoAndPlay (20);
}
Symbol 279 Button
on (release, keyPress "p") {
print ("");
}
Symbol 292 Button
on (release) {
_root.goGame.mGoLevel(2);
}
Symbol 295 MovieClip Frame 1
stop();
Symbol 295 MovieClip Frame 10
stop();
Symbol 300 Button
on (release) {
_root.goGame.mGoLevel(3);
}
Symbol 302 MovieClip Frame 1
stop();
Symbol 302 MovieClip Frame 10
stop();
Symbol 307 Button
on (release) {
_root.goGame.mGoLevel(1);
}
Symbol 309 MovieClip Frame 1
gotoAndPlay (10);
Symbol 309 MovieClip Frame 10
stop();
Symbol 317 Button
on (release) {
stopAllSounds();
if (_root.giTotalScore == 0) {
_root.giTotalScore = 1;
}
sendscore = new LoadVars();
sendscore.gname = "tazskatepipe";
sendscore.gscore = _root.giTotalScore;
sendscore.send("index.php?act=Arcade&do=newscore", "_self", "POST");
stop();
}
Symbol 334 MovieClip Frame 1
stop();
Symbol 334 MovieClip Frame 17
_root.goGame.poPlayer.mPosition(2);
stop();
Symbol 334 MovieClip Frame 33
_root.goGame.poPlayer.mPosition(1);
stop();
Symbol 352 MovieClip Frame 1
if (_root.giTotalScore == 0) {
_root.giTotalScore = 1;
}
sendscore = new LoadVars();
sendscore.gname = "tazskatepipe";
sendscore.gscore = _root.giTotalScore;
sendscore.send("index.php?act=Arcade&do=newscore", "_self", "POST");
stop();