Frame 1
function EncrpytString(strVal) {
var strKey = "aHfEjcDebChGiAfIjDbEjacD";
var nLenKey = strKey.length;
var strZero = "0";
var strOut = "";
var nTot = strVal.length;
var nCntKey = 0;
var strOut = "";
var nCodeVal;
var nCodeKey;
var nTemp;
var nChecksum = 0;
nCnt = 0;
while (nCnt < nTot) {
nCodeVal = strVal.charCodeAt(nCnt);
if (nCodeVal >= 128) {
nCodeVal = "X";
}
nCodeKey = strKey.charCodeAt(nCntKey);
nCntKey = nCntKey + 1;
if (nCntKey >= nLenKey) {
nCntKey = 0;
}
nTemp = (nCodeVal % 16) + nCodeKey;
strOut = strOut + String.fromCharCode(nTemp);
nChecksum = nChecksum + nTemp;
nCodeKey = strKey.charCodeAt(nCntKey);
nCntKey = nCntKey + 1;
if (nCntKey >= nLenKey) {
nCntKey = 0;
}
nTemp = Math.floor(nCodeVal / 16) + nCodeKey;
strOut = strOut + String.fromCharCode(nTemp);
nChecksum = nChecksum + nTemp;
nCnt++;
}
nChecksum = nChecksum % 256;
nCodeKey = strKey.charCodeAt(nCntKey);
nCntKey = nCntKey + 1;
if (nCntKey >= nLenKey) {
nCntKey = 0;
}
nTemp = (nChecksum % 16) + nCodeKey;
strOut = strOut + String.fromCharCode(nTemp);
nCodeKey = strKey.charCodeAt(nCntKey);
nCntKey = nCntKey + 1;
if (nCntKey >= nLenKey) {
nCntKey = 0;
}
nTemp = Math.floor(nChecksum / 16) + nCodeKey;
strOut = strOut + String.fromCharCode(nTemp);
return(strOut);
}
function AppendUrlParam(strUrl, strParam) {
if (strUrl.indexOf("?") > 0) {
return((strUrl + "&") + strParam);
}
return((strUrl + "?") + strParam);
}
function GetUrlParam(strUrl, strParam) {
var strUrlLC = strUrl.toLowerCase();
var nPos = strUrlLC.indexOf(strParam);
var nParamLen = strParam.length;
if (nPos > 0) {
var nNumChars;
var nPosEnd = strUrlLC.indexOf("&", nPos + nParamLen);
if (nPosEnd > 0) {
nNumChars = nPosEnd - nPos;
} else {
nNumChars = strUrl.length - nPos;
}
return(strUrl.substr(nPos + nParamLen, nNumChars));
}
return("");
}
function GetBaseUrl(strUrl) {
var strUrlLC = strUrl.toLowerCase();
var nNumChars = strUrlLC.length;
var nPos = strUrlLC.indexOf("?", 0);
if (nPos > 0) {
nNumChars = nPos;
}
var strVal = "download";
if (strUrlLC.substr(0, 4) == "http") {
strVal = strUrl.substr(7, nNumChars - 7);
}
return(strVal);
}
function checkGoodUrl(myUrl) {
var currUrl;
var urlParts;
var numParts;
var i;
if (_url.toLowerCase().substr(0, 4) != "http") {
return(1);
}
if (myUrl.length() == 0) {
return(1);
}
currUrl = _url.toLowerCase();
i = currUrl.indexOf(currUrl, "/", 7);
if (i > 0) {
currUrl = currUrl.substr(0, i);
}
urlParts = myUrl.split("|");
numParts = urlParts.length;
i = 0;
while (i < numParts) {
if (currUrl.indexOf(urlParts[i]) >= 0) {
return(1);
}
i++;
}
return(0);
}
HiScoreSaveURL = "http://www.arcadetown.com/roboxer2/hs.asp";
HiScoreOpenURL = "http://www.arcadetown.com/roboxer2/view_high_scores.asp";
LinkDownload = (("http://www.arcadetown.com/partner/download.asp?gameid=roboxer2&aid=" + GetUrlParam(_url, "aid=")) + "&refer=") + _root.GetBaseUrl(_url);
LinkMoreGames = (("http://www.arcadetown.com/index.asp?gameid=roboxer2&aid=" + GetUrlParam(_url, "aid=")) + "&refer=") + _root.GetBaseUrl(_url);
LinkArcadetown = LinkMoreGames;
if ((_url.toLowerCase().substr(0, 4) == "http") && (checkGoodUrl("zingsdomain.com|newgrounds.com|ungrounded.net") == 1)) {
HiScoreSaveURL = "";
HiScoreOpenURL = "";
LinkMoreGames = "http://www.zingsdomain.com";
if (checkGoodUrl("newgrounds.com|ungrounded.net") == 1) {
LinkDownload = "http://www.arcadetown.com/partner/download.asp?gameid=roboxer2&aid=647057&refer=" + _root.GetBaseUrl(_url);
}
}
ScoreVal = 0;
hitscore = 0;
killscore = 0;
totalwins = 0;
totallosses = 0;
Frame 2
gotoAndPlay (1);
loadedBytes = _root.getBytesLoaded();
totalBytes = _root.getBytesTotal();
if (loadedBytes < totalBytes) {
percentageOutput = Math.floor((loadedBytes / totalBytes) * 100);
_root.loaderBar._xscale = percentageOutput;
gotoAndPlay (1);
} else {
gotoAndStop (4);
}
Frame 3
stop();
Frame 4
difficultymode = 1;
enemytype = 1;
levelnumber = 1;
playercolor = 1;
playerdamage = 10;
playerstamina = 0;
playerstaminaminus = 10;
playerleftpunch = 0;
playerrightpunch = 0;
opponentdamage = 2;
opponentspecialdamage = 0;
opponentattack = 14;
opponentblockchance = 3;
hits = 0;
stop();
Symbol 7 Button
on (keyPress "k") {
_root.healthstatus.opponenthealth = _root.healthstatus.opponenthealth - 100;
}
Symbol 8 MovieClip Frame 1
killswitch = 0;
Symbol 8 MovieClip Frame 2
if (killswitch == 1) {
gotoAndStop (4);
}
Symbol 8 MovieClip Frame 3
stop();
Symbol 8 MovieClip Frame 4
stop();
Symbol 32 Button
on (release) {
if (_root.LinkMoreGames.length > 0) {
getURL (_root.LinkMoreGames, "_blank");
}
}
Symbol 36 Button
on (release) {
if (_root.LinkDownload.length > 0) {
getURL (_root.LinkDownload, "_blank");
}
}
Symbol 40 Button
on (release) {
if (_root.HiScoreOpenURL.length > 0) {
getURL (_root.HiScoreOpenURL, "_blank");
}
}
Symbol 44 Button
on (release) {
gotoAndStop (3);
}
Symbol 48 Button
on (release) {
_root.frontend.gotoAndStop("instructions");
}
Symbol 52 Button
on (release) {
gotoAndPlay (2);
}
Symbol 56 Button
on (release) {
gotoAndStop (1);
}
Symbol 60 Button
on (release) {
_root.difficultymode = 3;
gotoAndPlay (4);
}
Symbol 63 Button
on (release) {
_root.difficultymode = 2;
gotoAndPlay (4);
}
Symbol 67 Button
on (release) {
_root.difficultymode = 1;
gotoAndPlay (4);
}
Symbol 73 Button
on (release) {
nextFrame();
}
Symbol 75 Button
on (release) {
prevFrame();
}
Symbol 79 MovieClip Frame 2
if (_root.playercolor == 1) {
gotoAndStop (3);
}
if (_root.playercolor == 2) {
gotoAndStop (4);
}
if (_root.playercolor == 3) {
gotoAndStop (5);
}
if (_root.playercolor == 4) {
gotoAndStop (6);
}
Symbol 79 MovieClip Frame 3
_root.playercolor = 1;
stop();
Symbol 79 MovieClip Frame 4
_root.playercolor = 2;
stop();
Symbol 79 MovieClip Frame 5
_root.playercolor = 3;
stop();
Symbol 79 MovieClip Frame 6
_root.playercolor = 4;
stop();
Symbol 79 MovieClip Frame 7
stop();
Symbol 82 Button
on (release) {
gotoAndStop (1);
}
Symbol 88 Button
on (release) {
_quality = "MEDIUM";
}
Symbol 90 Button
on (release) {
_quality = "LOW";
}
Symbol 94 Button
on (release) {
_quality = "HIGH";
}
Symbol 97 MovieClip Frame 1
if (_root.HiScoreOpenURL.length == 0) {
Button_HighScores._visible = false;
}
if (_root._url.toLowerCase().substr(0, 4) != "http") {
Button_Download._visible = false;
}
stop();
Symbol 97 MovieClip Frame 2
stop();
Symbol 97 MovieClip Frame 3
stop();
Symbol 97 MovieClip Frame 4
_root.frontend.gotoAndPlay("opengame");
Symbol 103 Button
on (release) {
getURL ("http://www.newgrounds.com", "_top");
}
Symbol 104 Button
on (release) {
getURL ("http://www.arcadetown.com", "_blank");
}
Symbol 115 Button
on (release) {
gotoAndStop (41);
}
Symbol 121 Button
on (release) {
gotoAndStop (159);
}
Symbol 126 Button
on (release) {
gotoAndPlay (51);
}
Symbol 130 MovieClip Frame 1
if (_root.difficultymode == 1) {
gotoAndStop (2);
}
if (_root.difficultymode == 2) {
gotoAndStop (3);
}
if (_root.difficultymode == 3) {
gotoAndStop (4);
}
Symbol 139 MovieClip Frame 2
if (_root.enemytype < 6) {
gotoAndPlay (3);
}
if (_root.enemytype == 6) {
gotoAndPlay (5);
}
Symbol 139 MovieClip Frame 4
gotoAndStop (7);
Symbol 139 MovieClip Frame 6
gotoAndStop (7);
Symbol 139 MovieClip Frame 7
stop();
Symbol 143 Button
on (release) {
_root.frontend.gotoAndPlay("difficultyresetcheck");
}
Symbol 144 Button
on (release) {
_root.frontend.gotoAndStop("scoresubmit");
}
Symbol 145 Button
on (release) {
_root.frontend.gotoAndPlay("closegame");
}
Symbol 146 MovieClip Frame 2
if (_root.enemytype < 6) {
gotoAndStop (4);
}
Symbol 146 MovieClip Frame 3
if (_root.difficultymode == 3) {
gotoAndStop (5);
}
Symbol 146 MovieClip Frame 4
stop();
Symbol 146 MovieClip Frame 5
stop();
Symbol 152 Button
on (release) {
gotoAndPlay (51);
}
Symbol 158 Button
on (release) {
var strOut = ((Input_HiscoreName.text + "|") + _root.ScoreVal);
var strOut2 = _root.EncrpytString(strOut);
getURL ((_root.HiScoreSaveURL + "?") + strOut2, "_blank");
gotoAndPlay (160);
}
Symbol 161 Button
on (release) {
gotoAndPlay (51);
}
Symbol 163 MovieClip Frame 41
if ((_root._url.toLowerCase().substr(0, 4) != "http") || (_root.checkGoodUrl("zingsdomain.com|newgrounds.com|ungrounded.net") != 1)) {
ng_btn._visible = false;
}
stop();
Symbol 163 MovieClip Frame 42
stop();
Symbol 163 MovieClip Frame 43
_root.fightbackground.gotoAndPlay("load");
if (_root.difficultymode == 1) {
_root.hitscore = 10;
_root.killscore = 100;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 2;
_root.opponentspecialdamage = _root.opponentspecialdamage + 0;
_root.opponentblockchance = 3;
_root.hits = 0;
}
if (_root.difficultymode == 2) {
_root.hitscore = 20;
_root.killscore = 150;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 5;
_root.opponentspecialdamage = _root.opponentspecialdamage + 3;
_root.opponentblockchance = 3;
_root.hits = 0;
}
if (_root.difficultymode == 3) {
_root.hitscore = 30;
_root.killscore = 200;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 7;
_root.opponentspecialdamage = _root.opponentspecialdamage + 5;
_root.opponentblockchance = 3;
_root.hits = 0;
}
Symbol 163 MovieClip Frame 50
stopAllSounds();
gotoAndPlay (65);
_root.ScoreVal = 0;
Symbol 163 MovieClip Frame 51
stopAllSounds();
Symbol 163 MovieClip Frame 58
stopAllSounds();
Symbol 163 MovieClip Frame 61
_root.difficultymode = 1;
_root.enemytype = 1;
_root.levelnumber = 1;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 2;
_root.opponentspecialdamage = _root.opponentspecialdamage + 0;
_root.opponentattack = 14;
_root.opponentblockchance = 3;
_root.hits = 0;
_root.healthstatus.gotoAndStop("blank");
_root.winlose.gotoAndStop("hold");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
_root.fightbackground.gotoAndPlay("load");
gotoAndStop (41);
Symbol 163 MovieClip Frame 63
if (HiScoreSaveURL.length == 0) {
gotoAndPlay (51);
}
stop();
Symbol 163 MovieClip Frame 64
stop();
Symbol 163 MovieClip Frame 124
_root.healthstatus.gotoAndPlay("run");
_root.player.keyboard.gotoAndStop("enable");
_root.opponent.ai.gotoAndPlay("run");
gotoAndStop (64);
Symbol 163 MovieClip Frame 125
stopAllSounds();
Symbol 163 MovieClip Frame 131
if (_root.difficultymode == 1) {
_root.enemytype++;
_root.levelnumber++;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = _root.opponentdamage + 2;
_root.opponentspecialdamage = _root.opponentspecialdamage + 5;
_root.opponentattack = _root.opponentattack - 2;
_root.healthstatus.gotoAndStop("blank");
_root.winlose.gotoAndStop("hold");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
gotoAndPlay (132);
}
if (_root.difficultymode == 2) {
_root.enemytype++;
_root.levelnumber++;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = _root.opponentdamage + 4;
_root.opponentspecialdamage = _root.opponentspecialdamage + 7;
_root.opponentattack = _root.opponentattack - 2;
_root.healthstatus.gotoAndStop("blank");
_root.winlose.gotoAndStop("hold");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
gotoAndPlay (132);
}
if (_root.difficultymode == 3) {
_root.enemytype++;
_root.levelnumber++;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = _root.opponentdamage + 5;
_root.opponentspecialdamage = _root.opponentspecialdamage + 10;
_root.opponentattack = _root.opponentattack - 2;
_root.healthstatus.gotoAndStop("blank");
_root.winlose.gotoAndStop("hold");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
gotoAndPlay (132);
}
Symbol 163 MovieClip Frame 132
_root.fightbackground.gotoAndPlay("load");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
Symbol 163 MovieClip Frame 139
gotoAndPlay (65);
Symbol 163 MovieClip Frame 141
stop();
Symbol 163 MovieClip Frame 142
if (_root.enemytype < 6) {
gotoAndPlay (125);
}
if (_root.enemytype == 6) {
_root.difficultymode++;
gotoAndPlay (143);
}
Symbol 163 MovieClip Frame 143
if (_root.difficultymode == 1) {
_root.hitscore = 10;
_root.killscore = 100;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 2;
_root.opponentspecialdamage = _root.opponentspecialdamage + 0;
_root.opponentblockchance = 3;
_root.hits = 0;
gotoAndPlay (144);
}
if (_root.difficultymode == 2) {
_root.hitscore = 20;
_root.killscore = 150;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 4;
_root.opponentspecialdamage = _root.opponentspecialdamage + 2;
_root.opponentblockchance = 3;
_root.hits = 0;
gotoAndPlay (144);
}
if (_root.difficultymode == 3) {
_root.hitscore = 30;
_root.killscore = 200;
_root.playerdamage = 10;
_root.playerstamina = 0;
_root.playerstaminaminus = 10;
_root.playerleftpunch = 0;
_root.playerrightpunch = 0;
_root.opponentdamage = 6;
_root.opponentspecialdamage = _root.opponentspecialdamage + 5;
_root.opponentblockchance = 3;
_root.hits = 0;
gotoAndPlay (144);
}
if (_root.difficultymode == 4) {
gotoAndPlay (51);
}
Symbol 163 MovieClip Frame 144
stopAllSounds();
Symbol 163 MovieClip Frame 150
_root.enemytype = 1;
_root.levelnumber = 1;
_root.opponentattack = 14;
_root.healthstatus.gotoAndStop("blank");
_root.winlose.gotoAndStop("hold");
_root.fightbackground.gotoAndPlay("load");
_root.player.gotoAndPlay("normal");
_root.opponent.gotoAndPlay("idle");
Symbol 163 MovieClip Frame 158
_root.ScoreVal = _root.ScoreVal + 1000;
gotoAndPlay (65);
Symbol 163 MovieClip Frame 159
_root.winlose.gotoAndStop("hold");
stop();
Symbol 163 MovieClip Frame 162
stop();
Symbol 170 MovieClip Frame 1
stop();
Symbol 170 MovieClip Frame 2
if (_root.enemytype == 6) {
gotoAndPlay (27);
}
Symbol 170 MovieClip Frame 11
stop();
Symbol 170 MovieClip Frame 25
stop();
Symbol 170 MovieClip Frame 27
if (_root.difficultymode > 2) {
gotoAndPlay (39);
}
Symbol 170 MovieClip Frame 37
stop();
Symbol 170 MovieClip Frame 49
stop();
Symbol 174 MovieClip Frame 1
stop();
Symbol 175 MovieClip Frame 2
if (_root.playerstamina < 1) {
gotoAndPlay (1);
}
Symbol 175 MovieClip Frame 3
_root.playerstamina = _root.playerstamina - 2;
Symbol 175 MovieClip Frame 4
gotoAndPlay (1);
Symbol 177 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 2
_root.playerstamina = 100;
playerhealth = 100;
opponenthealth = 100;
Symbol 181 MovieClip Frame 3
_root.playerstamina = 0;
Symbol 181 MovieClip Frame 4
staminacheck = _root.playerstamina;
if (staminacheck) {
percentageOutput = Math.floor(staminacheck);
_root.healthstatus.playerstaminabar._xscale = percentageOutput;
}
if (playerhealth) {
percentageOutput = Math.floor(playerhealth);
_root.healthstatus.player.bar._xscale = percentageOutput;
}
if (opponenthealth) {
percentageOutput = Math.floor(opponenthealth);
_root.healthstatus.opponent.bar._xscale = percentageOutput;
}
if (playerhealth < 1) {
_root.healthstatus.gotoAndStop("run");
_root.player.gotoAndPlay("knockout");
_root.opponent.gotoAndStop("leftfist");
_root.healthstatus.player.bar.gotoAndStop("remove");
}
if (opponenthealth < 1) {
_root.healthstatus.gotoAndStop("run");
_root.opponent.gotoAndPlay("knockout");
_root.player.gotoAndStop("leftfist");
_root.healthstatus.opponent.bar.gotoAndStop("remove");
}
Symbol 181 MovieClip Frame 5
gotoAndPlay (4);
Symbol 183 MovieClip Frame 1
if (_root.player.playerhit.hitTest(_root.opponent.leftfisthit)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentdamage;
}
if (_root.player.playerhit.hitTest(_root.opponent.rightfisthit)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentdamage;
}
if (_root.player.playerhit.hitTest(_root.opponent.slamdown)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentdamage;
}
if (_root.player.slamhit.hitTest(_root.opponent.slamdown)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentdamage;
}
if (_root.player.playerhit.hitTest(_root.opponent.specialhit)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentspecialdamage;
}
if (_root.player.slamhit.hitTest(_root.opponent.specialhit)) {
_root.player.gotoAndPlay("impact");
_root.healthstatus.playerhealth = _root.healthstatus.playerhealth - _root.opponentspecialdamage;
}
if (_root.player.block.hitTest(_root.opponent.specialhit)) {
_root.player.specialblockshield.gotoAndPlay("specialshield");
}
if (_root.player.block.hitTest(_root.opponent.slamdown)) {
_root.player.specialblockshield.gotoAndPlay("sparks");
}
if (_root.opponent.hitbox.hitTest(_root.player.leftfisthit)) {
if (Math.round(Math.random() * _root.opponentblockchance) == 1) {
_root.opponent.gotoAndPlay("impact");
_root.ScoreVal = _root.ScoreVal + _root.hitscore;
_root.hits++;
} else {
_root.opponent.gotoAndPlay("block");
}
}
if (_root.opponent.hitbox.hitTest(_root.player.rightfisthit)) {
if (Math.round(Math.random() * _root.opponentblockchance) == 1) {
_root.opponent.gotoAndPlay("impact");
_root.ScoreVal = _root.ScoreVal + _root.hitscore;
_root.hits++;
} else {
_root.opponent.gotoAndPlay("block");
}
}
Symbol 184 Button
on (keyPress "z") {
_root.player.gotoAndPlay("leftfist");
gotoAndStop (1);
}
on (keyPress "x") {
_root.player.gotoAndPlay("rightfist");
gotoAndStop (1);
}
on (keyPress "Z") {
_root.player.gotoAndPlay("leftfist");
gotoAndStop (1);
}
on (keyPress "X") {
_root.player.gotoAndPlay("rightfist");
gotoAndStop (1);
}
on (keyPress "<Left>") {
_root.player.gotoAndPlay("leftdodge");
gotoAndStop (1);
}
on (keyPress "<Right>") {
_root.player.gotoAndPlay("rightdodge");
gotoAndStop (1);
}
on (keyPress "<Down>") {
_root.player.gotoAndPlay("duck");
gotoAndStop (1);
}
on (keyPress "<Up>") {
_root.player.gotoAndPlay("block");
gotoAndStop (1);
}
Symbol 185 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 2
stop();
Symbol 187 MovieClip Frame 1
stop();
Symbol 189 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 8
gotoAndStop (1);
Symbol 203 MovieClip Frame 14
gotoAndStop (1);
Symbol 207 MovieClip Frame 1
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 2
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 3
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 4
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 5
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 6
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 7
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 8
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 9
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 10
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 11
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 12
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 13
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 14
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 15
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 16
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 17
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 18
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 19
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 20
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 21
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 22
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 23
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 24
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 25
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 26
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 27
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 28
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 29
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 30
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 31
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 32
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 33
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 34
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 35
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 36
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 37
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 38
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 39
gotoAndPlay (1);
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 40
gotoAndPlay (1);
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 41
_root.playerrightpunch = _root.playerrightpunch + 1;
_root.playerleftpunch = 0;
if (_root.playerstamina > 80) {
_root.player.keyboard.gotoAndStop("enable");
_root.healthstatus.overheat.gotoAndPlay("run");
_root.player.overheatright.gotoAndPlay("run");
gotoAndPlay (1);
}
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 42
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 43
if (_root.playerrightpunch > 3) {
_root.opponent.gotoAndPlay("block");
}
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 44
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 45
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 46
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
_root.playerstamina = _root.playerstamina + _root.playerstaminaminus;
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 47
_root.playerrightpunch = 0;
_root.playerleftpunch = _root.playerleftpunch + 1;
if (_root.playerstamina > 80) {
_root.player.keyboard.gotoAndStop("enable");
_root.healthstatus.overheat.gotoAndPlay("run");
_root.player.overheatleft.gotoAndPlay("run");
gotoAndPlay (1);
}
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 48
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 49
if (_root.playerleftpunch > 3) {
_root.opponent.gotoAndPlay("block");
}
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 50
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 51
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 52
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
_root.playerstamina = _root.playerstamina + _root.playerstaminaminus;
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 53
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 54
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 55
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 56
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 57
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 58
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 59
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 60
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 61
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 62
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 63
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 64
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 65
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 66
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 67
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 68
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 69
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 70
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 71
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 72
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 73
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 74
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 75
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 76
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 77
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 78
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 79
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 80
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 81
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 82
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 83
_root.player.keyboard.gotoAndStop("disable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 84
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 85
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 86
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 87
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 88
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 89
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 90
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 91
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 92
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 93
_root.player.keyboard.gotoAndStop("disable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 94
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 95
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 96
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 97
gotoAndPlay (1);
_root.player.keyboard.gotoAndStop("enable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 98
stopAllSounds();
_root.player.keyboard.gotoAndStop("disable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 99
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 100
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 101
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 102
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 103
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 104
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 105
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 106
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 107
_root.frontend.gotoAndPlay("gameover");
_root.opponent.gotoAndPlay("win");
stop();
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 108
_root.frontend.gotoAndPlay("playerwin");
_root.winlose.gotoAndPlay("win");
_root.player.keyboard.gotoAndStop("disable");
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 109
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 110
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 111
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 112
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 113
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 114
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 115
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 116
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 117
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 118
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 119
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 120
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 121
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 122
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 123
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 124
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 125
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 126
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 127
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 128
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 129
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 130
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 131
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 132
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 133
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 134
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 135
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 136
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 137
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 138
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 139
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 140
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 141
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 142
gotoAndPlay (117);
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 207 MovieClip Frame 143
if (_root.playercolor == 1) {
_root.player.leftshoulder.gotoAndStop("blue");
_root.player.leftarm.gotoAndStop("blue");
_root.player.leftfist.gotoAndStop("blue");
_root.player.rightshoulder.gotoAndStop("blue");
_root.player.rightarm.gotoAndStop("blue");
_root.player.rightfist.gotoAndStop("blue");
_root.player.cap.gotoAndStop("blue");
_root.player.body.gotoAndStop("blue");
}
if (_root.playercolor == 2) {
_root.player.leftshoulder.gotoAndStop("red");
_root.player.leftarm.gotoAndStop("red");
_root.player.leftfist.gotoAndStop("red");
_root.player.rightshoulder.gotoAndStop("red");
_root.player.rightarm.gotoAndStop("red");
_root.player.rightfist.gotoAndStop("red");
_root.player.cap.gotoAndStop("red");
_root.player.body.gotoAndStop("red");
}
if (_root.playercolor == 3) {
_root.player.leftshoulder.gotoAndStop("yellow");
_root.player.leftarm.gotoAndStop("yellow");
_root.player.leftfist.gotoAndStop("yellow");
_root.player.rightshoulder.gotoAndStop("yellow");
_root.player.rightarm.gotoAndStop("yellow");
_root.player.rightfist.gotoAndStop("yellow");
_root.player.cap.gotoAndStop("yellow");
_root.player.body.gotoAndStop("yellow");
}
if (_root.playercolor == 4) {
_root.player.leftshoulder.gotoAndStop("green");
_root.player.leftarm.gotoAndStop("green");
_root.player.leftfist.gotoAndStop("green");
_root.player.rightshoulder.gotoAndStop("green");
_root.player.rightarm.gotoAndStop("green");
_root.player.rightfist.gotoAndStop("green");
_root.player.cap.gotoAndStop("green");
_root.player.body.gotoAndStop("green");
}
Symbol 208 MovieClip Frame 1
if (_root.hits > 2) {
_root.hits = 0;
_root.opponent.ai.gotoAndStop("hold");
_root.opponent.gotoAndPlay("superblock");
}
Symbol 208 MovieClip Frame 2
gotoAndPlay (1);
Symbol 209 MovieClip Frame 1
stop();
Symbol 209 MovieClip Frame 2
if (Math.round(Math.random() * _root.opponentattack) == 1) {
_root.opponent.gotoAndPlay("leftfist");
gotoAndStop (1);
}
Symbol 209 MovieClip Frame 3
if (Math.round(Math.random() * _root.opponentattack) == 1) {
_root.opponent.gotoAndPlay("rightfist");
gotoAndStop (1);
}
Symbol 209 MovieClip Frame 4
if (Math.round(Math.random() * _root.opponentattack) == 1) {
_root.opponent.gotoAndPlay("slam");
gotoAndStop (1);
}
Symbol 209 MovieClip Frame 5
if (Math.round(Math.random() * _root.opponentattack) == 1) {
_root.opponent.gotoAndPlay("special");
gotoAndStop (1);
}
Symbol 209 MovieClip Frame 6
if ((_root.levelnumber = 1)) {
gotoAndPlay (7);
}
if ((_root.levelnumber = 2)) {
gotoAndPlay (9);
}
if ((_root.levelnumber = 3)) {
gotoAndPlay (11);
}
if ((_root.levelnumber = 4)) {
gotoAndPlay (13);
}
if ((_root.levelnumber = 5)) {
gotoAndPlay (15);
}
if ((_root.levelnumber = 6)) {
gotoAndPlay (2);
}
if (_root.levelnumber > 6) {
gotoAndPlay (2);
}
Symbol 209 MovieClip Frame 17
gotoAndPlay (2);
Symbol 212 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 1
stop();
Symbol 218 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 1
stop();
Symbol 224 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 1
stop();
Symbol 244 MovieClip Frame 1
stop();
Symbol 251 MovieClip Frame 1
stop();
Symbol 258 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 12
gotoAndStop (1);
Symbol 304 MovieClip Frame 24
gotoAndStop (1);
Symbol 304 MovieClip Frame 31
gotoAndStop (1);
Symbol 304 MovieClip Frame 38
gotoAndStop (1);
Symbol 311 MovieClip Frame 1
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 59
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
gotoAndPlay (1);
Symbol 311 MovieClip Frame 61
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 73
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 74
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 86
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 87
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("side");
_root.opponent.leftfist.swap.gotoAndStop("side");
Symbol 311 MovieClip Frame 96
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 97
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("side");
_root.opponent.leftfist.swap.gotoAndStop("side");
Symbol 311 MovieClip Frame 113
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 114
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
_root.opponent.ai.gotoAndStop("hold");
Symbol 311 MovieClip Frame 118
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.healthstatus.opponenthealth = _root.healthstatus.opponenthealth - _root.playerdamage;
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 119
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
stopAllSounds();
_root.opponent.ai.gotoAndStop("hold");
if (Math.round(Math.random() * 2) == 1) {
gotoAndPlay (182);
}
Symbol 311 MovieClip Frame 121
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
Symbol 311 MovieClip Frame 123
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
Symbol 311 MovieClip Frame 125
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
Symbol 311 MovieClip Frame 126
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
Symbol 311 MovieClip Frame 138
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.player.gotoAndPlay("win");
_root.ScoreVal = _root.ScoreVal + _root.killscore;
stop();
Symbol 311 MovieClip Frame 140
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.winlose.gotoAndPlay("lose");
_root.opponent.ai.gotoAndStop("hold");
Symbol 311 MovieClip Frame 141
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 163
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
gotoAndPlay (141);
Symbol 311 MovieClip Frame 165
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("side");
Symbol 311 MovieClip Frame 180
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 182
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
stopAllSounds();
_root.opponent.ai.gotoAndStop("hold");
Symbol 311 MovieClip Frame 200
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
_root.player.gotoAndPlay("win");
_root.ScoreVal = _root.ScoreVal + _root.killscore;
stop();
Symbol 311 MovieClip Frame 201
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 220
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
if (_root.enemytype == 2) {
_root.opponent.specialattacks.gotoAndPlay("firepunch");
}
if (_root.enemytype == 5) {
_root.opponent.specialattacks.gotoAndPlay("electropunch");
}
Symbol 311 MovieClip Frame 230
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 231
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
Symbol 311 MovieClip Frame 250
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
if (_root.enemytype == 4) {
_root.opponent.specialattacks.gotoAndPlay("electrowave");
}
if (_root.enemytype == 6) {
_root.opponent.specialattacks.gotoAndPlay("forcewave");
}
Symbol 311 MovieClip Frame 255
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
gotoAndPlay (1);
_root.opponent.ai.gotoAndPlay("run");
Symbol 311 MovieClip Frame 256
_root.opponent.cap.gotoAndStop(_root.enemytype);
_root.opponent.body.gotoAndStop(_root.enemytype);
_root.opponent.faceplate.gotoAndStop(_root.enemytype);
_root.opponent.leftshoulder.gotoAndStop(_root.enemytype);
_root.opponent.rightshoulder.gotoAndStop(_root.enemytype);
_root.opponent.leftfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.gotoAndStop(_root.enemytype);
_root.opponent.rightfist.swap.gotoAndStop("front");
_root.opponent.leftfist.swap.gotoAndStop("front");
if (_root.enemytype == 1) {
gotoAndPlay (61);
}
if (_root.enemytype == 2) {
gotoAndPlay (201);
}
if (_root.enemytype == 3) {
gotoAndPlay (165);
}
if (_root.enemytype == 4) {
gotoAndPlay (231);
}
if (_root.enemytype == 5) {
gotoAndPlay (201);
}
if (_root.enemytype == 6) {
gotoAndPlay (231);
}
Symbol 343 MovieClip Frame 2
if (_root.enemytype == 1) {
gotoAndPlay (3);
}
if (_root.enemytype == 2) {
gotoAndPlay (34);
}
if (_root.enemytype == 3) {
gotoAndPlay (65);
}
if (_root.enemytype == 4) {
gotoAndPlay (96);
}
if (_root.enemytype == 5) {
gotoAndPlay (351);
}
if (_root.enemytype == 6) {
gotoAndPlay (382);
}
Symbol 343 MovieClip Frame 32
gotoAndPlay (3);
Symbol 343 MovieClip Frame 63
gotoAndPlay (34);
Symbol 343 MovieClip Frame 94
gotoAndPlay (65);
Symbol 343 MovieClip Frame 349
gotoAndPlay (96);
Symbol 343 MovieClip Frame 380
gotoAndPlay (351);
Symbol 343 MovieClip Frame 411
gotoAndPlay (382);