Frame 1
function getXmlData() {
trace("-----------------------------------------------");
trace("\uAC8C\uC784\uC744 \uC704\uD55C \uCD08\uAE30 xml \uB85C\uB4DC");
trace("-----------------------------------------------");
var _local2;
var _local3;
var _local4 = xmldoc.firstChild.firstChild;
while (_local4 != null) {
_local2 = _local4.nodeName;
_local3 = _local4.firstChild.nodeValue;
if (_local2 == "allowDomain") {
allowDomain = _local3;
trace("domain:" + allowDomain);
} else if (_local2 == "configfile") {
_root.configfile = _local3;
trace("configfile:" + _root.configfile);
} else if (_local2 == "updatefile") {
_root.updatefile = _local3;
trace("updatefile:" + _root.updatefile);
} else if (_local2 == "loginfile") {
_root.loginfile = _local3;
trace("loginfile:" + _root.loginfile);
} else if (_local2 == "cristal") {
cristal = _local3;
trace("cirstal:" + cristal);
} else if (_local2 == "popmsg") {
popmsg = _local3;
trace("popmsg:" + popmsg);
}
_local4 = _local4.nextSibling;
}
_root.cristalpoint = cristal.split(",");
_root.popmessage = popmsg.split(",");
trace("-----------------------------------------------");
}
function dbCon(filename) {
dbs = new LoadVars();
dbs.onLoad = function (success) {
pt.loginstate = dbs.loginstate;
if (success) {
trace("database connect success!! - " + pt.loginstate);
if (pt.loginstate != "Y") {
getURL (loginfile);
}
} else {
trace("database connect failure!!");
getURL (loginfile);
}
};
randoms = Math.random();
dbs.load((((filename + "?rnd=") + randoms) + "&gameid=") + _root.gameid);
}
var pt = _root;
System.useCodepage = true;
if (_root.xmldir == undefined) {
_root.xmldir = "../";
}
xmldoc = new XML();
xmldoc.ignoreWhite = true;
xmldoc.load(_root.xmldir + "codi.xml");
xmldoc.onLoad = getXmlData;
System.security.allowDomain("*");
stop();
Instance of Symbol 100 MovieClip in Frame 1
on (release) {
getURL ("http://www.z-squad.co.kr", "_blank");
}
Frame 2
function clothesMove(states) {
if (states == "left") {
pt.clothes.onEnterFrame = function () {
if (pt.clothes.area2._x > (carea1 + 206.3)) {
pt.clothes.area1._x = pt.clothes.area1._x - sp;
pt.clothes.area2._x = pt.clothes.area2._x - sp;
var _local2 = 1;
while (_local2 <= cnum.length) {
var _local1 = 1;
while (_local1 <= cnum[_local2 - 1]) {
pt.clothes[(("c" + _local2) + "_") + _local1]._x = pt.clothes[(("c" + _local2) + "_") + _local1]._x - sp;
pt.clothes[(("c" + _local2) + "_") + _local1].x = pt.clothes[(("c" + _local2) + "_") + _local1]._x;
_local1++;
}
_local2++;
}
}
};
} else if (states == "right") {
pt.clothes.onEnterFrame = function () {
if (pt.clothes.area1._x < carea1) {
pt.clothes.area1._x = pt.clothes.area1._x + sp;
pt.clothes.area2._x = pt.clothes.area2._x + sp;
var _local2 = 1;
while (_local2 <= cnum.length) {
var _local1 = 1;
while (_local1 <= cnum[_local2 - 1]) {
pt.clothes[(("c" + _local2) + "_") + _local1]._x = pt.clothes[(("c" + _local2) + "_") + _local1]._x + sp;
pt.clothes[(("c" + _local2) + "_") + _local1].x = pt.clothes[(("c" + _local2) + "_") + _local1]._x;
_local1++;
}
_local2++;
}
}
};
}
}
function soundWav(num) {
switch (num) {
case "clothes" :
var _local1 = new Sound();
_local1.attachSound("clothes");
_local1.setVolume(100);
_local1.start(0, 1);
break;
case "bgm" :
_local1 = new Sound();
_local1.attachSound("bgm");
_local1.setVolume(100);
_local1.start(0, 999);
break;
case "nick" :
_local1 = new Sound();
_local1.attachSound("nick");
_local1.setVolume(100);
_local1.start(0, 1);
break;
case "etc" :
_local1 = new Sound();
_local1.attachSound("etc");
_local1.setVolume(50);
_local1.start(0, 1);
}
}
stop();
stopAllSounds();
var pt = _root;
var h_rnd = (random(5) + 1);
pt.charac.head.gotoAndStop(h_rnd);
pt.msg.gotoAndStop(h_rnd);
var cnum = new Array();
cnum = [11, 10, 3, 3, 11, 3, 3, 1, 2, 3];
var sp = 10;
var codiArr = [];
var i = 0;
while (i < 19) {
_root.codiArr[i] = 0;
i++;
}
_root.mdep1 = _root.charac.m1.getDepth();
codiArr[0] = h_rnd;
gamestate = true;
trace("codi Array : " + _root.codiArr);
_root.score = 0;
trace("\uBA38\uB9AC\uC120\uD0DD:" + h_rnd);
pt.clothes.area1._alpha = 0;
pt.clothes.area2._alpha = 0;
var carea1 = pt.clothes.area1._x;
var carea2 = pt.clothes.area1._x;
var mkk = 1;
var j = 1;
while (j <= cnum.length) {
var i = 1;
while (i <= cnum[j - 1]) {
duplicateMovieClip (pt.clothes.cmask, (("cm" + j) + "_") + i, 2000 + mkk);
pt.clothes[(("cm" + j) + "_") + i]._x = -0.3;
pt.clothes[(("cm" + j) + "_") + i]._y = 8.2;
pt.clothes[(("c" + j) + "_") + i].setMask(pt.clothes[(("cm" + j) + "_") + i]);
mkk++;
i++;
}
j++;
}
soundWav("bgm");
pt.prebt.onPress = function () {
clothesMove("right");
};
pt.nextbt.onPress = function () {
clothesMove("left");
};
pt.prebt.onRelease = function () {
delete pt.clothes.onEnterFrame;
};
pt.nextbt.onRelease = function () {
delete pt.clothes.onEnterFrame;
};
stop();
Instance of Symbol 314 MovieClip "c11_1" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 11;
this.num = 1;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 330 MovieClip "c11_2" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 11;
this.num = 2;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 333 MovieClip "c11_3" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 11;
this.num = 3;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 336 MovieClip "c12_1" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 12;
this.num = 1;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 339 MovieClip "c12_2" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 12;
this.num = 2;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 342 MovieClip "c12_3" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 12;
this.num = 3;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 345 MovieClip "c12_4" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 12;
this.num = 4;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Instance of Symbol 348 MovieClip "c12_5" in Frame 2
onClipEvent (load) {
this.swap = this.getDepth();
this.code = 12;
this.num = 5;
}
on (release) {
_root.charac[("c" + this.code) + "_opt"]._visible = true;
_root.charac[("c" + this.code) + "_opt"].gotoAndPlay(2);
_root.codiArr[this.code] = this.num;
_root.soundWav("etc");
}
on (rollOver) {
this.gotoAndStop(2);
this._xscale = 150;
this._yscale = 150;
this.swapDepths(6000);
}
on (rollOut) {
this.gotoAndStop(1);
this._xscale = 100;
this._yscale = 100;
this.swapDepths(this.swap);
}
Frame 3
function cristalvalue(point) {
var _local3 = _root.cristalpoint.length;
var _local2 = 0;
while (_local2 < _local3) {
if (_local2 <= (_local3 - 2)) {
if ((point > int(_root.cristalpoint[_local2])) and (point <= int(_root.cristalpoint[_local2 + 1]))) {
cristalnum = _local2;
break;
}
} else if (_local2 == (_local3 - 1)) {
if (point > int(_root.cristalpoint[_local2])) {
cristalnum = _local2;
break;
}
}
_local2++;
}
cristalmessage(cristalnum);
_root.msgnum = cristalnum;
}
function cristalmessage(cnum) {
var _local2 = (_root.popmessage[0] + cnum) + _root.popmessage[1];
fscommand ("cristalmsg", _local2);
trace((_local2 + "/") + cnum);
}
stopAllSounds();
gamestate = false;
trace("\uCD5C\uC885\uACB0\uACFC : " + _root.codiArr);
var fasionArr_1 = [];
var fasionArr_2 = [];
var scoreArr_1 = [];
var scoreArr_2 = [];
fasionArr_1[1] = "6,6,0,1,6,0,0,1,0,0,0,0,4,3";
scoreArr_1[1] = "20,20,0,10,10,0,0,20,0,0,5,5,5,5";
fasionArr_2[1] = "9,8,0,3,9,0,0,0,1,0,0,0,1,0";
scoreArr_2[1] = "15,15,0,7,8,0,0,0,15,0,5,5,5,0";
fasionArr_1[2] = "5,5,0,0,5,0,1,0,0,0,0,0,2,2";
scoreArr_1[2] = "20,20,0,0,20,0,20,0,0,0,5,5,5,5";
fasionArr_2[2] = "10,9,0,0,10,0,3,0,2,0,0,0,3,0";
scoreArr_2[2] = "15,15,0,0,15,0,15,0,5,0,5,5,5,0";
fasionArr_1[3] = "4,4,0,0,4,1,0,0,0,0,0,0,1,1";
scoreArr_1[3] = "20,20,0,0,20,20,0,0,0,0,5,5,5,5";
fasionArr_2[3] = "9,6,0,0,7,0,0,0,1,0,0,0,3,0";
scoreArr_2[3] = "15,15,0,0,15,0,0,0,15,0,5,5,5,0";
fasionArr_1[5] = "8,0,0,2,8,0,2,0,0,0,0,0,4,3";
scoreArr_1[5] = "40,0,0,10,10,0,20,0,0,0,5,5,5,5";
fasionArr_2[5] = "11,10,0,2,11,3,0,0,0,0,0,0,0,4";
scoreArr_2[5] = "15,15,0,7,8,15,0,0,0,0,5,5,0,5";
fasionArr_1[4] = "7,7,0,0,7,2,0,0,0,0,0,0,2,5";
scoreArr_1[4] = "20,20,0,0,20,20,0,0,0,0,5,5,5,5";
fasionArr_2[4] = "4,6,0,3,4,1,0,0,0,0,0,0,1,1";
scoreArr_2[4] = "15,15,0,10,8,15,0,0,0,0,5,5,5,5";
_root.charac_r.head.gotoAndStop(h_rnd);
_root.pMc.pp.head.gotoAndStop(h_rnd);
var i = 1;
while (i <= 14) {
_root.charac_r["c" + i]._visible = false;
_root.pMc.pp["c" + i]._visible = false;
delete _root.charac_r["c" + i].onRelease;
i++;
}
var i = 1;
while (i <= 14) {
if ((_root.codiArr[i] > 0) and (i > 0)) {
_root.charac_r["c" + i]._visible = true;
_root.pMc.pp["c" + i]._visible = true;
_root.charac_r["c" + i].gotoAndStop(_root.codiArr[i]);
_root.pMc.pp["c" + i].gotoAndStop(_root.codiArr[i]);
}
i++;
}
var score = 0;
if (_root.codiArr[1] == int(fasionArr_1[h_rnd].split(",")[0])) {
var i = 1;
while (i <= 10) {
if ((_root.codiArr[i] == int(fasionArr_1[h_rnd].split(",")[i - 1])) and (_root.codiArr[i] > 0)) {
score = score + int(scoreArr_1[h_rnd].split(",")[i - 1]);
trace("\uAC00\uC0B0\uC8101 :" + int(scoreArr_1[h_rnd].split(",")[0]));
}
i++;
}
if ((_root.codiArr[13] == int(fasionArr_1[h_rnd].split(",")[12])) and (_root.codiArr[i] > 0)) {
score = score + 5;
}
if ((_root.codiArr[14] == int(fasionArr_1[h_rnd].split(",")[13])) and (_root.codiArr[i] > 0)) {
score = score + 5;
}
} else if (_root.codiArr[1] == int(fasionArr_2[h_rnd].split(",")[0])) {
var i = 1;
while (i <= 10) {
if ((_root.codiArr[i] == int(fasionArr_2[h_rnd].split(",")[i - 1])) and (_root.codiArr[i] > 0)) {
score = score + int(scoreArr_2[h_rnd].split(",")[i - 1]);
trace("\uAC00\uC0B0\uC8102 :" + int(scoreArr_2[h_rnd].split(",")[i - 1]));
}
i++;
}
if ((_root.codiArr[13] == int(fasionArr_2[h_rnd].split(",")[12])) and (_root.codiArr[i] > 0)) {
score = score + 5;
}
if ((_root.codiArr[14] == int(fasionArr_2[h_rnd].split(",")[13])) and (_root.codiArr[i] > 0)) {
score = score + 5;
}
}
if (_root.codiArr[11] > 0) {
score = score + 5;
}
if (_root.codiArr[12] > 0) {
score = score + 5;
}
trace("\uC810\uC218 : " + _root.score);
_root.score2 = Math.floor(_root.score / 10) + 1;
_root.mScore.gotoAndStop(_root.score2);
if (_root.score < 60) {
_root.msg_r.gotoAndStop(1);
_root.jut.gotoAndStop(2);
var snd = new Sound();
snd.attachSound("gfalse");
snd.setVolume(50);
snd.start(0, 1);
} else if ((_root.score >= 60) and (_root.score < 80)) {
_root.msg_r.gotoAndStop(2);
_root.jut.gotoAndStop(1);
var snd = new Sound();
snd.attachSound("gsuccess1");
snd.setVolume(50);
snd.start(0, 1);
} else if (_root.score > 80) {
_root.msg_r.gotoAndStop(3);
_root.jut.gotoAndStop(1);
var snd = new Sound();
snd.attachSound("gsuccess1");
snd.setVolume(50);
snd.start(0, 1);
}
myLoad = new LoadVars();
myLoad.gameid = _root.gameid;
myLoad.score = _root.score;
trace(myLoad);
myLoad.sendandload(_root.updatefile, myLoad, "POST");
_root.cristalvalue(_root.score);
var snd = new Sound();
snd.attachSound("result_bgm");
snd.setVolume(100);
snd.start(0, 999);
stop();
Symbol 53 Button
on (release) {
gotoAndPlay ("");
}
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
stop();
Symbol 115 MovieClip Frame 3
stop();
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 2
stop();
Symbol 149 MovieClip Frame 3
stop();
Symbol 149 MovieClip Frame 4
stop();
Symbol 149 MovieClip Frame 5
stop();
Symbol 149 MovieClip Frame 6
stop();
Symbol 149 MovieClip Frame 7
stop();
Symbol 149 MovieClip Frame 8
stop();
Symbol 149 MovieClip Frame 9
stop();
Symbol 149 MovieClip Frame 10
stop();
Symbol 149 MovieClip Frame 11
stop();
Symbol 180 MovieClip Frame 1
stop();
Instance of Symbol 152 MovieClip in Symbol 180 MovieClip Frame 1
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 2
stop();
Instance of Symbol 155 MovieClip in Symbol 180 MovieClip Frame 2
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 3
stop();
Instance of Symbol 158 MovieClip in Symbol 180 MovieClip Frame 3
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 4
stop();
Instance of Symbol 161 MovieClip in Symbol 180 MovieClip Frame 4
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 5
stop();
Instance of Symbol 164 MovieClip in Symbol 180 MovieClip Frame 5
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 6
stop();
Instance of Symbol 167 MovieClip in Symbol 180 MovieClip Frame 6
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 7
stop();
Instance of Symbol 170 MovieClip in Symbol 180 MovieClip Frame 7
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 8
stop();
Instance of Symbol 173 MovieClip in Symbol 180 MovieClip Frame 8
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 9
stop();
Instance of Symbol 176 MovieClip in Symbol 180 MovieClip Frame 9
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 180 MovieClip Frame 10
stop();
Instance of Symbol 179 MovieClip in Symbol 180 MovieClip Frame 10
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 2
stop();
Symbol 186 MovieClip Frame 3
stop();
Symbol 186 MovieClip Frame 4
stop();
Symbol 186 MovieClip Frame 5
stop();
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 2
stop();
Symbol 197 MovieClip Frame 3
stop();
Symbol 197 MovieClip Frame 4
stop();
Symbol 197 MovieClip Frame 5
stop();
Symbol 206 MovieClip Frame 1
stop();
Symbol 206 MovieClip Frame 2
stop();
Symbol 206 MovieClip Frame 3
stop();
Symbol 206 MovieClip Frame 4
stop();
Symbol 216 MovieClip Frame 1
stop();
Symbol 216 MovieClip Frame 2
stop();
Symbol 216 MovieClip Frame 3
stop();
Symbol 229 MovieClip Frame 1
stop();
Symbol 229 MovieClip Frame 2
stop();
Symbol 229 MovieClip Frame 3
stop();
Symbol 239 MovieClip Frame 1
stop();
Instance of Symbol 232 MovieClip in Symbol 239 MovieClip Frame 1
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 239 MovieClip Frame 2
stop();
Instance of Symbol 235 MovieClip in Symbol 239 MovieClip Frame 2
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 239 MovieClip Frame 3
stop();
Instance of Symbol 238 MovieClip in Symbol 239 MovieClip Frame 3
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 273 MovieClip Frame 1
stop();
Symbol 273 MovieClip Frame 2
stop();
Symbol 273 MovieClip Frame 3
stop();
Symbol 273 MovieClip Frame 4
stop();
Symbol 273 MovieClip Frame 5
stop();
Symbol 273 MovieClip Frame 6
stop();
Symbol 273 MovieClip Frame 7
stop();
Symbol 273 MovieClip Frame 8
stop();
Symbol 273 MovieClip Frame 9
stop();
Symbol 273 MovieClip Frame 10
stop();
Symbol 273 MovieClip Frame 11
stop();
Symbol 283 MovieClip Frame 1
stop();
Symbol 283 MovieClip Frame 2
stop();
Symbol 283 MovieClip Frame 3
stop();
Symbol 286 MovieClip Frame 1
stop();
Symbol 286 MovieClip Frame 20
_root.charac.c12._visible = true;
_root.charac.c12.gotoAndStop(_root.codiArr[12]);
_root.charac.c12_opt._visible = false;
stop();
Symbol 296 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 2
stop();
Symbol 307 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 2
stop();
Symbol 307 MovieClip Frame 3
stop();
Symbol 307 MovieClip Frame 4
stop();
Symbol 307 MovieClip Frame 5
stop();
Symbol 311 MovieClip Frame 1
stop();
Symbol 311 MovieClip Frame 2
stop();
Symbol 311 MovieClip Frame 3
stop();
Symbol 314 MovieClip Frame 1
stop();
Symbol 314 MovieClip Frame 2
stop();
Symbol 315 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 30
_root.charac.c11._visible = true;
_root.charac.c11.gotoAndStop(_root.codiArr[11]);
_root.charac.c11_opt._visible = false;
stop();
Symbol 316 MovieClip Frame 1
if (_root.gamestate == true) {
var i = 1;
while (i <= 14) {
this["c" + i]._visible = false;
this["c" + i].gotoAndStop(1);
this.c11_opt._visible = false;
this.c11_opt.gotoAndStop(1);
this.c12_opt._visible = false;
this.c12_opt.gotoAndStop(1);
this["c" + i].i = i;
this["c" + i].onRelease = function () {
this._visible = false;
_root.codiArr[this.i] = 0;
};
i++;
}
trace("true");
} else {
var i = 1;
while (i <= 14) {
delete this["c" + i].onRelease;
this["c" + i]._visible = false;
this["c" + i].gotoAndStop(1);
i++;
}
this.c11_opt._visible = false;
this.c11_opt.gotoAndStop(1);
this.c12_opt._visible = false;
this.c12_opt.gotoAndStop(1);
trace("false");
}
Symbol 330 MovieClip Frame 1
stop();
Symbol 330 MovieClip Frame 2
stop();
Symbol 333 MovieClip Frame 1
stop();
Symbol 333 MovieClip Frame 2
stop();
Symbol 336 MovieClip Frame 1
stop();
Symbol 336 MovieClip Frame 2
stop();
Symbol 339 MovieClip Frame 1
stop();
Symbol 339 MovieClip Frame 2
stop();
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 2
stop();
Symbol 345 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 2
stop();
Symbol 348 MovieClip Frame 1
stop();
Symbol 348 MovieClip Frame 2
stop();
Instance of Symbol 298 MovieClip "c14_1" in Symbol 349 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 14;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 300 MovieClip "c14_2" in Symbol 349 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 14;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 302 MovieClip "c14_3" in Symbol 349 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 14;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 304 MovieClip "c14_4" in Symbol 349 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 4;
this.code = 14;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 306 MovieClip "c14_5" in Symbol 349 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 5;
this.code = 14;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 199 MovieClip "c13_1" in Symbol 350 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 13;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 201 MovieClip "c13_2" in Symbol 350 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 13;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 203 MovieClip "c13_3" in Symbol 350 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 13;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Instance of Symbol 205 MovieClip "c13_4" in Symbol 350 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 4;
this.code = 13;
}
on (press) {
this.startDrag(this);
this.states = "drag";
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("nick");
}
this._x = this.x;
this._y = this.y;
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
}
onClipEvent (load) {
this.swap = this._parent.getDepth();
}
on (rollOver) {
this._xscale = 200;
this._yscale = 200;
this._parent.swapDepths(6000);
}
on (rollOut) {
this._xscale = 100;
this._yscale = 100;
this._parent.swapDepths(this.swap);
}
Symbol 359 Button
on (release) {
gotoAndPlay ("");
}
Symbol 380 MovieClip Frame 20
stop();
Symbol 389 MovieClip Frame 1
stop();
Symbol 389 MovieClip Frame 2
stop();
Symbol 389 MovieClip Frame 3
stop();
Symbol 389 MovieClip Frame 4
stop();
Symbol 389 MovieClip Frame 5
stop();
Symbol 395 MovieClip Frame 1
stop();
Instance of Symbol 242 MovieClip "c1_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 245 MovieClip "c1_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 248 MovieClip "c1_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 251 MovieClip "c1_4" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 4;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 152 MovieClip "c2_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 155 MovieClip "c2_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 158 MovieClip "c2_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 164 MovieClip "c2_5" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 5;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 167 MovieClip "c2_6" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 6;
this.code = 2;
this.deps = getDepth();
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 170 MovieClip "c2_7" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 7;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 254 MovieClip "c1_5" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 5;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 257 MovieClip "c1_6" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 6;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 260 MovieClip "c1_7" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 7;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 263 MovieClip "c1_8" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 8;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 222 MovieClip "c3_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 3;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 225 MovieClip "c3_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 3;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 228 MovieClip "c3_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 3;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 108 MovieClip "c4_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 4;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 111 MovieClip "c4_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 4;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 118 MovieClip "c5_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 121 MovieClip "c5_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 124 MovieClip "c5_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 136 MovieClip "c5_7" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 7;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 133 MovieClip "c5_6" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 6;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 130 MovieClip "c5_5" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 5;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 127 MovieClip "c5_4" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 4;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 276 MovieClip "c6_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 6;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes["cm6_" + this.num]);
}
Instance of Symbol 209 MovieClip "c7_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 7;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 289 MovieClip "c8_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 8;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes["cm6_" + this.num]);
}
Instance of Symbol 279 MovieClip "c6_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 6;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 212 MovieClip "c7_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 7;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 232 MovieClip "c10_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 10;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 235 MovieClip "c10_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 10;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 238 MovieClip "c10_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 10;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 161 MovieClip "c2_4" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 4;
this.code = 2;
this.deps = getDepth();
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 139 MovieClip "c5_8" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 8;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 114 MovieClip "c4_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 4;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 142 MovieClip "c5_9" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 9;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 145 MovieClip "c5_10" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 10;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 148 MovieClip "c5_11" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 11;
this.code = 5;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 282 MovieClip "c6_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 6;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes["cm6_" + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes["cm6_" + this.num]);
}
Instance of Symbol 215 MovieClip "c7_3" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 3;
this.code = 7;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 266 MovieClip "c1_9" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 9;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 269 MovieClip "c1_10" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 10;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 272 MovieClip "c1_11" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 11;
this.code = 1;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 176 MovieClip "c2_9" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 9;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 179 MovieClip "c2_10" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 10;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 292 MovieClip "c9_1" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 1;
this.code = 9;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 295 MovieClip "c9_2" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 2;
this.code = 9;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Instance of Symbol 173 MovieClip "c2_8" in Symbol 395 MovieClip Frame 1
onClipEvent (load) {
this.x = this._x;
this.y = this._y;
this.num = 8;
this.code = 2;
}
on (press) {
this.startDrag(this);
this.states = "drag";
this.setMask(null);
_root.clothes[(("cm" + this.code) + "_") + this.num]._visible = false;
}
on (release) {
this.stopDrag();
this.states = "notdrag";
if (this.hitTest(_root.charac)) {
_root.charac["c" + this.code]._visible = true;
_root.charac["c" + this.code].gotoAndStop(this.num);
_root.codiArr[this.code] = this.num;
_root.soundWav("clothes");
}
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
on (releaseOutside) {
this.stopDrag();
this.states = "notdrag";
this._x = this.x;
this._y = this.y;
this.setMask(_root.clothes[(("cm" + this.code) + "_") + this.num]);
}
Symbol 414 MovieClip Frame 14
stop();
Symbol 419 MovieClip Frame 16
stop();
Symbol 424 MovieClip Frame 20
stop();
Symbol 429 MovieClip Frame 24
stop();
Symbol 434 MovieClip Frame 28
stop();
Symbol 439 MovieClip Frame 32
stop();
Symbol 444 MovieClip Frame 36
stop();
Symbol 450 MovieClip Frame 40
stop();
Symbol 455 MovieClip Frame 44
stop();
Symbol 460 MovieClip Frame 48
stop();
Symbol 465 MovieClip Frame 52
stop();
Symbol 466 MovieClip Frame 1
stop();
Symbol 466 MovieClip Frame 2
stop();
Symbol 466 MovieClip Frame 3
stop();
Symbol 466 MovieClip Frame 4
stop();
Symbol 466 MovieClip Frame 5
stop();
Symbol 466 MovieClip Frame 6
stop();
Symbol 466 MovieClip Frame 7
stop();
Symbol 466 MovieClip Frame 8
stop();
Symbol 466 MovieClip Frame 9
stop();
Symbol 466 MovieClip Frame 10
stop();
Symbol 466 MovieClip Frame 11
stop();
Symbol 470 Button
on (release) {
stopAllSounds();
gotoAndPlay ("");
}
Symbol 476 Button
on (release) {
var myPrint = new PrintJob();
var myResult = myPrint.start();
myResult = myPrint.addPage("pMc", {xMin:0, xMax:600, yMin:0, yMax:450}, {printAsBitmap:true}, 1);
myPrint.send();
if (myResult) {
trace("\uC2DC\uC791");
} else {
trace("\uCDE8\uC18C");
}
delete myPrint;
}
Symbol 480 MovieClip Frame 1
stop();
Symbol 480 MovieClip Frame 2
stop();
Symbol 480 MovieClip Frame 3
stop();
Symbol 485 MovieClip Frame 1
stop();
Symbol 485 MovieClip Frame 2
stop();
Symbol 495 MovieClip Frame 1
stop();
Symbol 495 MovieClip Frame 2
stop();
Symbol 526 MovieClip Frame 1
stop();
Symbol 526 MovieClip Frame 2
stop();
Symbol 526 MovieClip Frame 3
stop();
Symbol 526 MovieClip Frame 4
stop();
Symbol 526 MovieClip Frame 5
stop();
Symbol 526 MovieClip Frame 6
stop();
Symbol 526 MovieClip Frame 7
stop();
Symbol 526 MovieClip Frame 8
stop();
Symbol 526 MovieClip Frame 9
stop();
Symbol 526 MovieClip Frame 10
stop();
Symbol 526 MovieClip Frame 11
stop();
Symbol 555 MovieClip Frame 1
stop();
Instance of Symbol 529 MovieClip in Symbol 555 MovieClip Frame 1
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 2
stop();
Instance of Symbol 532 MovieClip in Symbol 555 MovieClip Frame 2
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 3
stop();
Instance of Symbol 533 MovieClip in Symbol 555 MovieClip Frame 3
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 4
stop();
Instance of Symbol 536 MovieClip in Symbol 555 MovieClip Frame 4
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 5
stop();
Instance of Symbol 539 MovieClip in Symbol 555 MovieClip Frame 5
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 6
stop();
Instance of Symbol 542 MovieClip in Symbol 555 MovieClip Frame 6
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 7
stop();
Instance of Symbol 545 MovieClip in Symbol 555 MovieClip Frame 7
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 8
stop();
Instance of Symbol 548 MovieClip in Symbol 555 MovieClip Frame 8
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 9
stop();
Instance of Symbol 551 MovieClip in Symbol 555 MovieClip Frame 9
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 555 MovieClip Frame 10
stop();
Instance of Symbol 554 MovieClip in Symbol 555 MovieClip Frame 10
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 566 MovieClip Frame 1
stop();
Symbol 566 MovieClip Frame 2
stop();
Symbol 566 MovieClip Frame 3
stop();
Symbol 566 MovieClip Frame 4
stop();
Symbol 566 MovieClip Frame 5
stop();
Symbol 577 MovieClip Frame 1
stop();
Symbol 577 MovieClip Frame 2
stop();
Symbol 577 MovieClip Frame 3
stop();
Symbol 577 MovieClip Frame 4
stop();
Symbol 587 MovieClip Frame 1
stop();
Symbol 587 MovieClip Frame 2
stop();
Symbol 587 MovieClip Frame 3
stop();
Symbol 597 MovieClip Frame 1
stop();
Symbol 597 MovieClip Frame 2
stop();
Symbol 597 MovieClip Frame 3
stop();
Symbol 605 MovieClip Frame 1
stop();
Instance of Symbol 600 MovieClip in Symbol 605 MovieClip Frame 1
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 605 MovieClip Frame 2
stop();
Instance of Symbol 603 MovieClip in Symbol 605 MovieClip Frame 2
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 605 MovieClip Frame 3
stop();
Instance of Symbol 604 MovieClip in Symbol 605 MovieClip Frame 3
on (release) {
if (gamestate == true) {
this._parent._visible = false;
}
}
Symbol 639 MovieClip Frame 1
stop();
Symbol 639 MovieClip Frame 2
stop();
Symbol 639 MovieClip Frame 3
stop();
Symbol 639 MovieClip Frame 4
stop();
Symbol 639 MovieClip Frame 5
stop();
Symbol 639 MovieClip Frame 6
stop();
Symbol 639 MovieClip Frame 7
stop();
Symbol 639 MovieClip Frame 8
stop();
Symbol 639 MovieClip Frame 9
stop();
Symbol 639 MovieClip Frame 10
stop();
Symbol 639 MovieClip Frame 11
stop();
Symbol 649 MovieClip Frame 1
stop();
Symbol 649 MovieClip Frame 2
stop();
Symbol 649 MovieClip Frame 3
stop();
Symbol 659 MovieClip Frame 1
stop();
Symbol 659 MovieClip Frame 2
stop();
Symbol 675 MovieClip Frame 1
stop();
Symbol 675 MovieClip Frame 2
stop();
Symbol 675 MovieClip Frame 3
stop();
Symbol 675 MovieClip Frame 4
stop();
Symbol 675 MovieClip Frame 5
stop();