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

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

striperella_game.swf

This is the info page for
Flash #50828

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


Text
12345678

123456789

Game Loading...

High Score Scripts Placeholder

Min high score:

na

Min high score:

na

Play

Playing
("q" to quit)

12345678

Playing
("q" to quit)

12345678

Playing
("q" to quit)

12345678

12345678

High Score Placeholder

123456789

Reset

ActionScript [AS1/AS2]

Frame 1
_root.bottleHit = new Sound("_root"); _root.bottleHit.attachSound("bottleHit"); _root.trans = new Sound("_root"); _root.trans.attachSound("transSound"); _root.braHit = new Sound("_root"); _root.braHit.attachSound("braHit"); _root.bootHit = new Sound("_root"); _root.bootHit.attachSound("bootHit"); _root.greaseDrop = new Sound("_root"); _root.greaseDrop.attachSound("greaseDrop"); _root.bonusSound = new Sound("_root"); _root.bonusSound.attachSound("bonusSound"); _root.gameLevel = 1; _root.gameLives = 3; _root.gScore = 0; _root.fallingObjectRate = 4; _root.poleGreaseRate = 4; _root.randomRate = 15; _root.numOfPoles = 13; _root.numOfStages = 10; _root.bonusNum = 1000; _root.jumpCounter = 0; _root.lockSpaceKey = false; _root.stNum = 10000; _root.stage1poles = ["pole1", "pole2", "pole4"]; _root.stage2poles = ["pole3"]; _root.stage4poles = ["pole4", "pole5"]; _root.pole1stages = ["stage1"]; _root.pole2stages = ["stage1", "stage2", "stage3"]; _root.pole3stages = ["stage2"]; _root.pole4stages = ["stage1", "stage2"]; _root.pole5stages = ["stage2", "stage4"]; _root.pole8stages = ["stage6"]; _root.pole9stages = ["stage8"]; _root.pole10stages = ["stage7"]; _root.pole11stages = ["stage7"]; _root.pole12stages = ["stage8", "stage9"]; _root.pole13stages = ["stage8"]; _root.foNum = 100; _root.gDropList = new Object(); _root.greaseNum = 1100; _root.greaseDropList = new Object(); function poleGreaseDoStuff() { var currentObj = _root.greaseDropList; while (currentObj != null) { if (currentObj.state == "growing") { currentObj.grow(); } if (currentObj.state == "drop") { currentObj.drop(); } currentObj = currentObj.pNext; } } function foDrop() { var currentObj = _root.gDropList; while (currentObj != null) { currentObj.fall(); if (375 < currentObj.pId._y) { currentObj.kill(); } currentObj = currentObj.pNext; } } function killAllObjects() { var currentObj = _root.greaseDropList; while (currentObj != null) { currentObj.kill(); currentObj = currentObj.pNext; } var currentObj = _root.gDropList; while (currentObj != null) { currentObj.kill(); currentObj = currentObj.pNext; } } function Stripperella() { this.pClip = "striperella"; this.pNum = _root.stNum; _root.stNum++; this.pId = this.pNum + this.pClip; attachMovie(this.pClip, this.pId, this.pNum); this.pId = eval (this.pId); this.pId.parent = this; this.pId.gotoAndPlay("Stand"); this.pId._xscale = 9.5; this.pId._yscale = 9.5; var stage = eval (("_root.level" + _root.gameLevel) + "stage1"); this.pId._x = stage._x + (this.pId._width / 2); this.pId._y = stage._y - (this.pId._height / 2); this.canComplete = false; this.moving = null; this.jumpDir = null; this.poleSide = null; this.reach = null; this.pole = null; this.poleName = null; this.stage = null; this.stagePoles = null; this.poleStages = null; this.canPole = false; this.onPole = false; this.onTwoPoles = false; } Stripperella.prototype.setStage = function (offset) { var dif = (100 + offset); if (this.stage == null) { this.pId.body_hit._y = this.pId.body_hit._y + dif; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.body_hit.hitTest(stage)) { this.stage = stage; this.stagePoles = eval (("_root.stage" + i) + "poles"); if (i == _root.numOfStages) { this.canComplete = true; } this.pId.body_hit._y = this.pId.body_hit._y - dif; return(undefined); } i++; } this.pId.body_hit._y = this.pId.body_hit._y - dif; this.stage = null; } }; Stripperella.prototype.getPoleJump = function () { if (!this.onPole) { i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); var poleStages = eval (("_root.pole" + i) + "stages"); if (this.pId.body_hit.hitTest(pole)) { this.pole = pole; this.poleStages = poleStages; this.onPole = true; if (this.pId._x < this.pole._x) { this.reach = "left"; this.orientateToPole("left"); } else { this.reach = "right"; this.orientateToPole("right"); } return(undefined); } i++; } this.pole = null; this.onPole = false; } }; Stripperella.prototype.setTwoPoles = function () { var left = false; var right = false; i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); if (this.pId.left_hand.hitTest(pole)) { left = true; } if (this.pId.right_hand.hitTest(pole)) { right = true; } i++; } if (left && (right)) { this.onTwoPoles = true; } else { this.onTwoPoles = false; } }; Stripperella.prototype.sheHitPole = function () { i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); if (this.pId.hitTest(pole)) { return(pole); } i++; } }; Stripperella.prototype.getPole = function (side) { i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); if (this.pId.left_hand.hitTest(pole)) { if (0 < this.pId._xscale) { if (side == "left") { this.poleName = poleName; this.poleStages = eval (("_root." + poleName) + "stages"); return(pole); } } else if (side == "right") { this.poleName = poleName; this.poleStages = eval (("_root." + poleName) + "stages"); return(pole); } } if (this.pId.right_hand.hitTest(pole)) { if (0 < this.pId._xscale) { if (side == "right") { this.poleName = poleName; this.poleStages = eval (("_root." + poleName) + "stages"); return(pole); } } else if (side == "left") { this.poleName = poleName; this.poleStages = eval (("_root." + poleName) + "stages"); return(pole); } } i++; } }; Stripperella.prototype.doMovement = function (obj) { if (this.stage == null) { this.setStage(); } if (this.moving == "jumping") { _root.lockSpaceKey = true; if (4 >= _root.jumpCounter) { this.pId._y = this.pId._y - 5; if (this.jumpDir == "right") { this.pId._x = this.pId._x + 4; } if (this.jumpDir == "left") { this.pId._x = this.pId._x - 4; } } else { this.getPoleJump(); if (this.pole != null) { return(undefined); } this.pId._y = this.pId._y + 6; if (this.pId._y >= 375) { this.fall(true); } if (this.jumpDir == "right") { this.pId._x = this.pId._x + 4; } if (this.jumpDir == "left") { this.pId._x = this.pId._x - 4; } this.stage = null; this.setStage(); if ((this.stage != null) && (6 < _root.jumpCounter)) { _root.lockSpaceKey = false; this.standStill(); this.jumpDir = null; this.moving = null; _root.jumpCounter = 0; } } _root.jumpCounter++; return(undefined); } if ((this.moving == "falling") || (this.moving == "fallPerm")) { this.fall(); return(undefined); } if ((obj.up && (!obj.left)) && (!obj.right)) { this.climbUp(); } if (this.onPole) { if ((obj.down && (!obj.left)) && (!obj.right)) { this.climbDown(); } } if (!this.onPole) { if ((obj.space && (_root.lockSpaceKey == false)) && (this.moving != "jumping")) { if ((!obj.right) && (!obj.left)) { this.jump(); } if (obj.right && (!obj.left)) { this.jump("right"); } if (obj.left && (!obj.right)) { this.jump("left"); } } else if ((((!obj.space) && (!obj.up)) && (!obj.down)) && (this.moving != "jumping")) { if (obj.left) { this.moveLeft(); } if (obj.right) { this.moveRight(); } } } if (this.onTwoPoles) { if (obj.right) { this.pole = this.getPole("right"); this.reach = "left"; this.orientateToPole("left"); } if (obj.left) { this.pole = this.getPole("left"); this.reach = "right"; this.orientateToPole("right"); } } else { if (this.onPole && (obj.left)) { if (this.poleSide == "left") { this.reachLeft(); } if (this.reach == "right") { this.orientateToPole("right"); } else if (this.reach == null) { this.orientateToPole("left"); } } if (this.onPole && (obj.right)) { if (this.poleSide == "right") { this.reachRight(); } if (this.reach == "left") { this.orientateToPole("left"); } else if (this.reach == null) { this.orientateToPole("right"); } } } if (((obj.noKey && (this.moving != null)) && (!this.onPole)) && (this.moving != "jumping")) { this.standStill(); } if (obj.noKey && (this.onPole)) { this.pId.stop(); this.moving = null; _root.lockSpaceKey = false; } }; Stripperella.prototype.orientateToPole = function (dir) { var canOrientate = false; var offSet = 250; offSet = offSet * ((this.pId._xscale < 0) ? -1 : 1); if ((!this.onTwoPoles) && (this.reach == null)) { if (dir == "right") { this.pId.body_hit._x = this.pId.body_hit._x + offSet; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.body_hit.hitTest(stage)) { this.pId.body_hit._x = this.pId.body_hit._x - offSet; return(false); } i++; } this.pId.body_hit._x = this.pId.body_hit._x - offSet; canOrientate = true; } if (dir == "left") { this.pId.body_hit._x = this.pId.body_hit._x - offSet; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.body_hit.hitTest(stage)) { this.pId.body_hit._x = this.pId.body_hit._x + offSet; return(false); } i++; } this.pId.body_hit._x = this.pId.body_hit._x + offSet; canOrientate = true; } } else { canOrientate = true; } if (canOrientate) { if ((dir == "left") && ((this.poleSide != "left") || (this.reach == "left"))) { if (this.reach == "left") { this.pId.gotoAndStop("PoleClimb_Single"); } this.pId._xscale = ((this.pId._xscale < 0) ? (-this.pId._xscale) : (this.pId._xscale)); this.pId._x = (this.pole._x - (this.pId._width / 2)) + 4; this.poleSide = "left"; this.reach = null; this.onTwoPoles = false; } else if ((dir == "right") && ((this.poleSide != "right") || (this.reach == "right"))) { if (this.reach == "right") { this.pId.gotoAndStop("PoleClimb_Single"); } this.pId._xscale = ((0 < this.pId._xscale) ? (-this.pId._xscale) : (this.pId._xscale)); this.pId._x = this.pole._x + (this.pId._width / 2); this.poleSide = "right"; this.reach = null; this.onTwoPoles = false; } this.canPole = true; this.moving = null; } }; Stripperella.prototype.reachLeft = function () { var canReach = false; var offSet = 230; offSet = offSet * ((this.pId._xscale < 0) ? -1 : 1); if (this.reach != "left") { this.pId.body_hit._x = this.pId.body_hit._x - offSet; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.body_hit.hitTest(stage)) { this.pId.body_hit._x = this.pId.body_hit._x + offSet; return(false); } i++; } this.pId.body_hit._x = this.pId.body_hit._x + offSet; canReach = true; if (canReach) { this.pId.gotoAndStop("poleClimb_Double"); this.reach = "left"; this.moving = null; this.setTwoPoles(); } } else if (this.reach == "left") { this.stage = null; this.setStage(40); if (this.stage != null) { this.reach = null; this.onPole = false; } } }; Stripperella.prototype.reachRight = function () { var canReach = false; var offSet = 230; offSet = offSet * ((this.pId._xscale < 0) ? -1 : 1); if (this.reach != "right") { this.pId.body_hit._x = this.pId.body_hit._x + offSet; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.body_hit.hitTest(stage)) { this.pId.body_hit._x = this.pId.body_hit._x - offSet; return(false); } i++; } this.pId.body_hit._x = this.pId.body_hit._x - offSet; canReach = true; if (canReach) { this.pId.gotoAndStop("poleClimb_Double"); this.reach = "right"; this.moving = null; this.setTwoPoles(); } } else if (this.reach == "right") { this.stage = null; this.setStage(40); if (this.stage != null) { this.reach = null; this.onPole = false; } } }; Stripperella.prototype.fall = function (boolean) { if (boolean || (this.moving == "fallPerm")) { if (this.moving != "fallPerm") { this.pId.gotoAndPlay("Fall"); this.moving = "fallPerm"; this.pId._y = this.pId._y + 10; } this.pId._y = this.pId._y + 7; } else { if (this.moving != "falling") { this.stage = null; this.setStage(150); if (this.stage != null) { this.standStill(); return(undefined); } this.pId.gotoAndPlay("Fall"); this.moving = "falling"; this.pId._y = this.pId._y + 10; } this.pId._y = this.pId._y + 7; i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); var poleStages = eval (("_root.pole" + i) + "stages"); if (this.pId.body_hit.hitTest(pole)) { this.pole = pole; this.poleStages = poleStages; this.stage = null; this.onPole = true; this.moving = null; if (this.pId._xscale < 0) { this.reach = "right"; this.orientateToPole("right"); } else { this.reach = "left"; this.orientateToPole("left"); } this.pId._y = this.pId._y - 10; return(undefined); } i++; } } if (this.pId._y >= 400) { var stage = eval (("_root.level" + _root.gameLevel) + "stage1"); this.pId._x = stage._x + (this.pId._width / 2); this.pId._y = (stage._y - (this.pId._height / 2)) + 6; this.stage = stage; this.standStill(); if (_root.gameLives == 0) { gotoAndStop (65); } var life = eval ("_root.live" + _root.gameLives); life._visible = 0; _root.gameLives = _root.gameLives - 1; } }; Stripperella.prototype.jump = function (dir) { this.pId.gotoAndPlay("jump"); this.moving = "jumping"; _root.jumpCounter = 0; if (dir != "") { this.jumpDir = dir; } }; Stripperella.prototype.moveLeft = function () { this.setStage(); if (_root.lockSpaceKey) { _root.lockSpaceKey = false; } if (this.moving != "left") { this.pId.gotoAndPlay("Run"); this.pId._xscale = ((0 < this.pId._xscale) ? (-this.pId._xscale) : (this.pId._xscale)); if (this.stage != null) { this.pId._y = this.stage._y - (this.pId._height / 2); } this.moving = "left"; this.canPole = false; } if (!this.onPole) { if (0 >= ((this.pId._x - 6) - (this.pId._width / 2))) { return(false); } if (this.stage._x >= (this.pId._x - 6)) { var pole = this.sheHitPole(); if (pole != null) { this.pole = pole; this.reach = "right"; this.orientateToPole("right"); this.onPole = true; return(undefined); } this.fall(true); } this.pId._x = this.pId._x - 12; if ((this.stage == _level0.level1stage9) && (_root.gameLevel == 1)) { this.pId.body_hit._y = this.pId.body_hit._y + 40; if (this.pId.body_hit.hitTest(_level0.level1stage10)) { this.stage = _level0.level1stage10; this.pId._y = this.stage._y - (this.pId._height / 2); this.canComplete = true; } this.pId.body_hit._y = this.pId.body_hit._y - 40; } } }; Stripperella.prototype.moveRight = function () { this.setStage(); if (_root.lockSpaceKey) { _root.lockSpaceKey = false; } if (this.moving != "right") { this.pId.gotoAndPlay("Run"); this.pId._xscale = ((this.pId._xscale < 0) ? (-this.pId._xscale) : (this.pId._xscale)); if (this.stage != null) { this.pId._y = this.stage._y - (this.pId._height / 2); } this.moving = "right"; this.canPole = false; } if (!this.onPole) { if (((this.pId._x + 6) + (this.pId._width / 2)) >= 500) { return(false); } this.pId._x = this.pId._x + 12; if ((this.stage == _level0.level1stage10) && (_root.gameLevel == 1)) { if ((this.pId._x + 6) >= (this.stage._x + this.stage._width)) { this.stage = _level0.level1stage9; this.pId._y = this.stage._y - (this.pId._height / 2); } } if ((this.pId._x + 6) >= (this.stage._x + this.stage._width)) { var pole = this.sheHitPole(); if (pole != null) { this.pole = pole; this.reach = "left"; this.orientateToPole("left"); this.onPole = true; return(undefined); } this.fall(true); } } }; Stripperella.prototype.climbUp = function () { if (!this.canPole) { i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); if (this.pId.hitTest(pole)) { this.pole = pole; this.poleName = poleName; this.canPole = true; } i++; } } if (this.canPole) { if (((this.moving != "up") && (!this.onTwoPoles)) && (this.reach == null)) { this.pId.gotoAndPlay("PoleClimb_Single"); this.moving = "up"; if (!this.onPole) { if (this.pId._xscale < 0) { this.orientateToPole("right"); } else if (0 < this.pId._xscale) { this.orientateToPole("left"); } this.onPole = true; } } if (this.reach == null) { this.stage = null; this.setStage(-250); if (this.stage != null) { return(undefined); } if ((this.pole._y < this.pId._y) && ((this.pole._y + (this.pId._height / 2)) < (this.pId._y - 7))) { this.pId._y = this.pId._y - 7; } } if (this.onTwoPoles) { if (this.moving != "climbUp") { this.pId.gotoAndPlay("poleClimb_Double"); this.moving = "climbUp"; } this.stage = null; this.setStage(-230); if (this.stage != null) { return(undefined); } var leftPole = this.getPole("left"); var rightPole = this.getPole("right"); var minY = ((rightPole._y < leftPole._y) ? (leftPole._y) : (rightPole._y)); if (minY < ((this.pId._y - (this.pId._height / 2)) - 7)) { this.pId._y = this.pId._y - 7; } } } }; Stripperella.prototype.climbDown = function () { if (((this.canPole && (this.reach == null)) && (this.moving != "down")) && (!this.onTwoPoles)) { this.pId.gotoAndPlay("PoleClimb_Single"); this.moving = "down"; } if (this.reach != null) { if (this.onTwoPoles) { if (this.moving != "climbDown") { this.pId.gotoAndPlay("poleClimb_Double"); this.moving = "climbDown"; } var leftPole = this.getPole("left"); var rightPole = this.getPole("right"); var maxY = (((rightPole._y + rightPole._height) < (leftPole._y + leftPole._height)) ? (rightPole._y + rightPole._height) : (leftPole._y + leftPole._height)); var bottomY = (this.pId._y + (this.pId._height / 2)); var topY = ((this.pId._y - (this.pId._height / 2)) + 10); if (topY >= maxY) { return(undefined); } if (!this.pId.hitTest(this.stage)) { this.pId._y = this.pId._y + 7; this.stage = null; this.setStage(100); } else { this.standStill(); } } } if (this.reach == null) { this.stage = null; this.setStage(); if (this.pId.body_hit.hitTest(this.stage) && (this.pId._y < this.stage._y)) { this.standStill(); } if (this.onPole) { if ((this.pole._y + this.pole._height) < (this.pId._y - 7)) { this.fall(); } else { this.pId._y = this.pId._y + 7; } } } }; Stripperella.prototype.standStill = function () { if (!this.onTwoPoles) { if (this.moving == "left") { this.pId._x = this.pId._x - 7.5; } else if (this.moving == "right") { this.pId._x = this.pId._x + 7.5; } } this.pId.gotoAndPlay("Stand"); this.moving = null; this.pId._y = this.stage._y - (this.pId._height / 2); this.poleSide = null; this.reach = null; this.pole = null; this.canPole = false; this.onPole = false; this.onTwoPoles = false; }; function PoleGrease(her, pole) { this.pClip = "grease"; this.pNum = _root.greaseNum; _root.greaseNum++; this.pId = this.pNum + this.pClip; attachMovie(this.pClip, this.pId, this.pNum); this.pId = eval (this.pId); this.pId.parent = this; if (pole == null) { this.pole = eval ((("_root.level" + _root.gameLevel) + "pole") + (1 + Math.floor(Math.random() * _root.numOfPoles))); } else { this.pole = pole; } this.pId._xscale = 1; this.pId._yscale = 1; this.pId._x = this.pole._x + (this.pole._width / 2); this.pId._y = this.pole._y; this.state = "growing"; this.her = her; this.pNext = _root.greaseDropList; _root.greaseDropList = this; this.pPrev = null; this.pNext.pPrev = this; } PoleGrease.prototype.grow = function () { if (this.state == "growing") { this.pId._xscale = this.pId._xscale + 1; this.pId._yscale = this.pId._yscale + 1; this.pId._y = this.pole._y + (this.pId._height / 2); this.pId._x = (this.pole._x + (this.pole._width / 2)) + 1; if (this.pId._width >= (this.pole._width + 3)) { this.state = "drop"; _root.greaseDrop.start(); } } }; PoleGrease.prototype.drop = function () { if (this.state == "drop") { this.pId._y = this.pId._y + 3; if (this.pole == this.her.pole) { if (this.pId.hitTest(this.her.pId) && (this.her.moving != "fallPerm")) { this.her.fall(true); } } else if (this.her.pId.hitTest(this.pole) && (this.her.onPole)) { if (this.pId.hitTest(this.her.pId) && (this.her.moving != "fallPerm")) { this.her.fall(true); } } if ((this.pole._y + this.pole._height) < (this.pId._y + 2)) { this.kill(); } } }; PoleGrease.prototype.kill = function () { this.pId.removeMovieClip(); this.pPrev.pNext = this.pNext; this.pNext.pPrev = this.pPrev; delete this; }; function FallingObjects(her, objX) { var clips = ["boot", "bottle", "bra"]; var num = Math.floor(Math.random() * 3); this.pClip = clips[num]; this.pNum = _root.foNum; _root.foNum++; this.pId = this.pNum + this.pClip; attachMovie(this.pClip, this.pId, this.pNum); this.pId = eval (this.pId); this.pId.parent = this; this.pId._y = -20; this.pId._x = ((objX == null) ? (Math.floor(Math.random() * 500)) : (objX)); this.her = her; this.pNext = _root.gDropList; _root.gDropList = this; this.pPrev = null; this.pNext.pPrev = this; } FallingObjects.prototype.fall = function () { this.pId._y = this.pId._y + 9; if ((this.her.pId.body_hit.hitTest(this.pId) && (this.her.moving != "fallPerm")) && (this.her.moving != "falling")) { if (this.pClip == "bottle") { _root.bottleHit.start(); } if (this.pClip == "bra") { _root.braHit.start(); } if (this.pClip == "boot") { _root.bootHit.start(); } this.her.fall(true); } }; FallingObjects.prototype.kill = function () { this.pId.removeMovieClip(); this.pPrev.pNext = this.pNext; this.pNext.pPrev = this.pPrev; delete this; }; function BonusObject() { this.pClip = "bonus"; this.pNum = _root.bonusNum; _root.bonusNum++; this.pId = this.pNum + this.pClip; attachMovie(this.pClip, this.pId, this.pNum); this.pId = eval (this.pId); this.pId.stop(); this.pId._visible = 0; this.pId._xscale = 70; this.pId._yscale = 70; this.pId._rotation = -90; this.positionSet = false; this.expires = 10; this.hit = false; } BonusObject.prototype.setPosition = function () { this.pId._visible = 0; var rand = (1 + Math.floor(Math.random() * _root.numOfPoles)); var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + rand); if (pole == null) { return(false); } var randY = (pole._y + Math.floor(Math.random() * (pole._y + pole._height))); var randX = ((pole._x - 40) + Math.floor(Math.random() * (pole._x + 40))); if (((randY >= 375) || (0 >= randY)) || ((pole._y + pole._height) < randY)) { return(false); } if ((randX >= 500) || (0 >= randX)) { return(false); } this.pId._x = randX; this.pId._y = randY; i = 1; while (_root.numOfStages >= i) { var stage = eval ((("_root.level" + _root.gameLevel) + "stage") + i); if (this.pId.hitTest(stage)) { return(false); } i++; } i = 1; while (_root.numOfPoles >= i) { var pole = eval ((("_root.level" + _root.gameLevel) + "pole") + i); if (this.pId.hitTest(pole)) { return(false); } i++; } this.positionSet = true; this.hit = false; this.pId._visible = 100; }; BonusObject.prototype.kill = function () { this.pId.play(); this.hit = true; _root.bonusSound.start(); _root.gScore = _root.gScore + 500; }; 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();
Frame 2
_root.gVersionNum = "1.0"; fscommand ("showmenu", "false"); loadVariablesNum ("TestVariables.txt", 0); pLoadInit = false; pTrackLoadCalled = 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 (1) { if ((/hs_scripts/:gLoaded == true) || (/:gHS_bypass == true)) { gotoAndPlay (9); } } if (pLoadInit != true) { Set("/:gGameID", "striperella"); Set("/:gHSRoot_jsp", "/web/spike_tv/stripperella/hs/"); Set("/:gHSRoot_swf", "/spike_tv/stripperella/med/hs/"); Set("/:gGameState", "LOADING"); pLoadStartTime = int(getTimer() / 1000); tellTarget ("/hs_scripts") { call("mLoading"); }; pLoadInit = true; } if (/:gHSTrackLoad && (pTrackLoadCalled != true)) { loadVariablesNum ((((("/tracking.html?game=" add /:gGameID) add "&stage=0&timer=") add pLoadStartTime) add "&random_id=") add pLoadStartTime, 0); pTrackLoadCalled = true; }
Frame 6
gotoAndPlay (4);
Frame 9
tellTarget ("/hs_scripts") { call("mLoaded"); }; _root.trans.onSoundComplete = function () { this.start(); }; _root.trans.start();
Frame 15
stop();
Frame 20
stop(); tellTarget ("/hs_scripts") { call("mPlay"); call("mLevelStart"); };
Frame 25
if (_root.gameLevel == 1) { _root.gameLevel++; } if (_root.levelMovieId != null) { _root.levelMovieId.removeMovieClip(); _root.levelMovieId = null; } if (_root.strChar == null) { _root.strChar = new Stripperella(); _root.strChar.setStage(); } if (_root.strChar.canComplete) { if (_root.strChar.pId.hitTest(_root.levelFinish)) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gotoAndPlay("LevelComplete"); } } _root.strChar.doMovement(_root.gKey); if (_root.mainLoop == null) { stopAllSounds(); _root.mainLoop = new Sound("_root"); _root.mainLoop.attachSound("mainloop"); _root.mainLoop.onSoundComplete = function () { this.start(); }; _root.mainLoop.start(); } if (_root.bonus == null) { _root.bonus = new BonusObject(); } if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } if (_root.bonusTimer == null) { _root.bonusTimer = new cTimer(); } if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (!_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer.restartTimer(); } else if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = new BonusObject(); if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } _root.bonusTimer.restartTimer(); } if ((!_root.bonus.hit) && (_root.strChar.moving != "fallPerm")) { if (_root.strChar.pId.body_hit.hitTest(_root.bonus.pId)) { _root.bonus.kill(); } } if (1 < _root.gameLevel) { if (_root.greaseTimer == null) { _root.greaseTimer = new cTimer(); } if (_root.greaseTimer.seconds() == _root.poleGreaseRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.pg = new PoleGrease(_root.strChar, _root.strChar.pole); } else { _root.pg = new PoleGrease(_root.strChar); } _root.greaseTimer.restartTimer(); } poleGreaseDoStuff(); if (_root.objectTimer == null) { _root.objectTimer = new cTimer(); } if (_root.objectTimer.seconds() == _root.fallingObjectRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.fo = new FallingObjects(_root.strChar, _root.strChar.pId._x); } else { _root.fo = new FallingObjects(_root.strChar); } _root.objectTimer.restartTimer(); } foDrop(); } if (Key.isDown(81)) { _root.gotoAndPlay("GameOver"); } if (Key.isDown(16) && (Key.isDown(53))) { _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; killAllObjects(); _root.gotoAndPlay("Egg"); } if ((Key.isDown(16) && (Key.isDown(49))) && (Key.isDown(13))) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); if (_root.gameLevel < 3) { _root.gotoAndPlay("LevelComplete"); } if (_root.gameLevel == 3) { _root.gotoAndStop("Winner"); } } if (_root.strChar.pole == _level0.level2pole28) { _root.strChar.canComplete = true; } if (_root.strChar.canComplete) { if (_root.strChar.pId.hitTest(_root.levelFinish)) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.checkLives = null; _root.gotoAndPlay("LevelComplete"); } } if (_root.checkLives == null) { _root.checkLives = false; } if (!_root.checkLives) { if (_root.gameLives == 3) { _root.checkLives = true; } if (_root.gameLives == 2) { _root.live3._visible = 0; _root.checkLives = true; } if (_root.gameLives == 1) { _root.live3._visible = 0; _root.live2._visible = 0; _root.checkLives = true; } if (_root.gameLives == 0) { _root.live3._visible = 0; _root.live2._visible = 0; _root.live1._visible = 0; _root.checkLives = true; } } if (_root.level2Objects == null) { _root.level2Objects = false; } if (!_root.level2Objects) { if (_root.strChar._xscale < 0) { _root.strChar._xscale = _root.strChar._xscale * -1; } _root.numOfPoles = 28; _root.numOfStages = 7; _root.fallingObjectRate = 5; _root.poleGreaseRate = 5; _root.randomRate = 12; _root.level2Objects = true; } _root.gKey = {up:Key.isDown(38), down:Key.isDown(40), left:Key.isDown(37), right:Key.isDown(39), space:Key.isDown(32), noKey:((((!Key.isDown(38)) && (!Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(32))}; if (_root.gKey.left && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.left && (_root.gKey.up)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.up)) { _root.gKey.noKey = true; }
Frame 26
gotoAndPlay(_currentframe - 1);
Frame 37
if (_root.gameLevel == 2) { _root.gameLevel++; } if (_root.levelMovieId != null) { _root.levelMovieId.removeMovieClip(); _root.levelMovieId = null; } if (_root.strChar == null) { _root.strChar = new Stripperella(); _root.strChar.setStage(); } if (_root.strChar.canComplete) { if (_root.strChar.pId.hitTest(_root.levelFinish)) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gotoAndPlay("LevelComplete"); } } _root.strChar.doMovement(_root.gKey); if (_root.mainLoop == null) { stopAllSounds(); _root.mainLoop = new Sound("_root"); _root.mainLoop.attachSound("mainloop"); _root.mainLoop.onSoundComplete = function () { this.start(); }; _root.mainLoop.start(); } if (_root.bonus == null) { _root.bonus = new BonusObject(); } if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } if (_root.bonusTimer == null) { _root.bonusTimer = new cTimer(); } if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (!_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer.restartTimer(); } else if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = new BonusObject(); if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } _root.bonusTimer.restartTimer(); } if ((!_root.bonus.hit) && (_root.strChar.moving != "fallPerm")) { if (_root.strChar.pId.body_hit.hitTest(_root.bonus.pId)) { _root.bonus.kill(); } } if (1 < _root.gameLevel) { if (_root.greaseTimer == null) { _root.greaseTimer = new cTimer(); } if (_root.greaseTimer.seconds() == _root.poleGreaseRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.pg = new PoleGrease(_root.strChar, _root.strChar.pole); } else { _root.pg = new PoleGrease(_root.strChar); } _root.greaseTimer.restartTimer(); } poleGreaseDoStuff(); if (_root.objectTimer == null) { _root.objectTimer = new cTimer(); } if (_root.objectTimer.seconds() == _root.fallingObjectRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.fo = new FallingObjects(_root.strChar, _root.strChar.pId._x); } else { _root.fo = new FallingObjects(_root.strChar); } _root.objectTimer.restartTimer(); } foDrop(); } if (Key.isDown(81)) { _root.gotoAndPlay("GameOver"); } if (Key.isDown(16) && (Key.isDown(53))) { _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; killAllObjects(); _root.gotoAndPlay("Egg"); } if ((Key.isDown(16) && (Key.isDown(49))) && (Key.isDown(13))) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); if (_root.gameLevel < 3) { _root.gotoAndPlay("LevelComplete"); } if (_root.gameLevel == 3) { _root.gotoAndStop("Winner"); } } if (_root.strChar.pole == _level0.level3pole27) { _root.strChar.canComplete = true; } if (_root.strChar.canComplete) { if (_root.strChar.pId.hitTest(_root.levelFinish)) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gotoAndStop("Winner"); } } if (_root.checkLives2 == null) { _root.checkLives2 = false; } if (!_root.checkLives2) { if (_root.gameLives == 3) { _root.checkLives2 = true; } if (_root.gameLives == 2) { _root.live3._visible = 0; _root.checkLives2 = true; } if (_root.gameLives == 1) { _root.live3._visible = 0; _root.live2._visible = 0; _root.checkLives2 = true; } if (_root.gameLives == 0) { _root.live3._visible = 0; _root.live2._visible = 0; _root.live1._visible = 0; _root.checkLives2 = true; } } if (_root.level3Objects == null) { _root.level3Objects = false; } if (!_root.level3Objects) { if (_root.strChar._xscale < 0) { _root.strChar._xscale = _root.strChar._xscale * -1; } _root.numOfPoles = 27; _root.numOfStages = 10; _root.fallingObjectRate = 4; _root.poleGreaseRate = 3; _root.randomRate = 10; _root.level3Objects = true; } _root.gKey = {up:Key.isDown(38), down:Key.isDown(40), left:Key.isDown(37), right:Key.isDown(39), space:Key.isDown(32), noKey:((((!Key.isDown(38)) && (!Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(32))}; if (_root.gKey.left && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.left && (_root.gKey.up)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.up)) { _root.gKey.noKey = true; }
Frame 38
gotoAndPlay(_currentframe - 1);
Frame 49
if (_root.levelMovieId != null) { _root.levelMovieId.removeMovieClip(); _root.levelMovieId = null; } if (_root.strChar == null) { _root.strChar = new Stripperella(); _root.strChar.setStage(); } if (_root.strChar.canComplete) { if (_root.strChar.pId.hitTest(_root.levelFinish)) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gotoAndPlay("LevelComplete"); } } _root.strChar.doMovement(_root.gKey); if (_root.mainLoop == null) { stopAllSounds(); _root.mainLoop = new Sound("_root"); _root.mainLoop.attachSound("mainloop"); _root.mainLoop.onSoundComplete = function () { this.start(); }; _root.mainLoop.start(); } if (_root.bonus == null) { _root.bonus = new BonusObject(); } if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } if (_root.bonusTimer == null) { _root.bonusTimer = new cTimer(); } if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (!_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer.restartTimer(); } else if ((_root.bonusTimer.seconds() == _root.bonus.expires) && (_root.bonus.hit)) { _root.bonus.pId.removeMovieClip(); _root.bonus = new BonusObject(); if (!_root.bonus.positionSet) { _root.bonus.setPosition(); } _root.bonusTimer.restartTimer(); } if ((!_root.bonus.hit) && (_root.strChar.moving != "fallPerm")) { if (_root.strChar.pId.body_hit.hitTest(_root.bonus.pId)) { _root.bonus.kill(); } } if (1 < _root.gameLevel) { if (_root.greaseTimer == null) { _root.greaseTimer = new cTimer(); } if (_root.greaseTimer.seconds() == _root.poleGreaseRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.pg = new PoleGrease(_root.strChar, _root.strChar.pole); } else { _root.pg = new PoleGrease(_root.strChar); } _root.greaseTimer.restartTimer(); } poleGreaseDoStuff(); if (_root.objectTimer == null) { _root.objectTimer = new cTimer(); } if (_root.objectTimer.seconds() == _root.fallingObjectRate) { var rand1 = Math.floor(Math.random() * _root.randomRate); var rand2 = Math.floor(Math.random() * _root.randomRate); if (rand1 == rand2) { _root.fo = new FallingObjects(_root.strChar, _root.strChar.pId._x); } else { _root.fo = new FallingObjects(_root.strChar); } _root.objectTimer.restartTimer(); } foDrop(); } if (Key.isDown(81)) { _root.gotoAndPlay("GameOver"); } if (Key.isDown(16) && (Key.isDown(53))) { _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; killAllObjects(); _root.gotoAndPlay("Egg"); } if ((Key.isDown(16) && (Key.isDown(49))) && (Key.isDown(13))) { _root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); if (_root.gameLevel < 3) { _root.gotoAndPlay("LevelComplete"); } if (_root.gameLevel == 3) { _root.gotoAndStop("Winner"); } } _root.gKey = {up:Key.isDown(38), down:Key.isDown(40), left:Key.isDown(37), right:Key.isDown(39), space:Key.isDown(32), noKey:((((!Key.isDown(38)) && (!Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(39))) && (!Key.isDown(32))}; if (_root.gKey.left && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.left && (_root.gKey.up)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.down)) { _root.gKey.noKey = true; } if (_root.gKey.right && (_root.gKey.up)) { _root.gKey.noKey = true; }
Instance of Symbol 264 MovieClip "level1stage1" in Frame 49
/* no clip actions */
Frame 50
gotoAndPlay(_currentframe - 1);
Frame 56
_root.iLevelPauseTimer.restartTimer(); var clip = (("level" + _root.gameLevel) + "complete"); var clipId = (clip + "10"); attachMovie(clip, clipId, 5); _root.levelMovieId = eval (clipId); if (_root.gameLevel == 1) { _root.levelMovieId._x = 245; _root.levelMovieId._y = 180; } if (_root.gameLevel == 2) { _root.levelMovieId._x = 250; _root.levelMovieId._y = 187.5; } tellTarget ("/hs_scripts") { call("mLevelStart"); };
Frame 57
if (15 < _root.iLevelPauseTimer.seconds()) { _root.gLevel = _root.gLevel + 1; _root.gotoAndPlay("NextLevel"); }
Frame 58
_root.gotoAndPlay(_currentframe - 1);
Frame 65
_root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gameLives = 3; tellTarget ("/hs_scripts") { call("mGameOver"); };
Instance of Symbol 292 MovieClip in Frame 65
/* no clip actions */
Frame 77
_root.strChar.canComplete = false; _root.strChar.pId.removeMovieClip(); _root.strChar = null; _root.bonus.pId.removeMovieClip(); _root.bonus = null; _root.bonusTimer = null; _root.greaseTimer = null; _root.pg = null; _root.fo = null; _root.objectTimer = null; killAllObjects(); _root.gameLevel = 1; _root.gameLives = 3; tellTarget ("/hs_scripts") { call("mGameOver"); };
Frame 94
stop();
Symbol 34 Button
on (release) { _root.gotoAndPlay("level3"); }
Symbol 60 MovieClip [level2complete] Frame 29
stop();
Symbol 67 Button
on (release) { _root.gotoAndPlay("level2"); }
Symbol 74 MovieClip [level1complete] Frame 30
stop();
Symbol 84 MovieClip [bonus] Frame 25
stop();
Symbol 155 MovieClip [striperella] Frame 8
gotoAndPlay (1);
Symbol 155 MovieClip [striperella] Frame 18
gotoAndPlay (12);
Symbol 155 MovieClip [striperella] Frame 21
_root.lockSpaceKey = false;
Symbol 155 MovieClip [striperella] Frame 72
gotoAndPlay (19);
Symbol 155 MovieClip [striperella] Frame 89
gotoAndPlay (76);
Symbol 155 MovieClip [striperella] Frame 140
gotoAndPlay (93);
Symbol 155 MovieClip [striperella] Frame 160
gotoAndPlay (144);
Symbol 161 MovieClip Frame 14
gotoAndPlay (1);
Symbol 162 MovieClip Frame 1
stop();
Symbol 176 MovieClip Frame 1
loadMovie ("/spike_tv/stripperella/med/hs/HSScripts.swf", "");
Symbol 176 MovieClip Frame 4
stop();
Symbol 232 MovieClip Frame 77
_root.gotoAndStop("play");
Symbol 238 MovieClip Frame 1
_visible = 0; loadMovie ("/spike_tv/stripperella/med/hs/HSMinScore.swf", "");
Symbol 238 MovieClip Frame 4
stop();
Symbol 241 Button
on (release) { play(); }
Symbol 249 Button
on (release) { _root.gotoAndPlay("MainLoop"); }
Symbol 283 Button
on (release) { _root.gScore = 0; if (_root.gameLevel == 1) { _root.gotoAndPlay("MainLoop"); } if (_root.gameLevel == 2) { _root.gotoAndPlay("level2"); } if (_root.gameLevel == 3) { _root.gotoAndPlay("level3"); } }
Symbol 296 MovieClip Frame 1
_visible = 0;
Symbol 296 MovieClip Frame 5
stop();
Symbol 321 Button
on (release) { _root.gotoAndPlay("MainLoop"); }
Symbol 324 MovieClip Frame 1
stopAllSounds();
Symbol 330 Button
on (release, keyPress "<Down>") { _root.cheat.target_item._y = _root.cheat.target_item._y + 18; }
Symbol 333 Button
on (release, keyPress "<Space>") { _root.cheat.target_item._xscale = _root.cheat.target_item._xscale / 0.9; _root.cheat.target_item._yscale = _root.cheat.target_item._yscale / 0.9; }
Symbol 335 Button
on (release, keyPress "<Left>") { _root.cheat.target_item._x = _root.cheat.target_item._x - 18; }
Symbol 337 Button
on (release, keyPress "<Right>") { _root.cheat.target_item._x = _root.cheat.target_item._x + 18; }
Symbol 339 Button
on (release, keyPress "<Up>") { _root.cheat.target_item._y = _root.cheat.target_item._y - 18; }
Symbol 342 Button
on (release, keyPress "z") { _root.cheat.target_item._xscale = _root.cheat.target_item._xscale * 0.9; _root.cheat.target_item._yscale = _root.cheat.target_item._yscale * 0.9; }
Symbol 346 Button
on (release, keyPress "r") { _root.cheat.target_item._x = 0; _root.cheat.target_item._y = 0; _root.cheat.target_item._xscale = 100; _root.cheat.target_item._yscale = 100; }
Symbol 347 MovieClip Frame 1
stopAllSounds();

Library Items

Symbol 1 Sound [transSound]
Symbol 2 Sound [mainloop]
Symbol 3 Sound [bonusSound]
Symbol 4 Sound [greaseDrop]
Symbol 5 Sound [bootHit]
Symbol 6 Sound [braHit]
Symbol 7 Sound [bottleHit]
Symbol 8 GraphicUsed by:60 74 162 249 252 278 283 292 318 321 324
Symbol 9 GraphicUsed by:60 324 347
Symbol 10 GraphicUsed by:60 74 232
Symbol 11 GraphicUsed by:60 74
Symbol 12 GraphicUsed by:60 74
Symbol 13 GraphicUsed by:60 74
Symbol 14 GraphicUsed by:60 74
Symbol 15 GraphicUsed by:60
Symbol 16 GraphicUsed by:60
Symbol 17 GraphicUsed by:60 324 326
Symbol 18 GraphicUsed by:60 324 326
Symbol 19 GraphicUsed by:60 324 326
Symbol 20 GraphicUsed by:60 324 326
Symbol 21 GraphicUsed by:60 324 326
Symbol 22 GraphicUsed by:60 324 326
Symbol 23 GraphicUsed by:60 324 326
Symbol 24 GraphicUsed by:60 324 326
Symbol 25 GraphicUsed by:60 324 326
Symbol 26 GraphicUsed by:60 324 326
Symbol 27 GraphicUsed by:60 74
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:60
Symbol 30 GraphicUsed by:34 67
Symbol 31 GraphicUsed by:34 67
Symbol 32 GraphicUsed by:34 67
Symbol 33 GraphicUsed by:34 67
Symbol 34 ButtonUses:30 31 32 33Used by:60
Symbol 35 GraphicUsed by:60
Symbol 36 GraphicUsed by:60 74  Timeline
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:60
Symbol 39 FontUsed by:40 70 257 269 273 293 323 345
Symbol 40 EditableTextUses:39Used by:60
Symbol 41 GraphicUsed by:60 318 324 326
Symbol 42 GraphicUsed by:60 318 324 326
Symbol 43 GraphicUsed by:60 318 324 326
Symbol 44 GraphicUsed by:60 318 324 326
Symbol 45 GraphicUsed by:60 318 324 326
Symbol 46 GraphicUsed by:60 318 324 326
Symbol 47 GraphicUsed by:60 318 324 326
Symbol 48 GraphicUsed by:60 318 324 326
Symbol 49 GraphicUsed by:60 318 324 326
Symbol 50 GraphicUsed by:60 318 324 326
Symbol 51 GraphicUsed by:60 318 324 326
Symbol 52 GraphicUsed by:60 318 324 326
Symbol 53 GraphicUsed by:60 318 324 326
Symbol 54 GraphicUsed by:60 318 324 326
Symbol 55 GraphicUsed by:60 318 324 326
Symbol 56 GraphicUsed by:60 318 324 326
Symbol 57 GraphicUsed by:60 318 324 326
Symbol 58 GraphicUsed by:60 318 324 326
Symbol 59 GraphicUsed by:60 318 324 326
Symbol 60 MovieClip [level2complete]Uses:8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 34 35 36 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
Symbol 61 GraphicUsed by:74
Symbol 62 GraphicUsed by:74
Symbol 63 GraphicUsed by:74
Symbol 64 GraphicUsed by:74 162 245 324 326
Symbol 65 GraphicUsed by:74
Symbol 66 GraphicUsed by:74
Symbol 67 ButtonUses:30 31 32 33Used by:68
Symbol 68 MovieClipUses:67Used by:74
Symbol 69 GraphicUsed by:74
Symbol 70 EditableTextUses:39Used by:74
Symbol 71 GraphicUsed by:74 162 245 324 326
Symbol 72 GraphicUsed by:74 162 245 324 326
Symbol 73 GraphicUsed by:74 162 245 324 326
Symbol 74 MovieClip [level1complete]Uses:8 61 10 13 62 11 12 63 14 64 65 66 68 36 69 70 27 71 72 73
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClip [grease]Uses:75
Symbol 77 GraphicUsed by:84 246 249
Symbol 78 GraphicUsed by:84
Symbol 79 GraphicUsed by:84
Symbol 80 GraphicUsed by:84
Symbol 81 GraphicUsed by:84
Symbol 82 GraphicUsed by:84
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClip [bonus]Uses:77 78 79 80 81 82 83
Symbol 85 GraphicUsed by:91
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:91
Symbol 88 GraphicUsed by:91
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClip [bra]Uses:85 87 88 89 90
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClip [bottle]Uses:92
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClip [boot]Uses:94
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:155
Symbol 98 GraphicUsed by:155
Symbol 99 GraphicUsed by:155 231
Symbol 100 GraphicUsed by:155
Symbol 101 GraphicUsed by:155
Symbol 102 GraphicUsed by:155 231
Symbol 103 GraphicUsed by:155
Symbol 104 GraphicUsed by:155
Symbol 105 GraphicUsed by:155
Symbol 106 GraphicUsed by:155
Symbol 107 GraphicUsed by:155 231
Symbol 108 GraphicUsed by:155 231
Symbol 109 GraphicUsed by:155
Symbol 110 GraphicUsed by:155
Symbol 111 GraphicUsed by:155
Symbol 112 GraphicUsed by:155
Symbol 113 GraphicUsed by:155
Symbol 114 GraphicUsed by:155 231
Symbol 115 GraphicUsed by:155
Symbol 116 GraphicUsed by:155
Symbol 117 GraphicUsed by:155
Symbol 118 GraphicUsed by:155
Symbol 119 GraphicUsed by:155
Symbol 120 GraphicUsed by:155
Symbol 121 GraphicUsed by:155
Symbol 122 GraphicUsed by:155 161
Symbol 123 GraphicUsed by:155 161
Symbol 124 GraphicUsed by:155 161
Symbol 125 GraphicUsed by:155 161
Symbol 126 GraphicUsed by:155 161
Symbol 127 GraphicUsed by:155 161
Symbol 128 GraphicUsed by:155 161
Symbol 129 GraphicUsed by:155
Symbol 130 GraphicUsed by:155
Symbol 131 GraphicUsed by:155
Symbol 132 GraphicUsed by:155
Symbol 133 GraphicUsed by:155
Symbol 134 GraphicUsed by:155
Symbol 135 GraphicUsed by:155
Symbol 136 GraphicUsed by:155
Symbol 137 GraphicUsed by:155
Symbol 138 GraphicUsed by:155
Symbol 139 GraphicUsed by:155
Symbol 140 GraphicUsed by:155
Symbol 141 GraphicUsed by:155
Symbol 142 GraphicUsed by:155
Symbol 143 GraphicUsed by:155
Symbol 144 GraphicUsed by:155
Symbol 145 GraphicUsed by:155
Symbol 146 GraphicUsed by:155
Symbol 147 GraphicUsed by:155
Symbol 148 GraphicUsed by:155
Symbol 149 GraphicUsed by:155
Symbol 150 GraphicUsed by:155
Symbol 151 GraphicUsed by:155
Symbol 152 GraphicUsed by:155
Symbol 153 GraphicUsed by:155
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClip [striperella]Uses:97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
Symbol 156 GraphicUsed by:264 265  Timeline
Symbol 157 BitmapUsed by:158
Symbol 158 GraphicUses:157Used by:159
Symbol 159 MovieClipUses:158Used by:170 252 292 324
Symbol 160 GraphicUsed by:170 244
Symbol 161 MovieClipUses:122 123 124 125 126 127 128Used by:170
Symbol 162 MovieClipUses:8 71 72 73 64Used by:170
Symbol 163 GraphicUsed by:167
Symbol 164 GraphicUsed by:167
Symbol 165 GraphicUsed by:167
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:163 164 165 166Used by:170
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:170 252
Symbol 170 MovieClipUses:159 160 161 162 167 169Used by:Timeline
Symbol 171 GraphicUsed by:Timeline
Symbol 172 FontUsed by:173 239 255 268 272
Symbol 173 EditableTextUses:172Used by:Timeline
Symbol 174 FontUsed by:175 295
Symbol 175 TextUses:174Used by:176
Symbol 176 MovieClipUses:175Used by:Timeline
Symbol 177 GraphicUsed by:232
Symbol 178 GraphicUsed by:232 261 278
Symbol 179 GraphicUsed by:232 261 278
Symbol 180 GraphicUsed by:232 261 278
Symbol 181 GraphicUsed by:232 261 278
Symbol 182 GraphicUsed by:232 261 278
Symbol 183 GraphicUsed by:232 261 278
Symbol 184 GraphicUsed by:232 261 278
Symbol 185 GraphicUsed by:232 261 278
Symbol 186 GraphicUsed by:232 261 278
Symbol 187 GraphicUsed by:232 261 278
Symbol 188 GraphicUsed by:232 261 278
Symbol 189 GraphicUsed by:232 261 278
Symbol 190 GraphicUsed by:232 261 278
Symbol 191 GraphicUsed by:232 261 278
Symbol 192 GraphicUsed by:232 261 278
Symbol 193 GraphicUsed by:232 261 278
Symbol 194 GraphicUsed by:232 261 278
Symbol 195 GraphicUsed by:232
Symbol 196 GraphicUsed by:232 263
Symbol 197 GraphicUsed by:232 263
Symbol 198 GraphicUsed by:232 263
Symbol 199 GraphicUsed by:232 263
Symbol 200 GraphicUsed by:232 263
Symbol 201 GraphicUsed by:232 263
Symbol 202 GraphicUsed by:232 263
Symbol 203 GraphicUsed by:232 263
Symbol 204 GraphicUsed by:232 263
Symbol 205 GraphicUsed by:232 263
Symbol 206 GraphicUsed by:232 263
Symbol 207 GraphicUsed by:232 263
Symbol 208 GraphicUsed by:232 263
Symbol 209 GraphicUsed by:232 263
Symbol 210 GraphicUsed by:232
Symbol 211 GraphicUsed by:232 263
Symbol 212 GraphicUsed by:232 263
Symbol 213 GraphicUsed by:231
Symbol 214 GraphicUsed by:231
Symbol 215 GraphicUsed by:231
Symbol 216 GraphicUsed by:231
Symbol 217 GraphicUsed by:231
Symbol 218 GraphicUsed by:231
Symbol 219 GraphicUsed by:231
Symbol 220 GraphicUsed by:231
Symbol 221 GraphicUsed by:231
Symbol 222 GraphicUsed by:231
Symbol 223 GraphicUsed by:231
Symbol 224 GraphicUsed by:231
Symbol 225 GraphicUsed by:231
Symbol 226 GraphicUsed by:231
Symbol 227 GraphicUsed by:231
Symbol 228 GraphicUsed by:231
Symbol 229 GraphicUsed by:231
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:213 99 214 215 102 216 217 218 219 107 108 220 221 222 223 224 114 225 226 227 228 229 230Used by:232
Symbol 232 MovieClipUses:177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 231 10Used by:Timeline
Symbol 233 FontUsed by:234 235 236 237
Symbol 234 TextUses:233Used by:238
Symbol 235 EditableTextUses:233Used by:238
Symbol 236 TextUses:233Used by:238
Symbol 237 EditableTextUses:233Used by:238
Symbol 238 MovieClipUses:234 235 236 237Used by:Timeline
Symbol 239 EditableTextUses:172Used by:Timeline
Symbol 240 GraphicUsed by:241
Symbol 241 ButtonUses:240Used by:Timeline
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:244
Symbol 244 MovieClipUses:160 243Used by:252
Symbol 245 MovieClipUses:64 71 72 73Used by:252
Symbol 246 MovieClipUses:77Used by:248
Symbol 247 GraphicUsed by:248 249
Symbol 248 MovieClipUses:246 247Used by:249
Symbol 249 ButtonUses:248 8 77 247Used by:252
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:252
Symbol 252 MovieClipUses:8 159 244 245 169 249 251Used by:Timeline
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:Timeline
Symbol 255 EditableTextUses:172Used by:Timeline
Symbol 256 GraphicUsed by:Timeline
Symbol 257 EditableTextUses:39Used by:Timeline
Symbol 258 GraphicUsed by:260
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:258 259Used by:Timeline
Symbol 261 MovieClipUses:178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194Used by:Timeline
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:262 196 197 198 199 200 201 202 203 204 205 206 207 208 209 211 212Used by:Timeline
Symbol 264 MovieClipUses:156Used by:Timeline
Symbol 265 MovieClipUses:156Used by:Timeline
Symbol 266 BitmapUsed by:267
Symbol 267 GraphicUses:266Used by:Timeline
Symbol 268 EditableTextUses:172Used by:Timeline
Symbol 269 EditableTextUses:39Used by:Timeline
Symbol 270 BitmapUsed by:271
Symbol 271 GraphicUses:270Used by:Timeline
Symbol 272 EditableTextUses:172Used by:Timeline
Symbol 273 EditableTextUses:39Used by:Timeline
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:Timeline
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:292 324
Symbol 278 MovieClipUses:8 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194Used by:292
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:292 324
Symbol 281 GraphicUsed by:282 283
Symbol 282 MovieClipUses:281Used by:283
Symbol 283 ButtonUses:282 281 8Used by:292
Symbol 284 GraphicUsed by:290
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:290
Symbol 287 GraphicUsed by:290
Symbol 288 GraphicUsed by:290
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:284 286 287 288 289Used by:292
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:8 159 277 278 280 283 290 291Used by:Timeline
Symbol 293 EditableTextUses:39Used by:Timeline
Symbol 294 GraphicUsed by:296
Symbol 295 EditableTextUses:174Used by:296
Symbol 296 MovieClipUses:294 295Used by:Timeline
Symbol 297 GraphicUsed by:324
Symbol 298 GraphicUsed by:324
Symbol 299 SoundUsed by:324
Symbol 300 GraphicUsed by:324
Symbol 301 GraphicUsed by:324
Symbol 302 GraphicUsed by:324
Symbol 303 GraphicUsed by:324
Symbol 304 GraphicUsed by:324
Symbol 305 GraphicUsed by:324
Symbol 306 GraphicUsed by:324
Symbol 307 GraphicUsed by:324
Symbol 308 GraphicUsed by:324
Symbol 309 GraphicUsed by:324
Symbol 310 GraphicUsed by:324
Symbol 311 GraphicUsed by:324
Symbol 312 GraphicUsed by:324
Symbol 313 GraphicUsed by:324
Symbol 314 GraphicUsed by:324
Symbol 315 GraphicUsed by:324
Symbol 316 GraphicUsed by:324
Symbol 317 GraphicUsed by:324
Symbol 318 MovieClipUses:8 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59Used by:324
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:321
Symbol 321 ButtonUses:320 8Used by:324
Symbol 322 GraphicUsed by:324
Symbol 323 EditableTextUses:39Used by:324
Symbol 324 MovieClipUses:8 9 297 298 41 42 43 44 45 46 47 48 49 50 299 51 52 53 54 55 56 57 58 59 300 301 17 18 19 20 21 22 23 24 25 26 64 71 72 73 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 159 277 318 280 321 322 323Used by:Timeline
Symbol 325 GraphicUsed by:347
Symbol 326 MovieClipUses:41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 17 18 19 20 21 22 23 24 25 26 64 71 72 73Used by:327
Symbol 327 MovieClipUses:326Used by:347
Symbol 328 GraphicUsed by:330 335 337 339
Symbol 329 GraphicUsed by:330
Symbol 330 ButtonUses:328 329Used by:347
Symbol 331 GraphicUsed by:333
Symbol 332 GraphicUsed by:333
Symbol 333 ButtonUses:331 332Used by:347
Symbol 334 GraphicUsed by:335
Symbol 335 ButtonUses:328 334Used by:347
Symbol 336 GraphicUsed by:337
Symbol 337 ButtonUses:328 336Used by:347
Symbol 338 GraphicUsed by:339
Symbol 339 ButtonUses:328 338Used by:347
Symbol 340 GraphicUsed by:342
Symbol 341 GraphicUsed by:342
Symbol 342 ButtonUses:340 341Used by:347
Symbol 343 GraphicUsed by:347
Symbol 344 GraphicUsed by:346
Symbol 345 EditableTextUses:39Used by:346
Symbol 346 ButtonUses:344 345Used by:347
Symbol 347 MovieClipUses:9 325 327 330 333 335 337 339 342 343 346 SS1Used by:Timeline
Streaming Sound 1Used by:Symbol 347 MovieClip

Instance Names

"hs_scripts"Frame 4Symbol 176 MovieClip
"min_high_score"Frame 9Symbol 238 MovieClip
"live3"Frame 25Symbol 260 MovieClip
"live2"Frame 25Symbol 260 MovieClip
"live1"Frame 25Symbol 260 MovieClip
"level2stage1"Frame 25Symbol 264 MovieClip
"level2pole1"Frame 25Symbol 265 MovieClip
"level2pole2"Frame 25Symbol 265 MovieClip
"level2pole3"Frame 25Symbol 265 MovieClip
"level2stage2"Frame 25Symbol 264 MovieClip
"level2pole4"Frame 25Symbol 265 MovieClip
"level2pole5"Frame 25Symbol 265 MovieClip
"level2pole6"Frame 25Symbol 265 MovieClip
"level2pole7"Frame 25Symbol 265 MovieClip
"level2pole8"Frame 25Symbol 265 MovieClip
"level2stage3"Frame 25Symbol 264 MovieClip
"level2pole9"Frame 25Symbol 265 MovieClip
"level2pole10"Frame 25Symbol 265 MovieClip
"level2pole11"Frame 25Symbol 265 MovieClip
"level2pole12"Frame 25Symbol 265 MovieClip
"level2pole13"Frame 25Symbol 265 MovieClip
"level2pole14"Frame 25Symbol 265 MovieClip
"level2stage4"Frame 25Symbol 264 MovieClip
"level2pole15"Frame 25Symbol 265 MovieClip
"level2pole16"Frame 25Symbol 265 MovieClip
"level2pole17"Frame 25Symbol 265 MovieClip
"level2pole18"Frame 25Symbol 265 MovieClip
"level2stage5"Frame 25Symbol 264 MovieClip
"level2pole19"Frame 25Symbol 265 MovieClip
"level2pole20"Frame 25Symbol 265 MovieClip
"level2pole21"Frame 25Symbol 265 MovieClip
"level2pole22"Frame 25Symbol 265 MovieClip
"level2pole23"Frame 25Symbol 265 MovieClip
"level2pole24"Frame 25Symbol 265 MovieClip
"level2pole25"Frame 25Symbol 265 MovieClip
"level2stage6"Frame 25Symbol 264 MovieClip
"level2pole26"Frame 25Symbol 265 MovieClip
"level2pole27"Frame 25Symbol 265 MovieClip
"level2pole28"Frame 25Symbol 265 MovieClip
"levelFinish"Frame 25Symbol 265 MovieClip
"live3"Frame 37Symbol 260 MovieClip
"live2"Frame 37Symbol 260 MovieClip
"live1"Frame 37Symbol 260 MovieClip
"level3stage1"Frame 37Symbol 264 MovieClip
"level3pole1"Frame 37Symbol 265 MovieClip
"level3pole2"Frame 37Symbol 265 MovieClip
"level3pole3"Frame 37Symbol 265 MovieClip
"level3pole4"Frame 37Symbol 265 MovieClip
"level3pole5"Frame 37Symbol 265 MovieClip
"level3pole6"Frame 37Symbol 265 MovieClip
"level3pole7"Frame 37Symbol 265 MovieClip
"level3pole8"Frame 37Symbol 265 MovieClip
"level3pole9"Frame 37Symbol 265 MovieClip
"level3pole10"Frame 37Symbol 265 MovieClip
"level3pole11"Frame 37Symbol 265 MovieClip
"level3pole12"Frame 37Symbol 265 MovieClip
"level3pole13"Frame 37Symbol 265 MovieClip
"level3pole14"Frame 37Symbol 265 MovieClip
"level3pole15"Frame 37Symbol 265 MovieClip
"level3pole16"Frame 37Symbol 265 MovieClip
"level3pole17"Frame 37Symbol 265 MovieClip
"level3pole18"Frame 37Symbol 265 MovieClip
"level3pole19"Frame 37Symbol 265 MovieClip
"level3pole20"Frame 37Symbol 265 MovieClip
"level3pole21"Frame 37Symbol 265 MovieClip
"level3pole22"Frame 37Symbol 265 MovieClip
"level3pole23"Frame 37Symbol 265 MovieClip
"level3pole24"Frame 37Symbol 265 MovieClip
"level3pole25"Frame 37Symbol 265 MovieClip
"level3pole26"Frame 37Symbol 265 MovieClip
"level3pole27"Frame 37Symbol 265 MovieClip
"level3stage2"Frame 37Symbol 264 MovieClip
"level3stage3"Frame 37Symbol 264 MovieClip
"level3stage4"Frame 37Symbol 264 MovieClip
"level3stage5"Frame 37Symbol 264 MovieClip
"level3stage6"Frame 37Symbol 264 MovieClip
"level3stage7"Frame 37Symbol 264 MovieClip
"level3stage8"Frame 37Symbol 264 MovieClip
"level3stage9"Frame 37Symbol 264 MovieClip
"level3stage10"Frame 37Symbol 264 MovieClip
"levelFinish"Frame 37Symbol 265 MovieClip
"live3"Frame 49Symbol 260 MovieClip
"live2"Frame 49Symbol 260 MovieClip
"live1"Frame 49Symbol 260 MovieClip
"MASK_type"Frame 49Symbol 275 MovieClip
"level1pole1"Frame 49Symbol 265 MovieClip
"level1stage1"Frame 49Symbol 264 MovieClip
"level1stage2"Frame 49Symbol 264 MovieClip
"level1stage3"Frame 49Symbol 264 MovieClip
"level1stage4"Frame 49Symbol 264 MovieClip
"level1pole6"Frame 49Symbol 265 MovieClip
"level1stage5"Frame 49Symbol 264 MovieClip
"level1stage6"Frame 49Symbol 264 MovieClip
"level1pole7"Frame 49Symbol 265 MovieClip
"level1pole8"Frame 49Symbol 265 MovieClip
"level1pole9"Frame 49Symbol 265 MovieClip
"level1stage7"Frame 49Symbol 264 MovieClip
"level1pole10"Frame 49Symbol 265 MovieClip
"level1pole11"Frame 49Symbol 265 MovieClip
"level1stage8"Frame 49Symbol 264 MovieClip
"level1pole12"Frame 49Symbol 265 MovieClip
"level1pole13"Frame 49Symbol 265 MovieClip
"levelFinish"Frame 49Symbol 265 MovieClip
"level1stage10"Frame 49Symbol 264 MovieClip
"level1pole2"Frame 49Symbol 265 MovieClip
"level1pole3"Frame 49Symbol 265 MovieClip
"level1pole4"Frame 49Symbol 265 MovieClip
"level1pole5"Frame 49Symbol 265 MovieClip
"level1stage9"Frame 49Symbol 264 MovieClip
"bgloader"Frame 56Symbol 265 MovieClip
"hs_placeholder"Frame 65Symbol 296 MovieClip
"cheat"Frame 86Symbol 347 MovieClip
"body_hit"Symbol 155 MovieClip [striperella] Frame 1Symbol 97 MovieClip
"body_hit"Symbol 155 MovieClip [striperella] Frame 12Symbol 97 MovieClip
"body_hit"Symbol 155 MovieClip [striperella] Frame 76Symbol 97 MovieClip
"left_hand"Symbol 155 MovieClip [striperella] Frame 93Symbol 97 MovieClip
"right_hand"Symbol 155 MovieClip [striperella] Frame 93Symbol 97 MovieClip
"body_hit"Symbol 155 MovieClip [striperella] Frame 93Symbol 97 MovieClip
"body_hit"Symbol 155 MovieClip [striperella] Frame 144Symbol 97 MovieClip
"target_item"Symbol 347 MovieClip Frame 1Symbol 327 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "transSound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "mainloop"
ExportAssets (56)Timeline Frame 1Symbol 3 as "bonusSound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "greaseDrop"
ExportAssets (56)Timeline Frame 1Symbol 5 as "bootHit"
ExportAssets (56)Timeline Frame 1Symbol 6 as "braHit"
ExportAssets (56)Timeline Frame 1Symbol 7 as "bottleHit"
ExportAssets (56)Timeline Frame 1Symbol 60 as "level2complete"
ExportAssets (56)Timeline Frame 1Symbol 74 as "level1complete"
ExportAssets (56)Timeline Frame 1Symbol 76 as "grease"
ExportAssets (56)Timeline Frame 1Symbol 84 as "bonus"
ExportAssets (56)Timeline Frame 1Symbol 91 as "bra"
ExportAssets (56)Timeline Frame 1Symbol 93 as "bottle"
ExportAssets (56)Timeline Frame 1Symbol 95 as "boot"
ExportAssets (56)Timeline Frame 1Symbol 155 as "striperella"

Labels

"loading"Frame 4
"loaded"Frame 9
"title"Frame 15
"play"Frame 20
"level2"Frame 25
"level3"Frame 37
"MainLoop"Frame 49
"LevelComplete"Frame 56
"GameOver"Frame 65
"Winner"Frame 77
"Egg"Frame 86
"Level 2 Completed"Symbol 60 MovieClip [level2complete] Frame 1
"Level 1 Completed"Symbol 74 MovieClip [level1complete] Frame 1
"Run"Symbol 155 MovieClip [striperella] Frame 1
"Jump"Symbol 155 MovieClip [striperella] Frame 12
"Stand"Symbol 155 MovieClip [striperella] Frame 19
"PoleClimb_Single"Symbol 155 MovieClip [striperella] Frame 76
"PoleClimb_Double"Symbol 155 MovieClip [striperella] Frame 93
"Fall"Symbol 155 MovieClip [striperella] Frame 144
"PoleClimb_Single"Symbol 161 MovieClip Frame 1
"init"Symbol 176 MovieClip Frame 1
"Level 3 Completed"Symbol 324 MovieClip Frame 1
"Cheat"Symbol 347 MovieClip Frame 1

Dynamic Text Variables

_root.gScoreSymbol 40 EditableText"12345678"
_root.gScoreSymbol 70 EditableText"123456789"
_level0:min_scoreSymbol 235 EditableText"na"
_level0:min_scoreSymbol 237 EditableText"na"
_root.gScoreSymbol 257 EditableText"12345678"
_root.gScoreSymbol 269 EditableText"12345678"
_root.gScoreSymbol 273 EditableText"12345678"
_root.gScoreSymbol 293 EditableText"12345678"
TextField14Symbol 295 EditableText"High Score Placeholder"
_root.gScoreSymbol 323 EditableText"123456789"




http://swfchan.com/11/50828/info.shtml
Created: 25/4 -2019 21:38:55 Last modified: 25/4 -2019 21:38:55 Server time: 29/04 -2024 13:06:15