Frame 1
startGame = function () {
gameStart = true;
lvlScore = 0;
accScore = 0;
wigScore = 0;
topScore = 0;
botScore = 0;
shoScore = 0;
win_mc.gotoAndStop(1);
tanOil_mc.gotoAndStop(1);
oomph_mc.gotoAndStop(1);
top_mc._visible = false;
bot_mc._visible = false;
wig_mc._visible = false;
acc_mc._visible = false;
sho_mc._visible = false;
};
disableBtns = function () {
top_btn.enabled = false;
acc_btn.enabled = false;
bot_btn.enabled = false;
wig_btn.enabled = false;
sho_btn.enabled = false;
done_btn.enabled = false;
top_mc._visible = false;
acc_mc._visible = false;
bot_mc._visible = false;
wig_mc._visible = false;
sho_mc._visible = false;
};
processVisMC = function () {
tellTarget (currMC + "_mc") {
_visible = true;
};
tellTarget (currMC + "_btn") {
enabled = false;
};
tellTarget (lastMC + "_mc") {
_visible = false;
};
tellTarget (lastMC + "_btn") {
enabled = true;
};
lastMC = currMC;
};
processScore = function () {
lvlScore = ((((accScore + wigScore) + topScore) + botScore) + shoScore) * 100;
};
processFinScore = function () {
score = score + lvlScore;
};
processGame = function () {
trace("processGame");
if (lvl == 1) {
if (Tan == 4) {
win_mc.gotoAndPlay(2);
} else {
lose_mc.gotoAndPlay(2);
}
} else if (lvl == 2) {
if (Tan == 4) {
win_mc.gotoAndPlay(2);
} else {
lose_mc.gotoAndPlay(2);
}
} else if (lvl == 3) {
if (Tan == 2) {
win_mc.gotoAndPlay(2);
} else {
lose_mc.gotoAndPlay(2);
}
} else if (lvl == 4) {
if (Tan == 3) {
win_mc.gotoAndPlay(2);
} else {
lose_mc.gotoAndPlay(2);
}
}
};
processAcc = function () {
trace("ACC PROCESSED!");
girl.acc_mc.gotoAndStop(currAcc + 1);
tellTarget (acc_mc["acc" + currAcc]) {
_visible = false;
};
tellTarget (acc_mc["acc" + lastAcc]) {
_visible = true;
};
lastAcc = currAcc;
};
processWig = function () {
trace("Wig PROCESSED!");
girl.wig_mc.gotoAndStop(currWig + 1);
tellTarget (wig_mc["wig" + currWig]) {
_visible = false;
};
tellTarget (wig_mc["wig" + lastWig]) {
_visible = true;
};
lastWig = currWig;
};
processTop = function () {
trace("Top PROCESSED!");
girl.top_mc.gotoAndStop(currTop + 1);
tellTarget (top_mc["top" + currTop]) {
_visible = false;
};
tellTarget (top_mc["top" + lastTop]) {
_visible = true;
};
lastTop = currTop;
};
processBot = function () {
trace("Bot PROCESSED!");
girl.bot_mc.gotoAndStop(currBot + 1);
tellTarget (bot_mc["bot" + currBot]) {
_visible = false;
};
tellTarget (bot_mc["bot" + lastBot]) {
_visible = true;
};
lastBot = currBot;
};
processSho = function () {
trace("Sho PROCESSED!");
girl.sho_mc.gotoAndStop(currSho + 1);
tellTarget (sho_mc["sho" + currSho]) {
_visible = false;
};
tellTarget (sho_mc["sho" + lastSho]) {
_visible = true;
};
lastSho = currSho;
};
Frame 3
function load_rgames(trgt) {
var rel_games = new XML();
rel_games.ignoreWhite = true;
rel_games.onLoad = function () {
game_details = new Object();
var _local1 = 0;
while (_local1 < trgt.rel_games.firstChild.childNodes.length) {
game_details[rel_games.firstChild.childNodes[_local1].nodeName] = rel_games.firstChild.childNodes[_local1].firstChild.nodeValue;
_local1++;
}
};
rel_games.load((curl + "game_details.xml?") + getTimer());
}
function _doGameOver(score, gamestate, showskip, delay) {
trace((((("CALLED : _doGameOver : score:" + score) + " gamestate:") + gamestate) + " showskip: ") + showskip);
clearInterval(_gameoverinterval);
if (delay == undefined) {
delay = 3000;
}
if ((score != undefined) and (gamestate != undefined)) {
_root.partner_score = score;
_root.obj_game._gstatus = gamestate;
_gameoverinterval = setInterval(attachGameOverMc, delay, showskip);
} else {
trace("Could Not Load GAMEOVER!!!");
}
}
function attachGameOverMc(showskip) {
stopAllSounds();
clearInterval(_gameoverinterval);
_root.__gameover_mc = _root.attachMovie("_g2w_gameover_mc", "mc_gameover", _root.getNextHighestDepth(), {_x:Stage.width / 2, _y:Stage.height / 2});
if (_root.obj_game._gstatus == "gameover") {
_root.__gameover_mc.gotoAndStop("g2w_gameover");
if (showskip) {
_root.__gameover_mc.panel_btn.gotoAndStop("skip");
}
}
}
function g2w_playagain(resetlevel) {
_root.__gameover_mc.removeMovieClip();
_root.game_score = 0;
_root.partner_score = 0;
if (resetlevel) {
trace("reset level");
_root.stopGameoverLoopSnd();
_root.gotoAndStop("lblgameintro");
} else {
_root.game_score = 0;
_root.partner_score = 0;
_playAgain(_root, "jumpframe");
_root.stopGameoverLoopSnd();
_root.startgame();
}
}
function g2w_skiplevel() {
_root.__gameover_mc.removeMovieClip();
_root.current_level = _root.current_level + 1;
_root.game_score = 0;
_root.partner_score = 0;
_root.game_stage.gotoAndStop("INIT");
}
var obj_game = new Array();
obj_game._gameName = "fun_in_the_sun";
obj_game._gameTitle = "Fun In The Sun";
obj_game._g2wGameId = "1104";
obj_game._partnerGameId = "funinthesun";
obj_game._gstatus = "gameover";
obj_game._googleText = "fun in the sun";
obj_game._gameStageW = 800;
obj_game._gameStageH = 600;
obj_game._gameScoreOrder = "desc";
obj_game._gameResolution = (Stage.width + "x") + Stage.height;
obj_game.g2wBot = "";
obj_game.g2wBotId = 10301;
obj_game.inviziads = ("http://ads.inviziads.com/ad.html/g=" + obj_game._g2wGameId) + "&h=g2w";
var obj_partner = new Array();
obj_partner.partner_name = "g2w";
obj_partner.partner_id = 1;
obj_partner.invalid_txt = "Invalid Nickname!";
obj_partner.show_submit = false;
obj_partner.submitURL = "/submit_score.asp";
obj_partner.top10URL = "/get_top_scorer.asp";
obj_partner.lblsubmit = "Enter your Games2win Nickname below";
obj_partner.show_g2w_slate = true;
obj_partner.show_register = true;
obj_partner.text_register = "Create Nickname";
obj_partner.url_register = "http://www.games2win.com/register.asp";
obj_partner.clickthru = "http://www.games2win.com/";
obj_partner._allowclick = true;
_validateHost = function (mcpath) {
var _local2 = mcpath;
_local2.overlay_btn.useHandCursor = false;
if (_root.obj_game._gstatus == "gameover") {
_initGameOver(_local2);
} else if (_root.checkhost()) {
_initLoginPanel(_local2);
} else {
_initAlientHost(_local2);
}
};
_initGameOver = function (mcpath) {
var _local2 = mcpath;
_local2.gotoAndStop("g2w_gameover");
_local2.panel_btn.playagain_btn.onRelease = function () {
_root.g2w_playagain();
};
_local2.panel_btn.skiplvl_btn.onRelease = function () {
_root.g2w_skiplevel();
};
};
_initLoginPanel = function (mcpath) {
var mc = mcpath;
mc.gotoAndStop("g2w_login");
Selection.setFocus("username_txt");
mc.username_txt.onSetFocus = function () {
if (this.text == obj_partner.invalid_txt) {
this.text = "";
}
};
mc.playagain_btn.onRelease = function () {
_root.g2w_playagain(true);
};
mc.nickname_btn.onRelease = function () {
getURL (_root.obj_partner.url_register, "_blank");
};
mc.submit_btn.onRelease = function () {
_root._scoreSubmit(mc);
};
};
_initAlientHost = function (mcpath) {
var _local2 = mcpath;
_local2.gotoAndStop("g2w_alienhost");
_local2.playagain_btn.onRelease = function () {
trace("CALLING : _root.g2w_playagain()");
_root.g2w_playagain(true);
};
};
_scoreSubmit = function (mcpath) {
var mc = mcpath;
myname = _root.partner_uname;
myscore = _root.partner_score;
mygameid = _root.obj_game._g2wGameId;
myname = myname.trim();
if (((myname.length == 0) or (myname == obj_partner.invalid_txt)) or (myname == undefined)) {
_root.partner_uname = obj_partner.invalid_txt;
} else {
mc.gotoAndStop("g2w_status");
mc.tryagain_btn._visible = false;
_root.send_lv = new LoadVars();
_root.send_lv.onLoad = function (success) {
if (success) {
if (_root.send_lv.isreg == 0) {
mc.status_txt.text = obj_partner.invalid_txt;
mc.tryagain_btn._visible = true;
mc.tryagain_btn.onRelease = function () {
_initLoginPanel(mc);
};
} else if (_root.send_lv.isreg == 1) {
mc.status_txt.text = "";
_root._getTop10(mc);
}
} else {
mc.status_txt.text = "Error in Connection...!";
mc.tryagain_btn._visible = true;
mc.tryagain_btn.onRelease = function () {
_initLoginPanel(mc);
};
}
};
_root.send_lv.nickname = myname;
_root.send_lv.points = myscore;
_root.send_lv.gameid = mygameid;
_root.send_lv.sendAndLoad(obj_partner.submitURL, _root.send_lv, "POST");
mc.status_txt.text = "Connecting to Server...";
}
};
c_fail = 0;
_getTop10 = function (mcpath) {
var mc = mcpath;
_root.send_lv = new XML();
_root.rst_lv = new XML();
mc.gotoAndStop("g2w_status");
_root.rst_lv.onLoad = function (success) {
if (success) {
var _local3 = new it.sephiroth.XML2Object();
mc.status_txt.text = "";
var _local4 = _local3.parseXML(this);
_initTop10(mc, _local4);
} else {
_root.c_fail++;
if (_root.c_fail >= 3) {
mc.status_txt.text = "Error!";
tryagain_btn._visible = true;
mc.tryagain_btn.onRelease = function () {
_initLoginPanel(mc);
};
} else {
_root.send_lv.sendAndLoad(url, _root.rst_lv, "POST");
}
}
};
var url = ((((((obj_partner.top10URL + "?game_id=") + _root.obj_game._g2wGameId) + "&order=") + obj_game._gameScoreOrder) + "&timspam") + getTimer());
mc.status_txt.text = "Connecting to Server...";
_root.send_lv.sendAndLoad(url, _root.rst_lv, "POST");
};
_initTop10 = function (mcpath, list) {
var _local3 = mcpath;
_local3.gotoAndStop("g2w_top10");
if ((list.top_score.status.data == 0) or (list.top_score.user[0].score.data == 0)) {
_top10_lbl._visible = false;
var _local2 = 0;
while (_local2 < 10) {
_local3["row" + _local2]._visible = false;
_local2++;
}
} else {
_noscore_mc._visible = false;
var _local2 = 0;
while (_local2 < 10) {
if ((list.top_score.user[_local2] == undefined) or (list.top_score.user[_local2].score.data == 0)) {
_local3["row" + _local2].txtrollno.text = "";
_local3["row" + _local2].txtusername.text = "";
_local3["row" + _local2].txtscore.text = "";
} else {
_local3["row" + _local2].txtrollno.text = _local2 + 1;
_local3["row" + _local2].txtusername.text = list.top_score.user[_local2].nick_name.data;
_local3["row" + _local2].txtscore.text = list.top_score.user[_local2].score.data;
}
_local2++;
}
}
_local3.playagain_btn.onRelease = function () {
_root.g2w_playagain(true);
};
};
var g2w_menu = new ContextMenu();
g2w_menu.hideBuiltInItems();
g2w_menu.customItems.push(new ContextMenuItem("Games2win.com", itemHandler));
itemHandler = function (obj, item) {
getURL (obj_partner.clickthru, "_blank");
};
this.menu = g2w_menu;
checkhost = function () {
trace("CALL CHECKHOST");
swfurl = this._url;
if (swfurl.indexOf("games2win.com") == -1) {
return(false);
}
return(true);
};
_trackClickThru = function (mc) {
if (obj_partner._allowclick) {
mc.hit_area.onRelease = function () {
getURL (obj_partner.clickthru, "_blank");
};
} else {
mc.hit_area.useHandCursor = false;
}
};
String.prototype.trim = function () {
var _local3 = 0;
var _local2 = this.length;
white = new Object();
white._32 = 1;
_local2--;
while (white["_" + ord(this.charAt(_local2))]) {
}
while (white["_" + ord(this.charAt(_local3++))]) {
}
return(this.slice(_local3 - 1, _local2 + 1));
};
Frame 9
stop();
Frame 21
stop();
Frame 31
stop();
Instance of Symbol 130 MovieClip in Frame 31
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int((loaded / total) * 100);
_root.text1 = ("Loaded " + percent) + "%";
gotoAndStop(percent);
if (loaded == total) {
_root.play();
}
}
Frame 37
stop();
Frame 43
stop();
story_btn.onRelease = function () {
gotoAndStop ("lblstory");
};
ins_btn.onRelease = function () {
gotoAndStop ("lblinstructions");
};
start_btn.onRelease = function () {
gotoAndStop ("lbllevel1");
};
Frame 44
start_btn.onRelease = function () {
gotoAndStop ("lbllevel1");
};
back_btn.onRelease = function () {
gotoAndStop ("lblgame");
};
Frame 54
start_btn.onRelease = function () {
gotoAndStop ("lbllevel1");
};
back_btn.onRelease = function () {
gotoAndStop ("lblgame");
};
Frame 61
if (false) {
}
Frame 62
_root.current_level = 1;
trace("LEVEL 1");
lvl = 1;
score = 0;
currAcc = 0;
currWig = 0;
currTop = 0;
currBot = 0;
currSho = 0;
startGame();
this.onEnterFrame = function () {
if (gameStart) {
if ((((accOk && (wigOk)) && (topOk)) && (botOk)) && (shoOk)) {
done_btn._visible = true;
delete this.onEnterFrame;
} else {
done_btn._visible = false;
}
}
};
oomph_mc.onEnterFrame = function () {
oomph_mc.gotoAndStop(lvlScore);
};
done_btn.onRelease = function () {
trace("tanning");
processFinScore();
if (oomph) {
tanOil_mc.gotoAndPlay(2);
} else {
pauser_mc.gotoAndPlay(2);
}
disableBtns();
};
tanOil_mc.onMouseDown = function () {
if (tanOil_mc.Playing) {
tanOil_mc.stop();
tanOil_mc.Playing = false;
processGame();
}
};
top_btn.onRelease = function () {
currMC = "top";
processVisMC();
};
acc_btn.onRelease = function () {
currMC = "acc";
processVisMC();
};
bot_btn.onRelease = function () {
currMC = "bot";
processVisMC();
};
wig_btn.onRelease = function () {
currMC = "wig";
processVisMC();
};
sho_btn.onRelease = function () {
currMC = "sho";
processVisMC();
};
Frame 70
_root.current_level = 2;
trace("LEVEL 2");
lvl = 2;
currAcc = 0;
currWig = 0;
currTop = 0;
currBot = 0;
startGame();
this.onEnterFrame = function () {
if (gameStart) {
if (((accOk && (wigOk)) && (topOk)) && (botOk)) {
done_btn._visible = true;
delete this.onEnterFrame;
} else {
done_btn._visible = false;
}
}
};
oomph_mc.onEnterFrame = function () {
oomph_mc.gotoAndStop(lvlScore);
};
done_btn.onRelease = function () {
trace("tanning");
processFinScore();
if (oomph) {
tanOil_mc.gotoAndPlay(2);
} else {
pauser_mc.gotoAndPlay(2);
}
disableBtns();
};
tanOil_mc.onMouseDown = function () {
if (tanOil_mc.Playing) {
tanOil_mc.stop();
tanOil_mc.Playing = false;
processGame();
}
};
top_btn.onRelease = function () {
currMC = "top";
processVisMC();
};
acc_btn.onRelease = function () {
currMC = "acc";
processVisMC();
};
bot_btn.onRelease = function () {
currMC = "bot";
processVisMC();
};
wig_btn.onRelease = function () {
currMC = "wig";
processVisMC();
};
Frame 77
_root.current_level = 3;
trace("LEVEL 3");
lvl = 3;
currAcc = 0;
currWig = 0;
currTop = 0;
currBot = 0;
startGame();
this.onEnterFrame = function () {
if (gameStart) {
if (((accOk && (wigOk)) && (topOk)) && (botOk)) {
done_btn._visible = true;
delete this.onEnterFrame;
} else {
done_btn._visible = false;
}
}
};
oomph_mc.onEnterFrame = function () {
oomph_mc.gotoAndStop(lvlScore);
};
done_btn.onRelease = function () {
trace("tanning");
processFinScore();
if (oomph) {
tanOil_mc.gotoAndPlay(2);
} else {
pauser_mc.gotoAndPlay(2);
}
disableBtns();
};
tanOil_mc.onMouseDown = function () {
if (tanOil_mc.Playing) {
tanOil_mc.stop();
tanOil_mc.Playing = false;
processGame();
}
};
top_btn.onRelease = function () {
currMC = "top";
processVisMC();
};
acc_btn.onRelease = function () {
currMC = "acc";
processVisMC();
};
bot_btn.onRelease = function () {
currMC = "bot";
processVisMC();
};
wig_btn.onRelease = function () {
currMC = "wig";
processVisMC();
};
Frame 85
_root.current_level = 4;
trace("LEVEL 4");
lvl = 4;
currAcc = 0;
currWig = 0;
currTop = 0;
currBot = 0;
currSho = 0;
startGame();
this.onEnterFrame = function () {
if (gameStart) {
if ((((accOk && (wigOk)) && (topOk)) && (botOk)) && (shoOk)) {
done_btn._visible = true;
delete this.onEnterFrame;
} else {
done_btn._visible = false;
}
}
};
oomph_mc.onEnterFrame = function () {
oomph_mc.gotoAndStop(lvlScore);
};
done_btn.onRelease = function () {
trace("tanning");
processFinScore();
if (oomph) {
tanOil_mc.gotoAndPlay(2);
} else {
pauser_mc.gotoAndPlay(2);
}
disableBtns();
};
tanOil_mc.onMouseDown = function () {
if (tanOil_mc.Playing) {
tanOil_mc.stop();
tanOil_mc.Playing = false;
processGame();
}
};
top_btn.onRelease = function () {
currMC = "top";
processVisMC();
};
acc_btn.onRelease = function () {
currMC = "acc";
processVisMC();
};
bot_btn.onRelease = function () {
currMC = "bot";
processVisMC();
};
wig_btn.onRelease = function () {
currMC = "wig";
processVisMC();
};
sho_btn.onRelease = function () {
currMC = "sho";
processVisMC();
};
Frame 92
partner_score = _root.score;
obj_game._gstatus = "gamecompleted";
_root._doGameOver(_root.score, "gamecompleted", false, 3000);
stopAllSounds();
Frame 103
gotoAndStop ("lblgame");
Symbol 5 MovieClip Frame 1
stop();
Symbol 5 MovieClip Frame 2
stop();
Symbol 35 MovieClip Frame 1
_root._trackClickThru(this);
Symbol 44 MovieClip Frame 1
function brain() {
create_assets(myself, _global.obj_iads.type);
switch (_global.obj_iads.type) {
case "FULL" :
mcLoader.loadClip(_global.obj_iads.url, trgt_main);
break;
case "EMBED" :
mcLoader.loadClip(_global.obj_iads.url, trgt_main.trgt_ads);
if (_global.obj_iads.link ne undefined) {
trgt_main.onRelease = function () {
trace("_global.obj_iads.link " + _global.obj_iads.link);
getURL (_global.obj_iads.link, "_blank");
};
}
break;
case "NOOP" :
_parent._parent._visible = 0;
break;
}
}
function get_iads() {
lv_iads = new XML();
lv_result = new XML();
lv_result.ignoreWhite = true;
lv_result.onLoad = function (success) {
trace("success " + success);
if (success) {
parse_iads(lv_result);
myself.attachMovie("invizi_logo", "invizi_logo", this.getNextHighestDepth(), {_x:Stage.width - 120, _y:Stage.height - 20});
}
};
lv_iads.sendAndLoad(adurl, lv_result, "POST");
}
function parse_iads(lv_result) {
_global.obj_iads = new Array();
var _local2 = 0;
while (_local2 < lv_result.firstChild.childNodes.length) {
if (lv_result.firstChild.childNodes[_local2].firstChild.nodeValue != null) {
obj_iads[lv_result.firstChild.childNodes[_local2].nodeName] = lv_result.firstChild.childNodes[_local2].firstChild.nodeValue;
} else if (lv_result.firstChild.childNodes[_local2].firstChild.firstChild.nodeValue != null) {
var _local5 = new Object();
var _local4 = 0;
while (_local4 < lv_result.firstChild.childNodes[_local2].childNodes.length) {
_local5[lv_result.firstChild.childNodes[_local2].childNodes[_local4].nodeName] = lv_result.firstChild.childNodes[_local2].childNodes[_local4].firstChild.nodeValue;
_local4++;
}
obj_iads[lv_result.firstChild.childNodes[_local2].nodeName] = _local5;
}
_local2++;
}
show_time = int(_global.obj_iads.t);
check_type();
}
function create_assets(mc, _type) {
trace((("Create _ assets " + mc) + " ") + _type);
mc.createEmptyMovieClip("trgt_main", 4);
mcLoader = new MovieClipLoader();
mcLoader.addListener(mc);
if (_type != "FULL") {
mc.createEmptyMovieClip("square_mc", 5);
var _local4 = trgt_main.createEmptyMovieClip("trgt_ads", getNextHighestDepth());
var _local2 = new TextFormat();
_local2.align = "center";
_local2.font = "Verdana";
_local2.size = 10;
mc.createTextField("h_txt", mc.getNextHighestDepth(), 0, 0, 100, 22);
mc.createTextField("b_txt", mc.getNextHighestDepth(), 0, 0, 100, 22);
b_txt.autoSize = true;
b_txt.selectable = false;
h_txt.selectable = false;
b_txt.multiline = true;
b_txt.setNewTextFormat(_local2);
h_txt.autoSize = true;
h_txt.setNewTextFormat(_local2);
h_txt.text = "";
}
}
function onLoadInit(mc) {
ad_width = int(_global.obj_iads.x);
ad_height = int(_global.obj_iads.y);
_x = ((336 - ad_width) / 2);
_y = ((280 - ad_height) / 2);
progressBar.tim = show_time;
progressBar.width = _global.obj_iads.x;
progressBar.height = 15;
progressBar.start = function () {
maxw = this.width - 2;
this.ad = maxw / (this.tim + 1);
this.ad = this.ad / game_fps;
};
progressBar.onEnterFrame = function () {
if (this.bar._width < (this.width - 2)) {
this.bar._width = this.bar._width + this.ad;
} else {
this.bar._width = this.width;
}
};
progressBar._x = 100;
progressBar._y = 100;
bar_mc = progressBar.createEmptyMovieClip("bar", 1);
box_mc = progressBar.createEmptyMovieClip("box", 2);
bar_mc.beginFill(26112);
bar_mc.moveTo(0, 0);
bar_mc.lineTo(1, 0);
bar_mc.lineTo(1, progressBar.height - 2);
bar_mc.lineTo(0, progressBar.height - 2);
bar_mc.lineTo(0, 0);
bar_mc.endFill();
bar_mc._x = 1.5;
bar_mc._y = 1.5;
box_mc.lineStyle(1, 3355443, 100, true, "none", "round", "miter", 1);
box_mc.lineTo(progressBar.width, 0);
box_mc.lineTo(progressBar.width, progressBar.height);
box_mc.lineTo(0, progressBar.height);
box_mc.lineTo(0, 0);
box_mc._x = 0;
box_mc._y = 0;
progressBar.start();
x = 0;
y = 0;
mc._x = x;
mc._y = y;
square_mc.beginFill(16711680);
square_mc.moveTo(0, 0);
square_mc.lineTo(ad_width, 0);
square_mc.lineTo(ad_width, ad_height);
square_mc.lineTo(0, ad_height);
square_mc.lineTo(0, 0);
square_mc.endFill();
square_mc._x = x;
square_mc._y = y;
trgt_main.setMask(square_mc);
}
function check_type() {
if (_global.obj_iads.type eq "UPDATE") {
this.createEmptyMovieClip("holder", 100);
var _local4 = _global.obj_iads.url;
_root.obj_iads = _global.obj_iads.payload;
holder.loadMovie(_global.obj_iads.url);
holder.obj_iads = _root.obj_iads;
show_time = 20;
} else {
brain();
}
}
function parse_xml(mydata) {
var _local4 = new Array();
var _local1 = 0;
while (_local1 < mydata.firstChild.childNodes.length) {
if (mydata.firstChild.childNodes[_local1].firstChild.nodeValue != null) {
_local4[mydata.firstChild.childNodes[_local1].nodeName] = mydata.firstChild.childNodes[_local1].firstChild.nodeValue;
} else if (mydata.firstChild.childNodes[_local1].firstChild.firstChild.nodeValue != null) {
var _local5 = new Object();
var _local2 = 0;
while (_local2 < lv_result.firstChild.childNodes[_local1].childNodes.length) {
_local4[lv_result.firstChild.childNodes[_local1].childNodes[_local2].nodeName] = mydata.firstChild.childNodes[_local1].childNodes[_local2].firstChild.nodeValue;
_local2++;
}
_local4[lv_result.firstChild.childNodes[_local1].nodeName] = _local5;
}
_local1++;
}
return(_local4);
}
System.security.allowDomain("*");
this.getFps = function () {
if (signal == true) {
time = getTimer();
} else {
tempo = int(1000 / (getTimer() - time));
}
signal = !signal;
return(tempo);
};
this.onEnterFrame = function () {
game_fps = getFps();
if ((game_fps ne 0) and (game_fps ne undefined)) {
this.onEnterFrame = null;
}
};
myself = this;
signal = true;
adurl = (_root.obj_game.inviziads + "&type=post&ts=") + getTimer();
trace(adurl);
get_iads();
stop();
Symbol 47 MovieClip Frame 1
invizi_logo.onRelease = function () {
getURL ("http://www.inviziads.com/", "_blank");
};
Symbol 58 Button
on (release) {
trace("CALLING : _root.g2w_playagain()");
_root.g2w_playagain();
}
Symbol 61 Button
on (release) {
trace("CALLING : _root.g2w_skiplevel()");
_root.g2w_skiplevel();
}
Symbol 62 MovieClip Frame 1
stop();
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 1
stop();
_root._validateHost(this);
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 2
stop();
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 11
stop();
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 20
stop();
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 30
stop();
Symbol 79 MovieClip [_g2w_gameover_mc] Frame 41
stop();
Symbol 84 MovieClip [game_sound_ctrl] Frame 1
_gameSounds = new Sound();
var frame = "on";
changeVol = function (targetvol, step) {
this.onEnterFrame = function () {
var _local3 = _gameSounds.getVolume();
if ((step < 0) and (_local3 <= targetvol)) {
_local3 = targetvol;
delete this.onEnterFrame;
_root.so_sound = 1;
} else if ((step > 0) and (_local3 >= targetvol)) {
_local3 = targetvol;
delete this.onEnterFrame;
_root.so_sound = 0;
} else {
_gameSounds.setVolume(_local3 + step);
}
};
};
if (_root.so_sound == 1) {
frame = "off";
this.gotoAndPlay(frame);
}
this.onRelease = function () {
if (frame == "on") {
frame = "off";
} else {
frame = "on";
}
this.gotoAndPlay(frame);
};
Symbol 84 MovieClip [game_sound_ctrl] Frame 2
stop();
changeVol(100, 5);
Symbol 84 MovieClip [game_sound_ctrl] Frame 3
stop();
changeVol(0, -5);
Symbol 89 MovieClip [brain_inviziads] Frame 1
function brain() {
create_assets(myself, _global.obj_iads.type);
switch (_global.obj_iads.type) {
case "FULL" :
mcLoader.loadClip(_global.obj_iads.url, trgt_main);
break;
case "EMBED" :
mcLoader.loadClip(_global.obj_iads.url, trgt_main.trgt_ads);
if (_global.obj_iads.link ne undefined) {
trgt_main.onRelease = function () {
trace("_global.obj_iads.link " + _global.obj_iads.link);
getURL (_global.obj_iads.link, "_blank");
};
}
break;
case "NOOP" :
clearInterval(int1);
_parent.play();
break;
}
}
function get_iads() {
lv_iads = new XML();
lv_result = new XML();
lv_result.ignoreWhite = true;
lv_result.onLoad = function (success) {
trace("success " + success);
if (success) {
parse_iads(lv_result);
} else {
_root.play();
}
};
lv_iads.g = game_id;
lv_iads.sendAndLoad(_root.adurl, lv_result, "POST");
}
function parse_iads(lv_result) {
_global.obj_iads = new Array();
var _local2 = 0;
while (_local2 < lv_result.firstChild.childNodes.length) {
if (lv_result.firstChild.childNodes[_local2].firstChild.nodeValue != null) {
obj_iads[lv_result.firstChild.childNodes[_local2].nodeName] = lv_result.firstChild.childNodes[_local2].firstChild.nodeValue;
} else if (lv_result.firstChild.childNodes[_local2].firstChild.firstChild.nodeValue != null) {
var _local5 = new Object();
var _local4 = 0;
while (_local4 < lv_result.firstChild.childNodes[_local2].childNodes.length) {
_local5[lv_result.firstChild.childNodes[_local2].childNodes[_local4].nodeName] = lv_result.firstChild.childNodes[_local2].childNodes[_local4].firstChild.nodeValue;
_local4++;
}
obj_iads[lv_result.firstChild.childNodes[_local2].nodeName] = _local5;
}
_local2++;
}
show_time = int(_global.obj_iads.t);
check_type();
}
function time_delay() {
tim = 0;
int1 = setInterval(timespam, 1000);
}
function timespam() {
tim++;
trace(((tim + " tim Tim") + " show_time") + show_time);
if (tim == show_time) {
clearInterval(int1);
_parent.play();
}
}
function create_assets(mc, _type) {
trace((("Create _ assets " + mc) + " ") + _type);
mc.createEmptyMovieClip("trgt_main", 4);
mcLoader = new MovieClipLoader();
mcLoader.addListener(mc);
if (_type != "FULL") {
mc.createEmptyMovieClip("square_mc", 5);
var _local4 = trgt_main.createEmptyMovieClip("trgt_ads", getNextHighestDepth());
var _local2 = new TextFormat();
_local2.align = "center";
_local2.font = "Verdana";
_local2.size = 10;
mc.createTextField("h_txt", mc.getNextHighestDepth(), 0, 0, 100, 22);
mc.createTextField("b_txt", mc.getNextHighestDepth(), 0, 0, 100, 22);
b_txt.autoSize = true;
b_txt.selectable = false;
h_txt.selectable = false;
b_txt.multiline = true;
b_txt.setNewTextFormat(_local2);
h_txt.autoSize = true;
h_txt.setNewTextFormat(_local2);
h_txt.text = "";
mc.createEmptyMovieClip("progressBar", 500);
}
}
function onLoadInit(mc) {
ad_width = int(_global.obj_iads.x);
ad_height = int(_global.obj_iads.y);
trace("Ad Width : " + ad_width);
trace("Ad Height : " + ad_height);
h_txt.text = "Advertisement";
progressBar.tim = show_time;
progressBar.width = _global.obj_iads.x;
progressBar.height = 15;
progressBar.start = function () {
game_fps = getFps();
maxw = this.width - 2;
this.ad = maxw / (this.tim + 1);
this.ad = this.ad / game_fps;
};
progressBar.onEnterFrame = function () {
if (this.bar._width < (this.width - 2)) {
this.bar._width = this.bar._width + this.ad;
} else {
this.bar._width = this.width;
}
};
progressBar._x = 100;
progressBar._y = 100;
bar_mc = progressBar.createEmptyMovieClip("bar", 1);
box_mc = progressBar.createEmptyMovieClip("box", 2);
bar_mc.beginFill(26112);
bar_mc.moveTo(0, 0);
bar_mc.lineTo(1, 0);
bar_mc.lineTo(1, progressBar.height - 2);
bar_mc.lineTo(0, progressBar.height - 2);
bar_mc.lineTo(0, 0);
bar_mc.endFill();
bar_mc._x = 1.5;
bar_mc._y = 1.5;
box_mc.lineStyle(1, 3355443, 100, true, "none", "round", "miter", 1);
box_mc.lineTo(progressBar.width, 0);
box_mc.lineTo(progressBar.width, progressBar.height);
box_mc.lineTo(0, progressBar.height);
box_mc.lineTo(0, 0);
box_mc._x = 0;
box_mc._y = 0;
progressBar.start();
b_txt.text = "Note\rClicking on the above Ad won't interrupt your game.\r Ad link opens in a new window.";
myself._y = b_txt._y - 10;
x = (Stage.width / 2) - (ad_width / 2);
y = (Stage.height / 2) - (ad_height / 2);
mc._x = x;
mc._y = y;
h_txt._x = (x + (ad_width / 2)) - (h_txt._width / 2);
if ((_embedscale = "down")) {
h_txt._y = y - 40;
}
progressBar._x = (x + (ad_width / 2)) - (progressBar._width / 2);
progressBar._y = (y + 5) + ad_height;
myself.attachMovie("invizi_logo", "invizi_logo", this.getNextHighestDepth(), {_x:int(progressBar._x + progressBar._width) - 114, _y:int((progressBar._y + progressBar._height) + 5)});
myself.invizi_logo.onRelease = function () {
getURL ("http://www.inviziads.com", "_blank");
};
b_txt._x = (x + (ad_width / 2)) - (b_txt._width / 2);
b_txt._y = progressBar._y + 30;
square_mc.beginFill(16711680);
square_mc.moveTo(0, 0);
square_mc.lineTo(ad_width, 0);
square_mc.lineTo(ad_width, ad_height);
square_mc.lineTo(0, ad_height);
square_mc.lineTo(0, 0);
square_mc.endFill();
square_mc._x = x;
square_mc._y = y;
trgt_main.setMask(square_mc);
var _local5 = ((Stage.width - scaled_width) / scaled_width) * 100;
var _local4 = ((Stage.height - scaled_height) / scaled_height) * 100;
this._xscale = 100 + _local5;
this._yscale = 100 + _local4;
new_xpos = (-(((Stage.width * this._xscale) / 100) - Stage.width)) / 2;
new_ypos = (-(((Stage.height * this._yscale) / 100) - Stage.height)) / 2;
_parent[this._name]._x = new_xpos;
_parent[this._name]._y = new_ypos;
}
function check_type() {
if (_global.obj_iads.type eq "UPDATE") {
trace(" _global.obj_iads.payload.type " + _global.obj_iads.payload.type);
this.createEmptyMovieClip("holder", 100);
var _local4 = _global.obj_iads.url;
_root.obj_iads = _global.obj_iads.payload;
holder.loadMovie(_global.obj_iads.url);
holder.obj_iads = _root.obj_iads;
show_time = 20;
} else {
brain();
}
time_delay();
}
function parse_xml(mydata) {
var _local4 = new Array();
var _local1 = 0;
while (_local1 < mydata.firstChild.childNodes.length) {
if (mydata.firstChild.childNodes[_local1].firstChild.nodeValue != null) {
_local4[mydata.firstChild.childNodes[_local1].nodeName] = mydata.firstChild.childNodes[_local1].firstChild.nodeValue;
} else if (mydata.firstChild.childNodes[_local1].firstChild.firstChild.nodeValue != null) {
var _local5 = new Object();
var _local2 = 0;
while (_local2 < lv_result.firstChild.childNodes[_local1].childNodes.length) {
_local4[lv_result.firstChild.childNodes[_local1].childNodes[_local2].nodeName] = mydata.firstChild.childNodes[_local1].childNodes[_local2].firstChild.nodeValue;
_local2++;
}
_local4[lv_result.firstChild.childNodes[_local1].nodeName] = _local5;
}
_local1++;
}
return(_local4);
}
System.security.allowDomain("*");
Stage.scaleMode = "noscale";
scaled_width = Stage.width;
scaled_height = Stage.height;
Stage.scaleMode = "showAll";
Object.prototype.getFps = function () {
if (signal == true) {
time = getTimer();
} else {
tempo = int(1000 / (getTimer() - time));
}
signal = !signal;
return(tempo);
};
this.onEnterFrame = function () {
game_fps = getFps();
if ((game_fps != 0) && (game_fps != undefined)) {
this.onEnterFrame = null;
}
};
myself = this;
signal = true;
_root.adurl = (_root.obj_game.inviziads + "&ts=") + getTimer();
stop();
if (_root.checkhost()) {
_root.play();
} else {
get_iads();
}
Symbol 655 MovieClip [__Packages.it.sephiroth.XML2Object] Frame 0
class it.sephiroth.XML2Object
{
var oXML;
function XML2Object () {
}
function get xml() {
return(oXML);
}
function parseXML(sFile) {
oResult = new Object();
oXML = sFile;
oResult = translateXML();
return(oResult);
}
function translateXML(from, path, name, position) {
var _local2;
var _local9;
var _local4;
var _local10;
if (path == undefined) {
path = this;
name = "oResult";
}
path = path[name];
if (from == undefined) {
from = new XML(xml.toString());
from.ignoreWhite = true;
}
if (from.hasChildNodes()) {
_local9 = from.childNodes;
if (position != undefined) {
_local10 = path;
path = path[position];
}
while (_local9.length > 0) {
_local4 = _local9.shift();
_local2 = _local4.nodeName;
if (_local2 != undefined) {
var _local5 = new Object();
_local5.attributes = _local4.attributes;
_local5.data = _local4.firstChild.nodeValue;
if (position != undefined) {
_local10 = path;
}
if (path[_local2] != undefined) {
if (path[_local2].__proto__ == Array.prototype) {
path[_local2].push(_local5);
name = _local4.nodeName;
position = path[_local2].length - 1;
} else {
var _local8 = path[_local2];
path[_local2] = new Array();
path[_local2].push(_local8);
path[_local2].push(_local5);
name = _local2;
position = path[_local2].length - 1;
}
} else {
path[_local2] = _local5;
name = _local2;
position = undefined;
}
}
if (_local4.hasChildNodes()) {
translateXML(_local4, path, name, position);
}
}
}
return(oResult);
}
var oResult = new Object();
}
Symbol 126 MovieClip Frame 120
stop();
_root.gotoAndStop("lblloader");
trace("--------------------------");
Symbol 138 MovieClip Frame 1
trace("intro=" + _root.intro);
if (_root.intro eq true) {
gotoAndStop ("end");
}
Symbol 138 MovieClip Frame 88
stop();
_root.intro = true;
_parent.gotoAndStop("lblgame");
Symbol 142 MovieClip Frame 1
if (_root.intro1 eq true) {
gotoAndStop ("end");
}
Symbol 142 MovieClip Frame 25
stop();
_root.intro1 = true;
Symbol 185 MovieClip Frame 1
stop();
_parent._parent.shoOk = false;
Symbol 185 MovieClip Frame 2
_parent._parent.shoScore = 1;
_parent._parent.shoOk = true;
_parent._parent.processScore();
Symbol 185 MovieClip Frame 3
_parent._parent.shoScore = 2;
_parent._parent.shoOk = true;
_parent._parent.processScore();
Symbol 185 MovieClip Frame 4
_parent._parent.shoScore = 0;
_parent._parent.shoOk = true;
_parent._parent.processScore();
Symbol 185 MovieClip Frame 5
_parent._parent.shoScore = 0;
_parent._parent.shoOk = true;
_parent._parent.processScore();
Symbol 185 MovieClip Frame 6
_parent._parent.shoScore = 1;
_parent._parent.shoOk = true;
_parent._parent.processScore();
Symbol 192 MovieClip Frame 1
stop();
_parent._parent.botOk = false;
Symbol 192 MovieClip Frame 2
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 192 MovieClip Frame 3
_parent._parent.botScore = 2;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 192 MovieClip Frame 4
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 192 MovieClip Frame 5
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 192 MovieClip Frame 6
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 199 MovieClip Frame 1
stop();
_parent._parent.topOk = false;
Symbol 199 MovieClip Frame 2
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 199 MovieClip Frame 3
_parent._parent.topScore = 2;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 199 MovieClip Frame 4
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 199 MovieClip Frame 5
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 199 MovieClip Frame 6
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 206 MovieClip Frame 1
stop();
_parent._parent.wigOk = false;
Symbol 206 MovieClip Frame 2
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 206 MovieClip Frame 3
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 206 MovieClip Frame 4
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 206 MovieClip Frame 5
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 206 MovieClip Frame 6
_parent._parent.wigScore = 2;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 212 MovieClip Frame 1
stop();
_parent._parent.accOk = false;
Symbol 212 MovieClip Frame 2
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 212 MovieClip Frame 3
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 212 MovieClip Frame 4
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 212 MovieClip Frame 5
_parent._parent.accScore = 2;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 212 MovieClip Frame 6
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 219 MovieClip [Cabana_Plain] Frame 1
stop();
Symbol 252 Button
on (release) {
released = true;
stopDrag();
}
on (press) {
released = false;
startDrag ("");
}
Symbol 262 MovieClip Frame 1
stop();
Instance of Symbol 253 MovieClip "sho1" in Symbol 262 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.shodet)) {
trace("DETECTED!");
_parent._parent.currSho = 1;
_parent._parent.processSho();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 255 MovieClip "sho2" in Symbol 262 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.shodet)) {
trace("DETECTED!");
_parent._parent.currSho = 2;
_parent._parent.processSho();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 257 MovieClip "sho3" in Symbol 262 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.shodet)) {
trace("DETECTED!");
_parent._parent.currSho = 3;
_parent._parent.processSho();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 259 MovieClip "sho4" in Symbol 262 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.shodet)) {
trace("DETECTED!");
_parent._parent.currSho = 4;
_parent._parent.processSho();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 261 MovieClip "sho5" in Symbol 262 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.shodet)) {
trace("DETECTED!");
_parent._parent.currSho = 5;
_parent._parent.processSho();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 271 MovieClip Frame 1
stop();
Instance of Symbol 263 MovieClip "bot1" in Symbol 271 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 1;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 265 MovieClip "bot2" in Symbol 271 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 2;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 266 MovieClip "bot3" in Symbol 271 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 3;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 268 MovieClip "bot4" in Symbol 271 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 4;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 270 MovieClip "bot5" in Symbol 271 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 5;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 282 MovieClip Frame 1
stop();
Instance of Symbol 273 MovieClip "top2" in Symbol 282 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 2;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 275 MovieClip "top1" in Symbol 282 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 1;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 277 MovieClip "top3" in Symbol 282 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 3;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 279 MovieClip "top4" in Symbol 282 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 4;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 281 MovieClip "top5" in Symbol 282 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 5;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 292 MovieClip Frame 1
stop();
Instance of Symbol 284 MovieClip "wig1" in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 1;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 285 MovieClip "wig5" in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 5;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 287 MovieClip "wig4" in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 4;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 289 MovieClip "wig2" in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 2;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 291 MovieClip "wig3" in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 3;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 298 MovieClip Frame 1
stop();
Instance of Symbol 293 MovieClip "acc2" in Symbol 298 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 2;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 294 MovieClip "acc1" in Symbol 298 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 1;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 295 MovieClip "acc5" in Symbol 298 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 5;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 296 MovieClip "acc4" in Symbol 298 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 4;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 297 MovieClip "acc3" in Symbol 298 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 3;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 312 MovieClip Frame 5
stop();
Symbol 313 MovieClip Frame 1
_parent.oomph = false;
stop();
Symbol 313 MovieClip Frame 1000
_parent.oomph = true;
stop();
Symbol 321 MovieClip Frame 1
stop();
Symbol 321 MovieClip Frame 2
play();
Symbol 321 MovieClip Frame 71
if (_parent.lvl < 4) {
_parent.gotoAndStop("lbllevel" + [_parent.lvl + 1]);
} else {
_parent.gotoAndStop("lblgameover");
}
Symbol 333 MovieClip Frame 1
stop();
Symbol 333 MovieClip Frame 2
play();
Symbol 333 MovieClip Frame 102
if (_parent.lvl < 4) {
_parent.gotoAndStop("lbllevel" + [_parent.lvl + 1]);
} else {
trace("..........lblgameover............");
_parent.gotoAndStop("lblgameover");
}
Symbol 350 MovieClip Frame 1
stop();
Playing = false;
Symbol 350 MovieClip Frame 2
if (_parent.lvl == 1) {
oil1._visible = false;
oil3._visible = false;
oil4._visible = false;
} else if (_parent.lvl == 2) {
oil1._visible = false;
oil3._visible = false;
oil4._visible = false;
} else if (_parent.lvl == 3) {
oil2._visible = false;
oil3._visible = false;
oil4._visible = false;
} else if (_parent.lvl == 4) {
oil1._visible = false;
oil3._visible = false;
oil2._visible = false;
}
Playing = true;
_parent.Tan = 2;
_parent.girl.gotoAndStop(3);
Symbol 350 MovieClip Frame 6
_parent.Tan = 4;
_parent.girl.gotoAndStop(5);
Symbol 350 MovieClip Frame 13
_parent.Tan = 1;
_parent.girl.gotoAndStop(2);
Symbol 350 MovieClip Frame 20
_parent.Tan = 3;
_parent.girl.gotoAndStop(4);
Symbol 350 MovieClip Frame 29
_parent.Tan = 1;
_parent.girl.gotoAndStop(2);
Symbol 350 MovieClip Frame 35
_parent.Tan = 4;
_parent.girl.gotoAndStop(5);
Symbol 350 MovieClip Frame 42
_parent.Tan = 2;
_parent.girl.gotoAndStop(3);
Symbol 350 MovieClip Frame 45
gotoAndPlay (2);
Symbol 351 MovieClip Frame 1
stop();
Symbol 351 MovieClip Frame 2
play();
Symbol 351 MovieClip Frame 15
if (_parent.lvl < 4) {
_parent.gotoAndStop("lbllevel" + [_parent.lvl + 1]);
} else {
_parent.gotoAndStop("lblgameover");
}
stop();
Symbol 353 Button
on (rollOver) {
bb.useHandCursor = false;
}
Symbol 357 Button
on (release) {
_parent.nextFrame();
}
Symbol 376 MovieClip Frame 1
stop();
_parent._parent.botOk = false;
Symbol 376 MovieClip Frame 2
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 376 MovieClip Frame 3
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 376 MovieClip Frame 4
_parent._parent.botScore = 2;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 376 MovieClip Frame 5
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 376 MovieClip Frame 6
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 376 MovieClip Frame 7
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 1
stop();
_parent._parent.topOk = false;
Symbol 384 MovieClip Frame 2
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 3
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 4
_parent._parent.topScore = 2;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 5
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 6
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 384 MovieClip Frame 7
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 1
stop();
_parent._parent.wigOk = false;
Symbol 392 MovieClip Frame 2
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 3
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 4
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 5
_parent._parent.wigScore = 2;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 6
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 392 MovieClip Frame 7
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 1
stop();
_parent._parent.accOk = false;
Symbol 399 MovieClip Frame 2
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 3
_parent._parent.accScore = 4;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 4
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 5
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 6
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 399 MovieClip Frame 7
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 404 MovieClip Frame 1
stop();
Instance of Symbol 412 MovieClip "bot1" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 1;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 414 MovieClip "bot2" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 2;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 415 MovieClip "bot3" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 3;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 417 MovieClip "bot4" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 4;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 418 MovieClip "bot5" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 5;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 420 MovieClip "bot6" in Symbol 421 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 6;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 423 MovieClip "top1" in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 1;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 425 MovieClip "top2" in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 2;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 427 MovieClip "top3" in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 3;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 429 MovieClip in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 4;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 431 MovieClip "top5" in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 5;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 432 MovieClip "top6" in Symbol 433 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 6;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 435 MovieClip "wig1" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 1;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 437 MovieClip "wig2" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 2;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 439 MovieClip "wig3" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 3;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 441 MovieClip "wig4" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 4;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 443 MovieClip "wig5" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 5;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 445 MovieClip "wig6" in Symbol 446 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 6;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 448 MovieClip "acc1" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 1;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 450 MovieClip "acc2" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 2;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 452 MovieClip "acc3" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 3;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 454 MovieClip "acc4" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 4;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 456 MovieClip "acc5" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 5;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 458 MovieClip "acc6" in Symbol 459 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 6;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 474 MovieClip Frame 1
stop();
_parent._parent.botOk = false;
Symbol 474 MovieClip Frame 2
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 474 MovieClip Frame 3
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 474 MovieClip Frame 4
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 474 MovieClip Frame 5
_parent._parent.botScore = 2;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 474 MovieClip Frame 6
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 474 MovieClip Frame 7
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 1
stop();
_parent._parent.topOk = false;
Symbol 482 MovieClip Frame 2
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 3
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 4
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 5
_parent._parent.topScore = 2;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 6
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 482 MovieClip Frame 7
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 1
stop();
_parent._parent.wigOk = false;
Symbol 490 MovieClip Frame 2
_parent._parent.wigScore = 2;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 3
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 4
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 5
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 6
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 490 MovieClip Frame 7
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 1
stop();
_parent._parent.accOk = false;
Symbol 497 MovieClip Frame 2
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 3
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 4
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 5
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 6
_parent._parent.accScore = 4;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 497 MovieClip Frame 7
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 502 MovieClip Frame 1
stop();
Symbol 517 MovieClip Frame 1
stop();
Instance of Symbol 506 MovieClip "bot1" in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 1;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 508 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 2;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 510 MovieClip "bot3" in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 3;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 512 MovieClip "bot4" in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 4;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 514 MovieClip "bot5" in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 5;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 516 MovieClip "bot6" in Symbol 517 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 6;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 530 MovieClip Frame 1
stop();
Instance of Symbol 519 MovieClip "top1" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 1;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 521 MovieClip "top2" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 2;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 523 MovieClip "top3" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 3;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 525 MovieClip "top4" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 4;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 527 MovieClip "top5" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 5;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 529 MovieClip "top6" in Symbol 530 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 6;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 543 MovieClip Frame 1
stop();
Instance of Symbol 532 MovieClip "wig1" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 1;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 534 MovieClip "wig2" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 2;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 536 MovieClip "wig3" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 3;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 538 MovieClip "wig4" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 4;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 540 MovieClip "wig5" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 5;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 542 MovieClip "wig6" in Symbol 543 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 6;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 555 MovieClip Frame 1
stop();
Instance of Symbol 545 MovieClip "acc1" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 1;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 547 MovieClip "acc2" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 2;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 549 MovieClip "acc3" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 3;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 551 MovieClip "acc4" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 4;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 553 MovieClip "acc5" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 5;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 554 MovieClip "acc6" in Symbol 555 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 6;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 567 MovieClip Frame 1
stop();
_parent._parent.botOk = false;
Symbol 567 MovieClip Frame 2
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 567 MovieClip Frame 3
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 567 MovieClip Frame 4
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 567 MovieClip Frame 5
_parent._parent.botScore = 1;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 567 MovieClip Frame 6
_parent._parent.botScore = 2;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 567 MovieClip Frame 7
_parent._parent.botScore = 0;
_parent._parent.botOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 1
stop();
_parent._parent.topOk = false;
Symbol 575 MovieClip Frame 2
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 3
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 4
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 5
_parent._parent.topScore = 1;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 6
_parent._parent.topScore = 0;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 575 MovieClip Frame 7
_parent._parent.topScore = 2;
_parent._parent.topOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 1
stop();
_parent._parent.wigOk = false;
Symbol 583 MovieClip Frame 2
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 3
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 4
_parent._parent.wigScore = 2;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 5
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 6
_parent._parent.wigScore = 1;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 583 MovieClip Frame 7
_parent._parent.wigScore = 0;
_parent._parent.wigOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 1
stop();
_parent._parent.accOk = false;
Symbol 590 MovieClip Frame 2
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 3
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 4
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 5
_parent._parent.accScore = 4;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 6
_parent._parent.accScore = 1;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 590 MovieClip Frame 7
_parent._parent.accScore = 0;
_parent._parent.accOk = true;
_parent._parent.processScore();
Symbol 595 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 1
stop();
Instance of Symbol 599 MovieClip "bot1" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 1;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 601 MovieClip "bot2" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 2;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 603 MovieClip "bot3" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 3;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 605 MovieClip "bot4" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 4;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 607 MovieClip "bot5" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 5;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 609 MovieClip "bot6" in Symbol 610 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.botdet)) {
trace("DETECTED!");
_parent._parent.currBot = 6;
_parent._parent.processBot();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 623 MovieClip Frame 1
stop();
Instance of Symbol 612 MovieClip "top1" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 1;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 614 MovieClip "top2" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 2;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 616 MovieClip "top3" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 3;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 618 MovieClip "top4" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 4;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 620 MovieClip "top5" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 5;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 622 MovieClip "top6" in Symbol 623 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.topdet)) {
trace("DETECTED!");
_parent._parent.currTop = 6;
_parent._parent.processTop();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 636 MovieClip Frame 1
stop();
Instance of Symbol 625 MovieClip "wig1" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 1;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 627 MovieClip "wig2" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 2;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 629 MovieClip "wig3" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 3;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 631 MovieClip "wig4" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 4;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 633 MovieClip "wig5" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 5;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 635 MovieClip "wig6" in Symbol 636 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.wigdet)) {
trace("DETECTED!");
_parent._parent.currWig = 6;
_parent._parent.processWig();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Symbol 648 MovieClip Frame 1
stop();
Instance of Symbol 638 MovieClip "acc1" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 1;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 640 MovieClip "acc2" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 2;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 642 MovieClip "acc3" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 3;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 644 MovieClip "acc4" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 4;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 646 MovieClip "acc5" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 5;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}
Instance of Symbol 647 MovieClip "acc6" in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
this_x = this._x;
this_y = this._y;
}
onClipEvent (enterFrame) {
if (_parent._parent.gameStart) {
if (released) {
if (this.hitTest(_parent._parent.girl.accdet)) {
trace("DETECTED!");
_parent._parent.currAcc = 6;
_parent._parent.processAcc();
_x = this_x;
_y = this_y;
} else {
_x = this_x;
_y = this_y;
}
}
}
}