Frame 3
_global.QuestionNumber = 0;
_global.CorrectNumber = 0;
_global.ExamPick;
_global.PlayerRank;
_global.CurrentPlace;
_global.CurrentDay;
_global.LastDay;
_global.CurrentHour;
_global.CurrentMinute;
_global.CurrentCash;
_global.SecretsFound;
_global.SafeCode;
_global.SafeCrackAttempt;
_global.GottenPaperclip;
_global.FoundSafe;
_global.FoundPeeping;
_global.BossLampOn;
_global.FlushedToilet;
_global.FoundEin;
_global.FoundCocaine;
_global.ChangedWall;
_global.GotPicture;
_global.GotComic;
_global.GotNote01;
_global.GotFax;
_global.GotConnectMap;
_global.GotSafeCash;
_global.GotAward;
_global.GotStone;
_global.GotPocketwatch;
_global.GymInvite;
_global.GotStockMarket;
_global.GotTrainer;
_global.GotMassage;
_global.GotJedi;
_global.GotKumon;
_global.ItemBriefcase = new Array(12);
var Item0 = new ItemData("Ultra Red Bow Tie", 0, 3020, false, 0, 0, 0, 0);
var Item1 = new ItemData("Old Sport Aftershave", 0, 1050, true, 1, 0, 2, 1);
var Item2 = new ItemData("Squeezable Stress Doll", 0, 450, false, 0, 0, 0, 0);
var Item3 = new ItemData("Rainbow Sprinkled Donut", 0, 200, true, -1, 1, -2, 0);
var Item4 = new ItemData("Executive Ball Clicker", 0, 1800, false, 0, 0, 0, 0);
var Item5 = new ItemData("The Stone", 0, 10000, false, 0, 0, 0, 0);
var Item6 = new ItemData("Ultra Fine Cigarettes", 1, 520, false, 0, 0, 0, 0);
var Item7 = new ItemData("No. 1 Sales Award", 0, 0, false, 0, 0, 0, 0);
var Item8 = new ItemData("Yakima Goat Beer", 1, 270, true, -2, -1, 3, 1);
var Item9 = new ItemData("Silver Pocketwatch", 0, 4300, false, 0, 0, 0, 0);
var Item10 = new ItemData("Pure Cocaine", 0, 700, true, -2, 3, -2, 0);
var Item11 = new ItemData("Genius Juice and Tea", 0, 830, true, 3, 0, -2, 1);
_global.ItemBriefcase[0] = Item0;
_global.ItemBriefcase[1] = Item1;
_global.ItemBriefcase[2] = Item2;
_global.ItemBriefcase[3] = Item3;
_global.ItemBriefcase[4] = Item4;
_global.ItemBriefcase[5] = Item5;
_global.ItemBriefcase[6] = Item6;
_global.ItemBriefcase[7] = Item7;
_global.ItemBriefcase[8] = Item8;
_global.ItemBriefcase[9] = Item9;
_global.ItemBriefcase[10] = Item10;
_global.ItemBriefcase[11] = Item11;
var GendoData = new Person("Gendo Ikari", "President", "O", 0);
var MisatoData = new Person("Misato Katsuragi", "First CEO", "AB", 0);
var SpikeData = new Person("Spike Spiegel", "Second CEO", "O", 0);
var ReiData = new Person("Rei Ayanami", "Manager", "B", 0);
var SangoData = new Person("Sango", "Coworker", "B", 0);
var InuyashaData = new Person("Inuyasha", "Coworker", "A", 0);
var LinaData = new Person("Lina Inverse", "Intern", "A", 0);
_global.GameOver = false;
_global.PlayerRank = "Peon";
_global.CurrentPlace = _root._currentframe;
_global.CurrentDay = 1;
_global.LastDay = 50;
_global.CurrentHour = 9;
_global.CurrentMinute = 10;
_global.CurrentCash = 0;
_global.SafeCrackAttempt = -6;
_global.SecretsFound = 0;
Frame 4
function UpdateHUD() {
var _local3 = "00" + _global.CurrentHour;
var _local2 = "00" + _global.CurrentMinute;
HUD_mc.NowTime_txt.text = (_local3.slice(_local3.length - 2) + ":") + _local2.slice(_local2.length - 2);
HUD_mc.NowHP_txt.text = PlayerOne.GetHP();
}
function GenerateCode() {
var _local2;
_local2 = Math.round(Math.abs(Math.random() - 0.01) * 10000);
_global.SafeCode = _local2;
}
function ResetAllFlags() {
_global.GottenPaperclip = false;
_global.FoundSafe = false;
_global.GotSafeCash = false;
_global.GotAward = false;
_global.GotStone = false;
_global.GotPocketwatch = false;
_global.GymInvite = false;
_global.FoundPeeping = false;
_global.BossLampOn = false;
_global.FlushedToilet = false;
_global.FoundEin = false;
_global.FoundCocaine = false;
_global.ChangedWall = false;
_global.GotPicture = false;
_global.GotComic = false;
_global.GotNote01 = false;
_global.GotFax = false;
_global.GotConnectMap = false;
_global.GotStockMarket = false;
_global.GotTrainer = false;
_global.GotMassage = false;
_global.GotJedi = false;
_global.GotKumon = false;
}
function ShowStatChanges(IndexNumber) {
FormatInfo = new TextFormat();
INTScore_txt.text = PlayerOne.GetINT() + _global.ItemBriefcase[IndexNumber].GetINT();
if (INTScore_txt.text < "0") {
INTScore_txt.text = "0";
}
if (INTScore_txt.text > PlayerOne.GetINT()) {
FormatInfo.color = 65280;
INTScore_txt.setTextFormat(FormatInfo);
} else if (INTScore_txt.text < PlayerOne.GetINT()) {
FormatInfo.color = 16711680 /* 0xFF0000 */;
INTScore_txt.setTextFormat(FormatInfo);
} else {
FormatInfo.color = 16777215 /* 0xFFFFFF */;
INTScore_txt.setTextFormat(FormatInfo);
}
STRScore_txt.text = PlayerOne.GetSTR() + _global.ItemBriefcase[IndexNumber].GetSTR();
if (STRScore_txt.text < "0") {
STRScore_txt.text = "0";
}
if (STRScore_txt.text > PlayerOne.GetSTR()) {
FormatInfo.color = 65280;
STRScore_txt.setTextFormat(FormatInfo);
} else if (STRScore_txt.text < PlayerOne.GetSTR()) {
FormatInfo.color = 16711680 /* 0xFF0000 */;
STRScore_txt.setTextFormat(FormatInfo);
} else {
FormatInfo.color = 16777215 /* 0xFFFFFF */;
STRScore_txt.setTextFormat(FormatInfo);
}
CHAScore_txt.text = PlayerOne.GetCHA() + _global.ItemBriefcase[IndexNumber].GetCHA();
if (CHAScore_txt.text < "0") {
CHAScore_txt.text = "0";
}
if (CHAScore_txt.text > PlayerOne.GetCHA()) {
FormatInfo.color = 65280;
CHAScore_txt.setTextFormat(FormatInfo);
} else if (CHAScore_txt.text < PlayerOne.GetCHA()) {
FormatInfo.color = 16711680 /* 0xFF0000 */;
CHAScore_txt.setTextFormat(FormatInfo);
} else {
FormatInfo.color = 16777215 /* 0xFFFFFF */;
CHAScore_txt.setTextFormat(FormatInfo);
}
LUKScore_txt.text = PlayerOne.GetLUK() + _global.ItemBriefcase[IndexNumber].GetLUK();
if (LUKScore_txt.text < "0") {
LUKScore_txt.text = "0";
}
if (LUKScore_txt.text > PlayerOne.GetLUK()) {
FormatInfo.color = 65280;
LUKScore_txt.setTextFormat(FormatInfo);
} else if (LUKScore_txt.text < PlayerOne.GetLUK()) {
FormatInfo.color = 16711680 /* 0xFF0000 */;
LUKScore_txt.setTextFormat(FormatInfo);
} else {
FormatInfo.color = 16777215 /* 0xFFFFFF */;
LUKScore_txt.setTextFormat(FormatInfo);
}
}
function UseAnItem(IndexNumber) {
ResultSound = new Sound();
if (_global.ItemBriefcase[IndexNumber].GetItemAmount() > 0) {
PlayerOne.UpdateINT(PlayerOne.GetINT() + _global.ItemBriefcase[IndexNumber].GetINT());
if (PlayerOne.GetINT() < 0) {
PlayerOne.UpdateINT(0);
}
PlayerOne.UpdateSTR(PlayerOne.GetSTR() + _global.ItemBriefcase[IndexNumber].GetSTR());
if (PlayerOne.GetSTR() < 0) {
PlayerOne.UpdateSTR(0);
}
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + _global.ItemBriefcase[IndexNumber].GetCHA());
if (PlayerOne.GetCHA() < 0) {
PlayerOne.UpdateCHA(0);
}
PlayerOne.UpdateLUK(PlayerOne.GetLUK() + _global.ItemBriefcase[IndexNumber].GetLUK());
if (PlayerOne.GetLUK() < 0) {
PlayerOne.UpdateLUK(0);
}
ResultSound.attachSound("whistledown01");
ResultSound.start();
_global.ItemBriefcase[IndexNumber].UpdateItemAmount(_global.ItemBriefcase[IndexNumber].GetItemAmount() - 1);
eval (("Item" + IndexNumber) + "Count_txt").text = _global.ItemBriefcase[IndexNumber].GetItemAmount();
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
function UpdateTime(TimeIncrement) {
_global.CurrentMinute = _global.CurrentMinute + TimeIncrement;
if (_global.CurrentMinute >= 60) {
_global.CurrentHour = _global.CurrentHour + 1;
_global.CurrentMinute = _global.CurrentMinute - 60;
}
if (_global.CurrentHour == 24) {
_global.CurrentHour = 0;
_global.CurrentDay = _global.CurrentDay + 1;
}
UpdateHUD();
if (_global.CurrentDay == 50) {
gotoAndPlay ("TimeOver");
}
}
function DisableAllButtons() {
this.HUD_mc._visible = false;
this.InvIcon._visible = false;
this.StatusIcon._visible = false;
this.WalkIcon._visible = false;
this.WanderIcon._visible = false;
TheWall_mc.Pink_btn.enabled = false;
this.WantCandy_btn.enabled = false;
this.Computer01_btn.enabled = false;
this.PaperStack_btn.enabled = false;
this.Telephone01_btn.enabled = false;
this.PostNote01_btn.enabled = false;
this.PictureFrame_btn.enabled = false;
this.Comic01_mc.enabled = false;
this.ConnectMap_mc.enabled = false;
this.Paperclip_btn.enabled = false;
this.ToiletFlush_btn.enabled = false;
this.VomitBar_btn.enabled = false;
this.Kaji_btn.enabled = false;
this.ChangeWall_btn.enabled = false;
this.FaxMachine_btn.enabled = false;
this.SafeCover_btn.enabled = false;
this.Safe_btn.enabled = false;
this.BossLamp_btn.enabled = false;
this.TakeExam_btn.enabled = false;
this.ElevDoors20_btn.enabled = false;
this.ElevDoors5_btn.enabled = false;
this.ElevBackButton_btn._visible = false;
this.Juice_btn.enabled = false;
this.Beer_btn.enabled = false;
this.Donut_btn.enabled = false;
this.Bowtie_btn.enabled = false;
this.Stressdoll_btn.enabled = false;
this.Smokes_btn.enabled = false;
this.Aftershave_btn.enabled = false;
this.Pocketwatch_btn.enabled = false;
this.Thestone_btn.enabled = false;
this.BallClicker_btn.enabled = false;
this.GymDoor_btn.enabled = false;
this.Peeping_btn.enabled = false;
this.Cocaine_btn.enabled = false;
this.EinCode_btn.enabled = false;
this.TrainCha01_btn.enabled = false;
this.TrainCha02_btn.enabled = false;
this.TrainCha03_btn.enabled = false;
this.TrainCha04_btn.enabled = false;
this.TrainInt01_btn.enabled = false;
this.TrainInt02_btn.enabled = false;
this.TrainInt03_btn.enabled = false;
this.TrainLuk01_btn.enabled = false;
this.TrainLuk02_btn.enabled = false;
this.TrainLuk03_btn.enabled = false;
this.TrainStr01_btn.enabled = false;
this.TrainStr02_btn.enabled = false;
this.TrainStr03_btn.enabled = false;
this.WasteTime_btn.enabled = false;
}
function EnableAllButtons() {
this.HUD_mc._visible = true;
this.InvIcon._visible = true;
this.StatusIcon._visible = true;
this.WalkIcon._visible = true;
this.WanderIcon._visible = true;
this.WantCandy_btn.enabled = true;
TheWall_mc.Pink_btn.enabled = true;
this.Computer01_btn.enabled = true;
this.PaperStack_btn.enabled = true;
this.Telephone01_btn.enabled = true;
this.PostNote01_btn.enabled = true;
this.PictureFrame_btn.enabled = true;
this.Comic01_mc.enabled = true;
this.ConnectMap_mc.enabled = true;
this.Paperclip_btn.enabled = true;
this.ToiletFlush_btn.enabled = true;
this.VomitBar_btn.enabled = true;
this.Kaji_btn.enabled = true;
this.ChangeWall_btn.enabled = true;
this.FaxMachine_btn.enabled = true;
this.SafeCover_btn.enabled = true;
this.Safe_btn.enabled = true;
this.BossLamp_btn.enabled = true;
this.TakeExam_btn.enabled = true;
this.ElevDoors20_btn.enabled = true;
this.ElevDoors5_btn.enabled = true;
this.ElevBackButton_btn._visible = true;
this.Juice_btn.enabled = true;
this.Beer_btn.enabled = true;
this.Donut_btn.enabled = true;
this.Bowtie_btn.enabled = true;
this.Stressdoll_btn.enabled = true;
this.Smokes_btn.enabled = true;
this.Aftershave_btn.enabled = true;
this.Pocketwatch_btn.enabled = true;
this.Thestone_btn.enabled = true;
this.BallClicker_btn.enabled = true;
this.GymDoor_btn.enabled = true;
this.Peeping_btn.enabled = true;
this.Cocaine_btn.enabled = true;
this.EinCode_btn.enabled = true;
this.TrainCha01_btn.enabled = true;
this.TrainCha02_btn.enabled = true;
this.TrainCha03_btn.enabled = true;
this.TrainCha04_btn.enabled = true;
this.TrainInt01_btn.enabled = true;
this.TrainInt02_btn.enabled = true;
this.TrainInt03_btn.enabled = true;
this.TrainLuk01_btn.enabled = true;
this.TrainLuk02_btn.enabled = true;
this.TrainLuk03_btn.enabled = true;
this.TrainStr01_btn.enabled = true;
this.TrainStr02_btn.enabled = true;
this.TrainStr03_btn.enabled = true;
this.WasteTime_btn.enabled = true;
UpdateHUD();
}
function HideAllMovies() {
this.Gendo1_mc._visible = false;
this.Gendo2_mc._visible = false;
this.Misato1_mc._visible = false;
this.Misato2_mc._visible = false;
this.Misato3_mc._visible = false;
this.Misato4_mc._visible = false;
this.Spike1_mc._visible = false;
this.Rei1_mc._visible = false;
this.Rei2_mc._visible = false;
this.Rei3_mc._visible = false;
this.Rei4_mc._visible = false;
this.Sango1_mc._visible = false;
this.Sango2_mc._visible = false;
this.Sango3_mc._visible = false;
this.Sango4_mc._visible = false;
this.Inuyasha1_mc._visible = false;
this.Inuyasha2_mc._visible = false;
this.Inuyasha3_mc._visible = false;
this.Inuyasha4_mc._visible = false;
this.Lina1_mc._visible = false;
this.Lina2_mc._visible = false;
this.Edward1_mc._visible = false;
}
function HideAllDialogs() {
this.DialogGendo_mc._visible = false;
this.DialogMisato_mc._visible = false;
this.DialogSpike_mc._visible = false;
this.DialogRei_mc._visible = false;
this.DialogSango_mc._visible = false;
this.DialogInuyasha_mc._visible = false;
this.DialogLina_mc._visible = false;
this.DialogMisc_mc._visible = false;
this.GameListing_mc._visible = false;
}
function DarkenFaces(NotDark, ColorDefined) {
ColorDefined.ra = 30;
ColorDefined.ga = 30;
ColorDefined.ba = 30;
New_color = new Color(this.GendoStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.MisatoStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.SpikeStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.LinaStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.InuyashaStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.SangoStatus);
New_color.setTransform(ColorDefined);
New_color = new Color(this.ReiStatus);
New_color.setTransform(ColorDefined);
ColorDefined.ra = 100;
ColorDefined.ga = 100;
ColorDefined.ba = 100;
New_color = new Color(eval (NotDark));
New_color.setTransform(ColorDefined);
}
function DisplayCash() {
NumPictAry = new Array(6);
NumPictAry[0] = "Pos_A_mc";
NumPictAry[1] = "Pos_B_mc";
NumPictAry[2] = "Pos_C_mc";
NumPictAry[3] = "Pos_D_mc";
NumPictAry[4] = "Pos_E_mc";
NumPictAry[5] = "Pos_F_mc";
CashAmount = "------" + _global.CurrentCash.toString();
CashAmount = CashAmount.slice(CashAmount.length - 6);
i = 0;
while (i < 6) {
TestVar = CashAmount.slice(i, i + 1);
switch (TestVar) {
case "0" :
eval (NumPictAry[i]).gotoAndStop(10);
break;
case "1" :
eval (NumPictAry[i]).gotoAndStop(1);
break;
case "2" :
eval (NumPictAry[i]).gotoAndStop(2);
break;
case "3" :
eval (NumPictAry[i]).gotoAndStop(3);
break;
case "4" :
eval (NumPictAry[i]).gotoAndStop(4);
break;
case "5" :
eval (NumPictAry[i]).gotoAndStop(5);
break;
case "6" :
eval (NumPictAry[i]).gotoAndStop(6);
break;
case "7" :
eval (NumPictAry[i]).gotoAndStop(7);
break;
case "8" :
eval (NumPictAry[i]).gotoAndStop(8);
break;
case "9" :
eval (NumPictAry[i]).gotoAndStop(9);
break;
case "-" :
if (CashAmount.slice(i + 1, i + 2) != "-") {
eval (NumPictAry[i]).gotoAndStop(12);
} else {
eval (NumPictAry[i]).gotoAndStop(11);
}
}
i++;
}
}
function WorkerEncounter(Overall) {
var _local1;
_local1 = Math.random() * 100;
if (_local1 < Overall) {
return(true);
}
return(false);
}
function WhichWorker(GenEn, MisEn, SpiEn, ReiEn, SanEn, InuEn, LinEn) {
var _local1;
_local1 = Math.floor(Math.random() * 100);
if ((GenEn != 0) && (_local1 <= GenEn)) {
GendoTalking();
} else if ((MisEn != 0) && (_local1 <= MisEn)) {
MisatoTalking();
} else if ((SpiEn != 0) && (_local1 <= SpiEn)) {
SpikeTalking();
} else if ((ReiEn != 0) && (_local1 <= ReiEn)) {
ReiTalking();
} else if ((SanEn != 0) && (_local1 <= SanEn)) {
SangoTalking();
} else if ((InuEn != 0) && (_local1 <= InuEn)) {
InuyashaTalking();
} else if ((LinEn != 0) && (_local1 <= LinEn)) {
LinaTalking();
}
}
function GendoTalking() {
DisableAllButtons();
if (GendoData.GetScore() < 1700) {
Gendo1_mc._visible = true;
} else {
Gendo2_mc._visible = true;
}
DialogGendo_mc._visible = true;
DialogGendo_mc.gotoAndStop(2);
}
function MisatoTalking() {
DisableAllButtons();
if (MisatoData.GetScore() < 300) {
Misato1_mc._visible = true;
} else if (MisatoData.GetScore() < 800) {
Misato2_mc._visible = true;
} else {
Misato3_mc._visible = true;
}
DialogMisato_mc._visible = true;
DialogMisato_mc.gotoAndStop(2);
}
function SpikeTalking() {
DisableAllButtons();
Spike1_mc._visible = true;
DialogSpike_mc._visible = true;
DialogSpike_mc.gotoAndStop(2);
}
function ReiTalking() {
DisableAllButtons();
if (ReiData.GetScore() < 300) {
Rei1_mc._visible = true;
} else if (ReiData.GetScore() < 800) {
Rei2_mc._visible = true;
} else if (ReiData.GetScore() < 1700) {
Rei3_mc._visible = true;
} else {
Rei4_mc._visible = true;
}
DialogRei_mc._visible = true;
DialogRei_mc.gotoAndStop(2);
}
function SangoTalking() {
DisableAllButtons();
if (SangoData.GetScore() < 300) {
Sango1_mc._visible = true;
} else if (SangoData.GetScore() < 800) {
Sango2_mc._visible = true;
} else if (SangoData.GetScore() < 1700) {
Sango3_mc._visible = true;
} else {
Sango4_mc._visible = true;
}
DialogSango_mc._visible = true;
DialogSango_mc.gotoAndStop(2);
}
function InuyashaTalking() {
DisableAllButtons();
if (InuyashaData.GetScore() < 300) {
Inuyasha1_mc._visible = true;
} else if (InuyashaData.GetScore() < 800) {
Inuyasha2_mc._visible = true;
} else if (InuyashaData.GetScore() < 1700) {
Inuyasha3_mc._visible = true;
} else {
Inuyasha4_mc._visible = true;
}
DialogInuyasha_mc._visible = true;
DialogInuyasha_mc.gotoAndStop(2);
}
function LinaTalking() {
DisableAllButtons();
if (LinaData.GetScore() < 800) {
Lina1_mc._visible = true;
} else {
Lina2_mc._visible = true;
}
DialogLina_mc._visible = true;
DialogLina_mc.gotoAndStop(2);
}
function RandomRange(LowBound, HighBound) {
var _local2 = (HighBound - LowBound) + 1;
var _local3 = Math.round(Math.random() * 100);
var _local1 = Math.floor(_local3 / (100 / _local2));
if (_local1 >= _local2) {
_local1 = _local2 - 1;
}
TheResult = LowBound + _local1;
return(TheResult);
}
stop();
stopAllSounds();
Frame 5
stop();
AcceptPerson_btn._visible = false;
PlayerName_txt.text = "Someone";
PointsLeft_txt.text = "70";
Int_txt.text = "0";
Str_txt.text = "0";
Cha_txt.text = "0";
Luk_txt.text = "0";
HPMax_txt.text = "100";
Cash_txt.text = "20";
Frame 6
stopAllSounds();
prevFrame();
Frame 7
Frame 38
stop();
Frame 39
stop();
Frame 40
stop();
Frame 41
stop();
Frame 42
stop();
Frame 43
stop();
Frame 44
stop();
Frame 45
stop();
Frame 46
stop();
Frame 47
stop();
Frame 48
stop();
Frame 49
stop();
Frame 50
stop();
Frame 51
stop();
Frame 52
stop();
Frame 58
HideAllMovies();
HideAllDialogs();
ResetAllFlags();
GenerateCode();
stopAllSounds();
gotoAndPlay ("Cubicle_1");
Frame 59
stop();
_global.CurrentPlace = _root._currentframe;
RoomOver_txt.text = "";
UpdateTime(0);
Frame 60
stop();
_global.CurrentPlace = _root._currentframe;
RoomOver_txt.text = "";
UpdateTime(0);
Frame 61
prevFrame();
Frame 62
stop();
UpdateTime(5);
_global.CurrentPlace = _root._currentframe;
if (PlayerOne.GetXP() > 3000) {
EinCode_btn._visible = true;
} else {
EinCode_btn._visible = false;
}
if (((_global.CurrentHour > 22) && (_global.CurrentHour < 24)) && (_global.GotStone == false)) {
TheStone2_btn._visible = true;
} else {
TheStone2_btn._visible = false;
}
Frame 63
stop();
UpdateTime(5);
_global.CurrentPlace = _root._currentframe;
if (WorkerEncounter(80)) {
WhichWorker(10, 0, 80, 0, 0, 0, 100);
}
Frame 64
stop();
UpdateTime(5);
_global.CurrentPlace = _root._currentframe;
if (PlayerOne.GetXP() > 2500) {
Cocaine_btn._visible = true;
} else {
Cocaine_btn._visible = false;
}
if (WorkerEncounter(50)) {
WhichWorker(0, 20, 30, 35, 68, 80, 100);
}
Frame 65
prevFrame();
Frame 66
stop();
UpdateTime(15);
DisableAllButtons();
Screen_mc._x = 155;
Screen_mc._y = 340;
Instance of Symbol 1637 MovieClip "Screen_mc" in Frame 66
on (press) {
this.startDrag([true, [-100, -100, 740, 580]]);
}
Frame 67
prevFrame();
Frame 68
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (_global.GotStockMarket) {
Computer01_btn._visible = true;
} else {
Computer01_btn._visible = false;
}
if (WorkerEncounter(10)) {
WhichWorker(10, 25, 45, 60, 75, 85, 100);
}
Frame 69
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(50)) {
WhichWorker(0, 20, 25, 35, 55, 72, 100);
}
Frame 70
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(40)) {
WhichWorker(0, 0, 20, 80, 100, 0, 0);
}
Instance of Symbol 1678 MovieClip "Comic01_mc" in Frame 70
on (release) {
if (_global.GotComic == false) {
_global.GotComic = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
this.play();
UpdateTime(3);
}
}
Frame 71
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(50)) {
WhichWorker(0, 0, 0, 0, 30, 90, 100);
}
Instance of Symbol 1695 MovieClip "ConnectMap_mc" in Frame 71
on (release) {
if (_global.GotConnectMap == false) {
_global.GotConnectMap = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
this.play();
}
Frame 72
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(50)) {
WhichWorker(5, 10, 0, 55, 70, 0, 100);
}
Frame 73
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
Paperclip_btn.tabEnabled = false;
if (_global.GottenPaperclip == true) {
Paperclip_btn.enabled = false;
}
if (WorkerEncounter(35)) {
WhichWorker(20, 0, 0, 0, 60, 75, 100);
}
Frame 74
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(85)) {
WhichWorker(0, 5, 12, 20, 80, 95, 100);
}
Frame 75
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(50)) {
WhichWorker(18, 36, 44, 62, 80, 98, 100);
}
Frame 76
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("MisatoGame");
Frame 77
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if ((PlayerOne.GetXP() > 2000) && (_global.GymInvite == false)) {
Kaji_btn._visible = true;
} else {
Kaji_btn._visible = false;
}
if (WorkerEncounter(40)) {
WhichWorker(0, 20, 30, 60, 70, 85, 100);
}
Frame 78
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(40)) {
WhichWorker(0, 10, 0, 30, 50, 70, 100);
}
Frame 79
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisplayCash();
if (_global.GotKumon == false) {
TrainInt02_btn._visible = false;
} else {
TrainInt02_btn._visible = true;
}
if (WorkerEncounter(50)) {
WhichWorker(30, 50, 65, 88, 100, 0, 0);
}
Frame 80
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(70)) {
WhichWorker(0, 100, 0, 0, 0, 0, 0);
}
Frame 81
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (_global.GotJedi == false) {
TrainLuk02_btn._visible = false;
} else {
TrainLuk02_btn._visible = true;
}
if (WorkerEncounter(50)) {
WhichWorker(0, 0, 100, 0, 0, 0, 0);
}
Frame 82
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(25)) {
WhichWorker(2, 10, 15, 30, 50, 75, 100);
}
Frame 83
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
SafeCover_btn.visible = true;
if (WorkerEncounter(80)) {
WhichWorker(80, 82, 0, 95, 0, 100, 0);
}
Instance of Symbol 1783 MovieClip "BossLamp_btn" in Frame 83
on (release) {
if (_global.BossLampOn == false) {
_global.BossLampOn = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
if (this._currentframe == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
ResultSound = new Sound();
ResultSound.attachSound("spindial");
ResultSound.start();
}
Frame 84
prevFrame();
Frame 85
nextFrame();
Frame 86
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisplayCash();
if (_global.GotMassage == false) {
TrainCha04_btn._visible = false;
} else {
TrainCha04_btn._visible = true;
}
stopAllSounds();
Frame 87
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
if (WorkerEncounter(70)) {
WhichWorker(7, 20, 40, 60, 70, 88, 100);
}
Frame 88
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisplayCash();
Frame 89
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisplayCash();
if (_global.GotPocketwatch == false) {
this.Pocketwatch_btn._visible = false;
} else {
this.Pocketwatch_btn._visible = true;
}
if (_global.GotStone == false) {
this.TheStone_btn._visible = false;
} else {
this.TheStone_btn._visible = true;
}
Frame 90
stop();
_global.CurrentPlace = _root._currentframe;
UpdateTime(5);
DisplayCash();
if (_global.GymInvite == true) {
GymDoor_btn.enabled = true;
} else {
GymDoor_btn.enabled = false;
}
if (_global.GotTrainer == false) {
TrainStr02_btn._visible = false;
} else {
TrainStr02_btn._visible = true;
}
Frame 91
stop();
_global.CurrentPlace = _root._currentframe;
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("TicTacToe");
UpdateTime(5);
Frame 92
prevFrame();
Frame 93
stop();
NewColorTransform = new Object();
GendoStatus.onRelease = function () {
GendoStatus.swapDepths(0);
FullName_txt.text = GendoData.GetName();
Affection_txt.text = GendoData.GetScore();
Job_txt.text = GendoData.GetJob();
Blood_txt.text = GendoData.GetBType();
DarkenFaces("GendoStatus", NewColorTransform);
};
MisatoStatus.onRelease = function () {
MisatoStatus.swapDepths(0);
FullName_txt.text = MisatoData.GetName();
Affection_txt.text = MisatoData.GetScore();
Job_txt.text = MisatoData.GetJob();
Blood_txt.text = MisatoData.GetBType();
DarkenFaces("MisatoStatus", NewColorTransform);
};
SpikeStatus.onRelease = function () {
SpikeStatus.swapDepths(0);
FullName_txt.text = SpikeData.GetName();
Affection_txt.text = SpikeData.GetScore();
Job_txt.text = SpikeData.GetJob();
Blood_txt.text = SpikeData.GetBType();
DarkenFaces("SpikeStatus", NewColorTransform);
};
ReiStatus.onRelease = function () {
ReiStatus.swapDepths(0);
FullName_txt.text = ReiData.GetName();
Affection_txt.text = ReiData.GetScore();
Job_txt.text = ReiData.GetJob();
Blood_txt.text = ReiData.GetBType();
DarkenFaces("ReiStatus", NewColorTransform);
};
SangoStatus.onRelease = function () {
SangoStatus.swapDepths(0);
FullName_txt.text = SangoData.GetName();
Affection_txt.text = SangoData.GetScore();
Job_txt.text = SangoData.GetJob();
Blood_txt.text = SangoData.GetBType();
DarkenFaces("SangoStatus", NewColorTransform);
};
InuyashaStatus.onRelease = function () {
InuyashaStatus.swapDepths(0);
FullName_txt.text = InuyashaData.GetName();
Affection_txt.text = InuyashaData.GetScore();
Job_txt.text = InuyashaData.GetJob();
Blood_txt.text = InuyashaData.GetBType();
DarkenFaces("InuyashaStatus", NewColorTransform);
};
LinaStatus.onRelease = function () {
LinaStatus.swapDepths(0);
FullName_txt.text = LinaData.GetName();
Affection_txt.text = LinaData.GetScore();
Job_txt.text = LinaData.GetJob();
Blood_txt.text = LinaData.GetBType();
DarkenFaces("LinaStatus", NewColorTransform);
};
ReiStatus.swapDepths(0);
FullName_txt.text = ReiData.GetName();
Affection_txt.text = ReiData.GetScore();
Job_txt.text = ReiData.GetJob();
Blood_txt.text = ReiData.GetBType();
DarkenFaces("ReiStatus", NewColorTransform);
Frame 94
prevFrame();
Frame 95
stop();
DayCount_txt.text = "DAY " + _global.CurrentDay;
var HAmount = ("00" + _global.CurrentHour);
var MAmount = ("00" + _global.CurrentMinute);
TimeNow_txt.text = (HAmount.slice(HAmount.length - 2) + ":") + MAmount.slice(MAmount.length - 2);
DisplayCash();
LevelTitle_txt.text = _global.PlayerRank;
SecretNumber_txt.text = _global.SecretsFound;
ItemInfo_txt.text = "";
PlayerName_txt.text = PlayerOne.GetName();
XPCount_txt.text = PlayerOne.GetXP();
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
HPAmount_txt.text = PlayerOne.GetHP();
HPMax_txt.text = PlayerOne.GetHPMax();
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Frame 96
prevFrame();
Frame 97
NewDay_txt.text = "DAY " + _global.CurrentDay;
var HAmount = ("00" + _global.CurrentHour);
var MAmount = ("00" + _global.CurrentMinute);
NewTime_txt.text = (HAmount.slice(HAmount.length - 2) + ":") + MAmount.slice(MAmount.length - 2);
Frame 160
gotoAndStop ("Floor20");
Frame 161
stop();
NameRank_txt.text = _global.PlayerRank;
Frame 169
gotoAndPlay ("Credits");
Frame 170
stop();
Frame 171
stop();
_global.GameOver = true;
Frame 179
gotoAndPlay ("Credits");
Frame 180
stop();
Frame 181
stop();
Frame 182
stop();
_global.ExamSheet;
ScoreCard_mc._visible = false;
AbortIcon._visible = true;
this.InuyashaPick.enabled = true;
this.SpikePick.enabled = true;
this.MisatoPick.enabled = true;
this.ReiPick.enabled = true;
this.SangoPick.enabled = true;
this.LinaPick.enabled = true;
Instance of Symbol 1298 MovieClip "SpikePick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 295;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.SpikeData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Spike";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1328 MovieClip "MisatoPick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 525;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.MisatoData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Misato";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1308 MovieClip "InuyashaPick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 132;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.InuyashaData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Inuyasha";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1316 MovieClip "SangoPick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 212;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.SangoData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Sango";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1278 MovieClip "LinaPick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 411;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.LinaData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Lina";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1324 MovieClip "ReiPick" in Frame 182
on (rollOver) {
_parent.ScoreCard_mc._x = 78;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.ReiData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
_global.ExamPick = "Rei";
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
_parent.play();
}
Instance of Symbol 1298 MovieClip "SpikePick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 295;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.SpikeData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Instance of Symbol 1328 MovieClip "MisatoPick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 525;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.MisatoData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Instance of Symbol 1308 MovieClip "InuyashaPick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 132;
_parent.ScoreCard_mc._y = 48;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.InuyashaData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Instance of Symbol 1316 MovieClip "SangoPick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 212;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.SangoData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Instance of Symbol 1278 MovieClip "LinaPick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 411;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.LinaData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Instance of Symbol 1324 MovieClip "ReiPick" in Frame 183
on (rollOver) {
_parent.ScoreCard_mc._x = 78;
_parent.ScoreCard_mc._y = 434;
_parent.ScoreCard_mc._visible = true;
_parent.ScoreCard_mc.AffectionLabel_txt.text = _parent.ReiData.GetScore();
}
on (rollOut) {
_parent.ScoreCard_mc._visible = false;
}
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
_parent.nextFrame();
}
Frame 198
_global.QuestionNumber = 0;
_global.CorrectNumber = 0;
if (_global.ExamPick == "Inuyasha") {
gotoAndPlay ("InuyashaExam");
}
if (_global.ExamPick == "Misato") {
gotoAndPlay ("MisatoExam");
}
if (_global.ExamPick == "Spike") {
gotoAndPlay ("SpikeExam");
}
if (_global.ExamPick == "Rei") {
gotoAndPlay ("ReiExam");
}
if (_global.ExamPick == "Sango") {
gotoAndPlay ("SangoExam");
}
if (_global.ExamPick == "Lina") {
gotoAndPlay ("LinaExam");
}
Frame 199
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 200
stop();
Frame 201
stop();
Frame 202
stop();
Frame 203
stop();
Frame 204
stop();
Frame 205
stop();
Frame 206
stop();
Frame 207
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 208
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 209
stop();
Frame 210
stop();
Frame 211
stop();
Frame 212
stop();
Frame 213
stop();
Frame 214
stop();
Frame 215
stop();
Frame 216
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 217
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 218
stop();
Frame 219
stop();
Frame 220
stop();
Frame 221
stop();
Frame 222
stop();
Frame 223
stop();
Frame 224
stop();
Frame 225
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 226
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 227
stop();
Frame 228
stop();
Frame 229
stop();
Frame 230
stop();
Frame 231
stop();
Frame 232
stop();
Frame 233
stop();
Frame 234
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 235
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 236
stop();
Frame 237
stop();
Frame 238
stop();
Frame 239
stop();
Frame 240
stop();
Frame 241
stop();
Frame 242
stop();
Frame 243
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 244
stop();
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
Frame 245
stop();
Frame 246
stop();
Frame 247
stop();
Frame 248
stop();
Frame 249
stop();
Frame 250
stop();
Frame 251
stop();
Frame 252
stop();
HowManyCorrect_txt.text = _global.CorrectNumber;
Frame 259
WhichWorker1_txt.text = "";
Worker1Score_txt.text = "";
WhichWorker2_txt.text = "";
Worker2Score_txt.text = "";
WhichWorker3_txt.text = "";
Worker3Score_txt.text = "";
Average_txt.text = "";
Threshold_txt.text = "";
BossScore_txt.text = "";
NewThreshold_txt.text = "";
FinalScore_txt.text = "";
Approved_mc._visible = false;
Failed_mc._visible = false;
stop();
Score1txt_mc.play();
WhichWorker1_txt.text = "";
Worker1Score_txt.text = "";
WhichWorker2_txt.text = "";
Worker2Score_txt.text = "";
WhichWorker3_txt.text = "";
Worker3Score_txt.text = "";
Average_txt.text = "";
Threshold_txt.text = "";
BossScore_txt.text = "";
NewThreshold_txt.text = "";
FinalScore_txt.text = "";
stop();
Score1txt_mc.play();
Frame 260
WhichWorker1_txt.text = _global.ExamPick;
Frame 262
BaseScore = 2 * eval (WhichWorker1_txt.text + "Data").GetScore();
j = RandomRange(8, 10) / 10;
d = ((_global.CorrectNumber * 25) + 25) / 100;
Worker1Score_txt.text = Math.round((BaseScore * j) * d);
Frame 263
stop();
Score2txt_mc.play();
Frame 264
var NotChosen = true;
while (NotChosen) {
SomePick = RandomRange(1, 6);
switch (SomePick) {
case 1 :
if (_global.ExamPick != "Spike") {
WhichWorker2_txt.text = "Spike";
NotChosen = false;
}
break;
case 2 :
if (_global.ExamPick != "Misato") {
WhichWorker2_txt.text = "Misato";
NotChosen = false;
}
break;
case 3 :
if (_global.ExamPick != "Rei") {
WhichWorker2_txt.text = "Rei";
NotChosen = false;
}
break;
case 4 :
if (_global.ExamPick != "Inuyasha") {
WhichWorker2_txt.text = "Inuyasha";
NotChosen = false;
}
break;
case 5 :
if (_global.ExamPick != "Sango") {
WhichWorker2_txt.text = "Sango";
NotChosen = false;
}
break;
case 6 :
if (_global.ExamPick == "Lina") {
break;
}
WhichWorker2_txt.text = "Lina";
NotChosen = false;
}
}
Frame 266
BaseScore = eval (WhichWorker2_txt.text + "Data").GetScore();
j = RandomRange(8, 10) / 10;
Worker2Score_txt.text = Math.round(BaseScore * j);
Frame 267
stop();
Score3txt_mc.play();
Frame 268
var NotChosen = true;
while (NotChosen) {
SomePick = RandomRange(1, 6);
switch (SomePick) {
case 1 :
if ((_global.ExamPick != "Spike") && (WhichWorker2_txt.text != "Spike")) {
WhichWorker3_txt.text = "Spike";
NotChosen = false;
}
break;
case 2 :
if ((_global.ExamPick != "Misato") && (WhichWorker2_txt.text != "Misato")) {
WhichWorker3_txt.text = "Misato";
NotChosen = false;
}
break;
case 3 :
if ((_global.ExamPick != "Rei") && (WhichWorker2_txt.text != "Rei")) {
WhichWorker3_txt.text = "Rei";
NotChosen = false;
}
break;
case 4 :
if ((_global.ExamPick != "Inuyasha") && (WhichWorker2_txt.text != "Inuyasha")) {
WhichWorker3_txt.text = "Inuyasha";
NotChosen = false;
}
break;
case 5 :
if ((_global.ExamPick != "Sango") && (WhichWorker2_txt.text != "Sango")) {
WhichWorker3_txt.text = "Sango";
NotChosen = false;
}
break;
case 6 :
if (!((_global.ExamPick != "Lina") && (WhichWorker2_txt.text != "Lina"))) {
break;
}
WhichWorker3_txt.text = "Lina";
NotChosen = false;
}
}
Frame 270
BaseScore = eval (WhichWorker3_txt.text + "Data").GetScore();
j = RandomRange(8, 10) / 10;
Worker3Score_txt.text = Math.round(BaseScore * j);
Frame 271
Frame 272
stop();
ScoreAvetxt_mc.play();
Frame 273
Average_txt.text = Math.round(((Number(Worker1Score_txt.text) + Number(Worker2Score_txt.text)) + Number(Worker3Score_txt.text)) / 3);
Frame 274
stop();
ScoreThreshtxt_mc.play();
Frame 275
switch (_global.PlayerRank) {
case "Peon" :
Threshold_txt.text = "500";
break;
case "Bootlicker" :
Threshold_txt.text = "1000";
break;
case "Toadie" :
Threshold_txt.text = "1500";
break;
case "Sycophant" :
Threshold_txt.text = "2000";
break;
case "Acolyte" :
Threshold_txt.text = "2500";
break;
case "Team Leader" :
Threshold_txt.text = "3000";
break;
case "Manager" :
Threshold_txt.text = "3500";
break;
case "Executive" :
Threshold_txt.text = "4000";
}
Frame 276
stop();
ScoreBosstxt_mc.play();
Frame 277
BaseScore = GendoData.GetScore();
j = RandomRange(7, 10) / 10;
BossScore_txt.text = Math.round(BaseScore * j);
Frame 278
stop();
ScoreNewThreshtxt_mc.play();
Frame 279
AdjustedThreshold = Number(Threshold_txt.text) - Number(BossScore_txt.text);
if (AdjustedThreshold < 0) {
NewThreshold_txt.text = 0;
} else {
NewThreshold_txt.text = AdjustedThreshold;
}
Frame 281
stop();
ScoreFinaltxt_mc.play();
Frame 282
FinalScore_txt.text = Number(Average_txt.text) - Number(NewThreshold_txt.text);
Frame 283
Approved_mc._visible = false;
Failed_mc._visible = false;
stop();
if (Number(FinalScore_txt.text) > 0) {
Approved_mc._visible = true;
_global.CurrentCash = Number(_global.CurrentCash) + (Number(FinalScore_txt.text) * 5);
switch (Threshold_txt.text) {
case "500" :
_global.PlayerRank = "Bootlicker";
break;
case "1000" :
_global.PlayerRank = "Toadie";
break;
case "1500" :
_global.PlayerRank = "Sycophant";
break;
case "2000" :
_global.PlayerRank = "Acolyte";
break;
case "2500" :
_global.PlayerRank = "Team Leader";
break;
case "3000" :
_global.PlayerRank = "Manager";
break;
case "3500" :
_global.PlayerRank = "Executive";
break;
case "4000" :
_global.PlayerRank = "Chief Executive";
}
} else {
Failed_mc._visible = true;
}
Frame 284
stop();
RankName_txt._x = 233.7;
switch (_global.PlayerRank) {
case "Bootlicker" :
RankName_txt.text = "Bootlicker";
RankName_txt._y = 125.9;
break;
case "Toadie" :
RankName_txt.text = "Toadie";
RankName_txt._y = 161.6;
break;
case "Sycophant" :
RankName_txt.text = "Sycophant";
RankName_txt._y = 197.3;
break;
case "Acolyte" :
RankName_txt.text = "Acolyte";
RankName_txt._y = 233.1;
break;
case "Team Leader" :
RankName_txt.text = "Team Leader";
RankName_txt._y = 268.8;
break;
case "Manager" :
RankName_txt.text = "Manager";
RankName_txt._y = 304.4;
break;
case "Executive" :
RankName_txt.text = "Executive";
RankName_txt._y = 340.1;
}
Frame 285
prevFrame();
Frame 286
stop();
Frame 292
gotoAndPlay ("GoodEnd01");
Frame 293
HideAllMovies();
HideAllDialogs();
stop();
Frame 294
stop();
Leave_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("BeachNoise");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Leave_btn.enabled = true;
Leave_btn._visible = true;
};
Frame 295
stopAllSounds();
Frame 300
gotoAndPlay ("CEO");
Frame 301
stop();
Frame 302
stopAllSounds();
Frame 307
gotoAndPlay ("CEO");
Frame 308
stop();
Frame 309
stopAllSounds();
Frame 314
gotoAndPlay ("CEO");
Frame 1095
stop();
Restart_mc.onRelease = function () {
gotoAndPlay (2);
};
TheAverage = GendoData.GetScore();
TheHighest = GendoData.GetScore();
TheAverage = TheAverage + MisatoData.GetScore();
if (MisatoData.GetScore() > TheHighest) {
TheHighest = MisatoData.GetScore();
}
TheAverage = TheAverage + SpikeData.GetScore();
if (SpikeData.GetScore() > TheHighest) {
TheHighest = SpikeData.GetScore();
}
TheAverage = TheAverage + ReiData.GetScore();
if (ReiData.GetScore() > TheHighest) {
TheHighest = ReiData.GetScore();
}
TheAverage = TheAverage + InuyashaData.GetScore();
if (InuyashaData.GetScore() > TheHighest) {
TheHighest = InuyashaData.GetScore();
}
TheAverage = TheAverage + SangoData.GetScore();
if (SangoData.GetScore() > TheHighest) {
TheHighest = SangoData.GetScore();
}
TheAverage = TheAverage + LinaData.GetScore();
if (LinaData.GetScore() > TheHighest) {
TheHighest = LinaData.GetScore();
}
TheAverage = Math.round(TheAverage / 7);
TheRankValue = 0;
switch (_global.PlayerRank) {
case "Peon" :
TheRankValue = 100;
break;
case "Bootlicker" :
TheRankValue = 500;
break;
case "Toadie" :
TheRankValue = 1000;
break;
case "Sycophant" :
TheRankValue = 1500;
break;
case "Acolyte" :
TheRankValue = 2000;
break;
case "Team Leader" :
TheRankValue = 2500;
break;
case "Manager" :
TheRankValue = 3000;
break;
case "Executive" :
TheRankValue = 3500;
break;
case "Chief Executive" :
TheRankValue = 4000;
}
RankScore.text = TheRankValue;
if (_global.GameOver == true) {
AveScore.text = 0;
} else {
AveScore.text = TheAverage;
}
HighScore.text = TheHighest;
if (_global.GameOver == true) {
CashScore.text = 0;
} else {
CashScore.text = _global.CurrentCash;
}
if (_global.GameOver == true) {
DaysScore.text = 0;
} else {
DaysScore.text = 50 - _global.CurrentDay;
}
SecretsScore.text = _global.SecretsFound;
XPScore.text = PlayerOne.GetXP();
INTScore.text = PlayerOne.GetINT() * 2;
STRScore.text = PlayerOne.GetSTR() * 2;
CHAScore.text = PlayerOne.GetCHA() * 2;
LUKScore.text = PlayerOne.GetLUK() * 2;
FinalResult_txt.text = (((((((((Number(LUKScore.text) + Number(CHAScore.text)) + Number(STRScore.text)) + Number(INTScore.text)) * Number(SecretsScore.text)) + Number(XPScore.text)) + Number(CashScore.text)) + (Number(DaysScore.text) * 300)) + Number(RankScore.text)) + Number(AveScore.text)) + Number(HighScore.text);
Symbol 32 Button
on (release) {
_root.play();
}
Symbol 33 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
HowMuch_txt.text = Math.round(PercentLoaded) + "%";
} else {
gotoAndStop ("loaded");
}
Symbol 33 MovieClip Frame 2
gotoAndPlay (1);
Symbol 2334 MovieClip [__Packages.ItemData] Frame 0
class ItemData
{
var ItemName, ItemAmount, ItemCost, IsUseable, INTBoost, STRBoost, CHABoost, LUKBoost;
function ItemData (cName, cAmount, cCost, cUseable, cINT, cSTR, cCHA, cLUK) {
ItemName = cName;
ItemAmount = cAmount;
ItemCost = cCost;
IsUseable = cUseable;
INTBoost = cINT;
STRBoost = cSTR;
CHABoost = cCHA;
LUKBoost = cLUK;
}
function GetItemName() {
return(ItemName);
}
function GetItemAmount() {
return(ItemAmount);
}
function GetItemCost() {
return(ItemCost);
}
function GetIsUseable() {
return(IsUseable);
}
function GetINT() {
return(INTBoost);
}
function GetSTR() {
return(STRBoost);
}
function GetCHA() {
return(CHABoost);
}
function GetLUK() {
return(LUKBoost);
}
function UpdateItemAmount(uAmount) {
ItemAmount = uAmount;
}
}
Symbol 2335 MovieClip [__Packages.Person] Frame 0
class Person
{
var Name, Job, BType, Score, Previous;
function Person (cName, cJob, cBT, cScore) {
Name = cName;
Job = cJob;
BType = cBT;
Score = cScore;
Previous = 0;
}
function GetName() {
return(Name);
}
function GetJob() {
return(Job);
}
function GetBType() {
return(BType);
}
function GetScore() {
return(Score);
}
function GetPrevious() {
return(Previous);
}
function UpdateScore(uScore) {
Score = uScore;
if (Score < 0) {
Score = 0;
}
}
function UpdatePrevious() {
Previous = Score;
}
}
Symbol 2336 MovieClip [__Packages.Player] Frame 0
class Player
{
var Name, XP, HP, HPMax, INT, STR, CHA, LUK;
function Player (cName, cXP, cHP, cHPMax, cINT, cSTR, cCHA, cLUK) {
Name = cName;
XP = cXP;
HP = cHP;
HPMax = cHPMax;
INT = cINT;
STR = cSTR;
CHA = cCHA;
LUK = cLUK;
}
function GetName() {
return(Name);
}
function GetHP() {
return(HP);
}
function GetHPMax() {
return(HPMax);
}
function GetXP() {
return(XP);
}
function GetINT() {
return(INT);
}
function GetSTR() {
return(STR);
}
function GetCHA() {
return(CHA);
}
function GetLUK() {
return(LUK);
}
function UpdateXP(uXP) {
XP = uXP;
}
function UpdateHP(uHP) {
HP = uHP;
}
function UpdateHPMax(uHPMax) {
HPMax = uHPMax;
}
function UpdateINT(uINT) {
INT = uINT;
}
function UpdateSTR(uSTR) {
STR = uSTR;
}
function UpdateCHA(uCHA) {
CHA = uCHA;
}
function UpdateLUK(uLUK) {
LUK = uLUK;
}
}
Symbol 86 MovieClip Frame 351
stop();
Symbol 93 Button
on (release) {
gotoAndPlay (505);
}
Symbol 106 MovieClip Frame 1
_root.stop();
Symbol 106 MovieClip Frame 505
_root.play();
this.stop();
Symbol 112 Button
on (release) {
play();
}
Symbol 121 Button
on (release) {
if ((PlayerName_txt.text == "Someone") || (PlayerName_txt.text == "")) {
PlayerName_txt.text = "John Smith";
}
var PlayerOne = new Player(PlayerName_txt.text, 0, Number(HPMax_txt.text), Number(HPMax_txt.text), Number(Int_txt.text), Number(Str_txt.text), Number(Cha_txt.text), Number(Luk_txt.text));
_global.CurrentCash = Cash_txt.text;
stopAllSounds();
if (PlayerName_txt.text == "daDDycash") {
_global.CurrentCash = Number(_global.CurrentCash) + 20000;
}
if (PlayerName_txt.text == "Ubermeister") {
PlayerOne.UpdateHPMax(300);
PlayerOne.UpdateHP(300);
}
if (PlayerName_txt.text == "kissmequick") {
GendoData.UpdateScore(5000);
GendoData.UpdatePrevious;
}
if (PlayerName_txt.text == "pinK floyD") {
gotoAndPlay ("CEO");
} else {
gotoAndPlay (7);
}
}
Symbol 129 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(Luk_txt.text) > 0)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 1;
Luk_txt.text = Number(Luk_txt.text) - 1;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 133 Button
on (release) {
if ((PointsLeft_txt.text > 0) && (Number(Luk_txt.text) < 15)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 1;
Luk_txt.text = Number(Luk_txt.text) + 1;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 136 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(Cha_txt.text) > 0)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 1;
Cha_txt.text = Number(Cha_txt.text) - 1;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 137 Button
on (release) {
if ((PointsLeft_txt.text > 0) && (Number(Cha_txt.text) < 15)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 1;
Cha_txt.text = Number(Cha_txt.text) + 1;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 140 Button
on (release) {
if ((PointsLeft_txt.text > 0) && (Number(Str_txt.text) < 15)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 1;
Str_txt.text = Number(Str_txt.text) + 1;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 141 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(Str_txt.text) > 0)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 1;
Str_txt.text = Number(Str_txt.text) - 1;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 144 Button
on (release) {
if ((PointsLeft_txt.text > 0) && (Number(Int_txt.text) < 15)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 1;
Int_txt.text = Number(Int_txt.text) + 1;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 145 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(Int_txt.text) > 0)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 1;
Int_txt.text = Number(Int_txt.text) - 1;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 148 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(HPMax_txt.text) > 100)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 5;
HPMax_txt.text = Number(HPMax_txt.text) - 1;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 149 Button
on (release) {
if (PointsLeft_txt.text > 4) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 5;
HPMax_txt.text = Number(HPMax_txt.text) + 1;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 152 Button
on (release) {
if ((PointsLeft_txt.text < 150) && (Number(Cash_txt.text) > 20)) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) + 10;
Cash_txt.text = Number(Cash_txt.text) - 10;
}
if (Number(PointsLeft_txt.text) != 0) {
AcceptPerson_btn._visible = false;
}
}
Symbol 153 Button
on (release) {
if (PointsLeft_txt.text > 9) {
PointsLeft_txt.text = Number(PointsLeft_txt.text) - 10;
Cash_txt.text = Number(Cash_txt.text) + 10;
}
if (Number(PointsLeft_txt.text) == 0) {
AcceptPerson_btn._visible = true;
}
}
Symbol 167 Button
on (release) {
this._visible = false;
_parent.HideAllMovies();
_parent.EnableAllButtons();
_global.CurrentCash = Number(_global.CurrentCash) + 231;
gotoAndStop (1);
}
Symbol 172 Button
on (release) {
this._visible = false;
_parent.EnableAllButtons();
gotoAndStop (1);
}
Symbol 178 Button
on (release) {
stopAllSounds();
this._visible = false;
_parent.EnableAllButtons();
_parent.gotoAndStop("Floor20");
UpdateTime(1);
gotoAndStop (1);
}
Symbol 181 Button
on (release) {
stopAllSounds();
this._visible = false;
_parent.EnableAllButtons();
_parent.gotoAndStop("Floor5");
UpdateTime(1);
gotoAndStop (1);
}
Symbol 184 Button
on (release) {
stopAllSounds();
this._visible = false;
_parent.EnableAllButtons();
_parent.gotoAndStop("Garage_1");
UpdateTime(2);
gotoAndStop (1);
}
Symbol 187 Button
on (release) {
stopAllSounds();
this._visible = false;
_parent.EnableAllButtons();
_parent.gotoAndStop("Garage_2");
UpdateTime(2);
gotoAndStop (1);
}
Symbol 190 Button
on (release) {
this._visible = false;
_parent.EnableAllButtons();
_parent.gotoAndStop("Basement");
UpdateTime(3);
gotoAndStop (1);
}
Symbol 192 Button
on (release) {
if ((_global.SafeCrackAttempt + 6) <= _global.CurrentDay) {
this._visible = false;
_global.SafeCrackAttempt = _global.CurrentDay;
gotoAndStop (1);
_parent.GameListing_mc._visible = true;
_parent.GameListing_mc.gotoAndPlay("SafeBreaker");
} else {
gotoAndPlay ("WaitLonger");
}
}
Symbol 193 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 198 Button
on (release) {
this._visible = false;
_global.CurrentDay = _global.CurrentDay + 1;
_global.CurrentHour = _parent.RandomRange(8, 10);
_global.CurrentMinute = _parent.RandomRange(0, 50);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHPMax());
_parent.EnableAllButtons();
_parent.Steps_btn.enabled = true;
_parent.Elev_btn.enabled = true;
_parent.Gym_btn.enabled = true;
_parent.Shop_btn.enabled = true;
_parent.Gift_btn.enabled = true;
_parent.Spa_btn.enabled = true;
_parent.Patio_btn.enabled = true;
_parent.Home_btn.enabled = true;
gotoAndStop (1);
_parent.gotoAndPlay("Next_Day");
}
Symbol 199 Button
on (release) {
this._visible = false;
_parent.EnableAllButtons();
_parent.Steps_btn.enabled = true;
_parent.Elev_btn.enabled = true;
_parent.Gym_btn.enabled = true;
_parent.Shop_btn.enabled = true;
_parent.Gift_btn.enabled = true;
_parent.Spa_btn.enabled = true;
_parent.Patio_btn.enabled = true;
_parent.Home_btn.enabled = true;
gotoAndStop (1);
}
Symbol 202 Button
on (release) {
gotoAndPlay ("A_Misato");
}
Symbol 212 Button
on (release) {
gotoAndPlay ("A_Spike");
}
Symbol 222 Button
on (release) {
gotoAndPlay ("A_Rei");
}
Symbol 232 Button
on (release) {
gotoAndPlay ("A_Inuyasha");
}
Symbol 242 Button
on (release) {
gotoAndPlay ("A_Sango");
}
Symbol 252 Button
on (release) {
gotoAndPlay ("A_Lina");
}
Symbol 262 Button
on (release) {
gotoAndPlay ("Options");
}
Symbol 272 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 280 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 283 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 290 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.ElevBackButton_btn._visible = true;
_parent.EnableAllButtons();
}
Symbol 293 Button
on (release) {
nextFrame();
}
Symbol 295 Button
on (release) {
this._visible = false;
_parent._parent.ElevBackButton_btn._visible = true;
_parent._parent.EnableAllButtons();
_parent.gotoAndStop(1);
}
Symbol 296 Button
on (release) {
_root._global.ItemBriefcase[3].UpdateItemAmount(_root._global.ItemBriefcase[3].GetItemAmount() - 10);
_parent.play();
}
Symbol 310 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.GameListing_mc._visible = true;
_parent.GameListing_mc.gotoAndPlay("TicTacToe");
}
Symbol 311 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 317 Button
on (release) {
if ((_global.CurrentCash >= 700) && (_global.ItemBriefcase[10].GetItemAmount() < 99)) {
_global.CurrentCash = _global.CurrentCash - 700;
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() + 1);
this._visible = false;
this.gotoAndStop(1);
_parent.ElevBackButton_btn._visible = true;
_parent.EnableAllButtons();
} else if (_global.CurrentCash >= 700) {
this.gotoAndPlay(this._currentframe + 2);
} else {
this.nextFrame();
}
}
Symbol 318 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.ElevBackButton_btn._visible = true;
_parent.EnableAllButtons();
}
Symbol 326 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableAllButtons();
_parent.ElevBackButton_btn._visible = true;
_parent.TheStone2_btn._visible = false;
}
Symbol 328 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.gotoAndPlay("TakeTest");
}
Symbol 331 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableAllButtons();
_parent.gotoAndPlay("Head_Boss");
}
Symbol 332 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.AbortIcon.enabled = true;
_parent.InuyashaPick.enabled = true;
_parent.SpikePick.enabled = true;
_parent.MisatoPick.enabled = true;
_parent.ReiPick.enabled = true;
_parent.SangoPick.enabled = true;
_parent.LinaPick.enabled = true;
}
Symbol 336 Button
on (release) {
if (_global.CurrentCash < 100) {
this.nextFrame();
} else {
this._visible = false;
gotoAndStop (1);
_global.CurrentCash = _global.CurrentCash - 100;
_parent.GameListing_mc._visible = true;
_parent.GameListing_mc.gotoAndPlay("AwardGame");
}
}
Symbol 340 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableAllButtons();
}
Symbol 341 MovieClip Frame 1
stop();
Symbol 341 MovieClip Frame 2
stop();
_parent.Edward1_mc._visible = true;
Symbol 341 MovieClip Frame 3
stop();
Symbol 341 MovieClip Frame 4
stop();
UpdateTime(2);
Symbol 341 MovieClip Frame 5
stop();
Symbol 341 MovieClip Frame 7
play();
Symbol 341 MovieClip Frame 16
play();
if ((_parent.GendoData.GetScore() > _parent.GendoData.GetPrevious()) && (_parent.MisatoData.GetScore() > 200)) {
Offset = _parent.GendoData.GetScore() - _parent.GendoData.GetPrevious();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.MisatoData.GetScore() > _parent.MisatoData.GetPrevious()) && (_parent.ReiData.GetScore() > 200)) {
Offset = _parent.MisatoData.GetScore() - _parent.MisatoData.GetPrevious();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.SpikeData.GetScore() > _parent.SpikeData.GetPrevious()) && (_parent.ReiData.GetScore() > 200)) {
Offset = _parent.SpikeData.GetScore() - _parent.SpikeData.GetPrevious();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.ReiData.GetScore() > _parent.ReiData.GetPrevious()) && (_parent.MisatoData.GetScore() > 200)) {
Offset = _parent.ReiData.GetScore() - _parent.ReiData.GetPrevious();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.ReiData.GetScore() > _parent.ReiData.GetPrevious()) && (_parent.SpikeData.GetScore() > 200)) {
Offset = _parent.ReiData.GetScore() - _parent.ReiData.GetPrevious();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.SangoData.GetScore() > _parent.SangoData.GetPrevious()) && (_parent.LinaData.GetScore() > 200)) {
Offset = _parent.SangoData.GetScore() - _parent.SangoData.GetPrevious();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.LinaData.GetScore() > _parent.LinaData.GetPrevious()) && (_parent.SangoData.GetScore() > 200)) {
Offset = _parent.LinaData.GetScore() - _parent.LinaData.GetPrevious();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - Math.round(Offset / 2));
}
if ((_parent.GendoData.GetScore() >= 300) && (_parent.GendoData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.GendoData.GetScore() >= 800) && (_parent.GendoData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.GendoData.GetScore() >= 1700) && (_parent.GendoData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.GendoData.GetScore() >= 3000) && (_parent.GendoData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.GendoData.GetScore() < _parent.GendoData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Misato");
}
Symbol 341 MovieClip Frame 17
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 18
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 19
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 20
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 21
stop();
PointChange = _parent.GendoData.GetScore() - _parent.GendoData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.GendoData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 22
play();
if ((_parent.MisatoData.GetScore() >= 300) && (_parent.MisatoData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.MisatoData.GetScore() >= 800) && (_parent.MisatoData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.MisatoData.GetScore() >= 1700) && (_parent.MisatoData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.MisatoData.GetScore() >= 3000) && (_parent.MisatoData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.MisatoData.GetScore() < _parent.MisatoData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Spike");
}
Symbol 341 MovieClip Frame 23
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 24
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 25
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 26
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 27
stop();
PointChange = _parent.MisatoData.GetScore() - _parent.MisatoData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.MisatoData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 28
play();
if ((_parent.SpikeData.GetScore() >= 300) && (_parent.SpikeData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.SpikeData.GetScore() >= 800) && (_parent.SpikeData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.SpikeData.GetScore() >= 1700) && (_parent.SpikeData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.SpikeData.GetScore() >= 3000) && (_parent.SpikeData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.SpikeData.GetScore() < _parent.SpikeData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Rei");
}
Symbol 341 MovieClip Frame 29
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 30
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 31
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 32
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 33
stop();
PointChange = _parent.SpikeData.GetScore() - _parent.SpikeData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.SpikeData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 34
stop();
if ((_parent.ReiData.GetScore() >= 300) && (_parent.ReiData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.ReiData.GetScore() >= 800) && (_parent.ReiData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.ReiData.GetScore() >= 1700) && (_parent.ReiData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.ReiData.GetScore() >= 3000) && (_parent.ReiData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.ReiData.GetScore() < _parent.ReiData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Inuyasha");
}
Symbol 341 MovieClip Frame 35
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 36
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 37
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 38
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 39
stop();
PointChange = _parent.ReiData.GetScore() - _parent.ReiData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.ReiData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 40
play();
if ((_parent.InuyashaData.GetScore() >= 300) && (_parent.InuyashaData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.InuyashaData.GetScore() >= 800) && (_parent.InuyashaData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.InuyashaData.GetScore() >= 1700) && (_parent.InuyashaData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.InuyashaData.GetScore() >= 3000) && (_parent.InuyashaData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.InuyashaData.GetScore() < _parent.InuyashaData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Sango");
}
Symbol 341 MovieClip Frame 41
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 42
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 43
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 44
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 45
stop();
PointChange = _parent.InuyashaData.GetScore() - _parent.InuyashaData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.InuyashaData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 46
play();
if ((_parent.SangoData.GetScore() >= 300) && (_parent.SangoData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.SangoData.GetScore() >= 800) && (_parent.SangoData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.SangoData.GetScore() >= 1700) && (_parent.SangoData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.SangoData.GetScore() >= 3000) && (_parent.SangoData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.SangoData.GetScore() < _parent.SangoData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("A_Lina");
}
Symbol 341 MovieClip Frame 47
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 48
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 49
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 50
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 51
stop();
PointChange = _parent.SangoData.GetScore() - _parent.SangoData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.SangoData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 52
play();
if ((_parent.LinaData.GetScore() >= 300) && (_parent.LinaData.GetPrevious() < 300)) {
this._visible = true;
gotoAndPlay(this._currentframe + 1);
} else if ((_parent.LinaData.GetScore() >= 800) && (_parent.LinaData.GetPrevious() < 800)) {
this._visible = true;
gotoAndPlay(this._currentframe + 2);
} else if ((_parent.LinaData.GetScore() >= 1700) && (_parent.LinaData.GetPrevious() < 1700)) {
this._visible = true;
gotoAndPlay(this._currentframe + 3);
} else if ((_parent.LinaData.GetScore() >= 3000) && (_parent.LinaData.GetPrevious() < 3000)) {
this._visible = true;
gotoAndPlay(this._currentframe + 4);
} else if (_parent.LinaData.GetScore() < _parent.LinaData.GetPrevious()) {
this._visible = true;
gotoAndPlay(this._currentframe + 5);
} else {
gotoAndPlay ("Options");
}
Symbol 341 MovieClip Frame 53
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 54
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 55
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 56
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 57
stop();
PointChange = _parent.LinaData.GetScore() - _parent.LinaData.GetPrevious();
A_Change_txt.text = "Affection " + PointChange;
_parent.LinaData.UpdatePrevious();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Nofriend");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 58
stop();
_parent.GendoData.UpdatePrevious();
_parent.MisatoData.UpdatePrevious();
_parent.SpikeData.UpdatePrevious();
_parent.ReiData.UpdatePrevious();
_parent.InuyashaData.UpdatePrevious();
_parent.SangoData.UpdatePrevious();
_parent.LinaData.UpdatePrevious();
if (_parent.PlayerOne.GetXP() >= 6000) {
if (_global.GotTrainer == false) {
this._visible = true;
_global.GotTrainer = true;
gotoAndPlay(this._currentframe + 1);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else if (_parent.PlayerOne.GetXP() >= 5000) {
if (_global.GotJedi == false) {
this._visible = true;
_global.GotJedi = true;
gotoAndPlay(this._currentframe + 2);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else if (_parent.PlayerOne.GetXP() >= 4000) {
if (_global.GotKumon == false) {
this._visible = true;
_global.GotKumon = true;
gotoAndPlay(this._currentframe + 3);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else if (_parent.PlayerOne.GetXP() >= 3000) {
if (_global.GotMassage == false) {
this._visible = true;
_global.GotMassage = true;
gotoAndPlay(this._currentframe + 4);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else if (_parent.PlayerOne.GetXP() >= 2000) {
if (_global.GotStockMarket == false) {
this._visible = true;
_global.GotStockMarket = true;
gotoAndPlay(this._currentframe + 5);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else if (_parent.PlayerOne.GetXP() >= 500) {
if (d) {
this._visible = true;
gotoAndPlay(this._currentframe + 6);
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
} else {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 341 MovieClip Frame 59
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 60
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 61
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 62
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 63
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 64
stop();
Confirm_btn._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("hallelujah");
ResultSound.start();
ResultSound.onSoundComplete = function () {
Confirm_btn._visible = true;
};
Symbol 341 MovieClip Frame 66
stop();
Symbol 341 MovieClip Frame 67
stop();
Symbol 341 MovieClip Frame 68
stop();
Symbol 341 MovieClip Frame 69
stop();
Symbol 341 MovieClip Frame 70
stop();
Symbol 341 MovieClip Frame 71
stop();
Symbol 341 MovieClip Frame 73
if (_parent._global.ItemBriefcase[3].GetItemAmount() < 10) {
gotoAndPlay(this._currentframe + 1);
} else {
gotoAndPlay(this._currentframe + 2);
}
Symbol 341 MovieClip Frame 74
stop();
Symbol 341 MovieClip Frame 75
stop();
Symbol 341 MovieClip Frame 76
stop();
ForEin_mc._visible = false;
ResultSound = new Sound();
ResultSound.attachSound("Updawg");
ResultSound.start();
ResultSound.onSoundComplete = function () {
ForEin_mc._visible = true;
};
Symbol 341 MovieClip Frame 77
stop();
EinCode_txt.text = _parent._global.SafeCode;
Symbol 341 MovieClip Frame 79
stop();
Symbol 341 MovieClip Frame 81
play();
Symbol 341 MovieClip Frame 130
stop();
Symbol 341 MovieClip Frame 131
stop();
if (_global.GotPocketwatch == false) {
gotoAndPlay(this._currentframe + 2);
} else {
nextFrame();
}
Symbol 341 MovieClip Frame 132
stop();
Symbol 341 MovieClip Frame 133
stop();
Symbol 341 MovieClip Frame 134
stop();
Symbol 341 MovieClip Frame 136
stop();
Symbol 341 MovieClip Frame 137
stop();
Symbol 341 MovieClip Frame 138
stop();
Symbol 341 MovieClip Frame 139
stop();
Symbol 341 MovieClip Frame 140
stop();
Symbol 341 MovieClip Frame 142
stop();
Symbol 341 MovieClip Frame 143
stop();
Symbol 341 MovieClip Frame 144
stop();
Symbol 341 MovieClip Frame 146
stop();
Symbol 341 MovieClip Frame 147
stop();
Symbol 341 MovieClip Frame 148
stop();
Symbol 344 Button
on (release) {
_parent.HideAllMovies();
_parent.EnableAllButtons();
this._visible = false;
}
Symbol 347 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.ReiData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.ReiData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.ReiData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.ReiData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 352 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.ReiData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.ReiData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.ReiData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 355 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 358 MovieClip Frame 1
stop();
Symbol 358 MovieClip Frame 14
gotoAndStop (1);
Symbol 362 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 363 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 364 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 365 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 366 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 367 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 368 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 369 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 370 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 371 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 372 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 397 Button
on (release) {
gotoAndPlay (2);
}
Symbol 398 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 401 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 429 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 431 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 433 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 435 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 437 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 439 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 441 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 443 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 445 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 447 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 449 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 450 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 453 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 454 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 457 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() - 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 458 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
nextFrame();
}
Symbol 462 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 465 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 470 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
nextFrame();
}
Symbol 471 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 100);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 475 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 150);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 478 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 170);
nextFrame();
}
Symbol 479 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 482 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 484 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 250);
nextFrame();
}
Symbol 485 Button
on (release) {
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 80);
gotoAndPlay (79);
}
Symbol 490 MovieClip Frame 1
stop();
Symbol 490 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.ReiData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 490 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 490 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 490 MovieClip Frame 9
stop();
Symbol 490 MovieClip Frame 10
stop();
Symbol 490 MovieClip Frame 11
stop();
Symbol 490 MovieClip Frame 12
stop();
Symbol 490 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 490 MovieClip Frame 14
stop();
Symbol 490 MovieClip Frame 15
stop();
Symbol 490 MovieClip Frame 16
stop();
Symbol 490 MovieClip Frame 17
stop();
Symbol 490 MovieClip Frame 18
stop();
Symbol 490 MovieClip Frame 19
stop();
Symbol 490 MovieClip Frame 20
stop();
Symbol 490 MovieClip Frame 26
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 27
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 28
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
Symbol 490 MovieClip Frame 29
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 50);
Symbol 490 MovieClip Frame 30
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 30);
Symbol 490 MovieClip Frame 31
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 32
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 33
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 34
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 35
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 36
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 50);
Symbol 490 MovieClip Frame 37
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 70);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 70);
Symbol 490 MovieClip Frame 38
stop();
_parent.ReiData.UpdatePrevious();
_parent.ReiData.UpdateScore(_parent.ReiData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 490 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 490 MovieClip Frame 65
stop();
Symbol 490 MovieClip Frame 66
stop();
Symbol 490 MovieClip Frame 67
stop();
Symbol 490 MovieClip Frame 68
stop();
Symbol 490 MovieClip Frame 69
stop();
Symbol 490 MovieClip Frame 70
stop();
Symbol 490 MovieClip Frame 71
stop();
Symbol 490 MovieClip Frame 72
stop();
Symbol 490 MovieClip Frame 73
stop();
Symbol 490 MovieClip Frame 74
stop();
Symbol 490 MovieClip Frame 75
stop();
Symbol 490 MovieClip Frame 76
stop();
Symbol 490 MovieClip Frame 77
stop();
Symbol 490 MovieClip Frame 78
stop();
Symbol 490 MovieClip Frame 79
stop();
Symbol 491 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.GendoData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.GendoData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.GendoData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.GendoData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 492 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.GendoData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 29);
gotoAndPlay(ResponseFrame);
} else if (_parent.GendoData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 33);
gotoAndPlay(ResponseFrame);
} else if (_parent.GendoData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(32, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 493 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 494 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 495 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 496 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 400);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 175);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 497 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 498 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 499 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 500 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 501 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 502 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 503 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 504 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 522 Button
on (release) {
gotoAndPlay (2);
}
Symbol 523 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 525 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 553 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 555 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 557 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 559 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 561 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 563 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 565 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 567 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 569 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 571 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 572 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 573 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 576 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 579 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 10);
nextFrame();
}
Symbol 586 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 80);
nextFrame();
}
Symbol 589 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 20);
nextFrame();
}
Symbol 590 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 10);
nextFrame();
}
Symbol 596 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 100);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 597 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() - 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 600 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 75);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 601 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 604 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
nextFrame();
}
Symbol 605 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 80);
gotoAndPlay ("Overtime");
}
Symbol 610 Button
on (release) {
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 100);
nextFrame();
}
Symbol 614 MovieClip Frame 1
stop();
Symbol 614 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.GendoData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 614 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 614 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 614 MovieClip Frame 9
stop();
Symbol 614 MovieClip Frame 10
stop();
Symbol 614 MovieClip Frame 11
stop();
Symbol 614 MovieClip Frame 12
stop();
Symbol 614 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 614 MovieClip Frame 14
stop();
Symbol 614 MovieClip Frame 15
stop();
Symbol 614 MovieClip Frame 16
stop();
Symbol 614 MovieClip Frame 17
stop();
Symbol 614 MovieClip Frame 18
stop();
Symbol 614 MovieClip Frame 19
stop();
Symbol 614 MovieClip Frame 20
stop();
Symbol 614 MovieClip Frame 26
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 27
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 28
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 29
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 30
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 31
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 32
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 33
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 34
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 35
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 36
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 37
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 38
stop();
_parent.GendoData.UpdatePrevious();
_parent.GendoData.UpdateScore(_parent.GendoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 614 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 614 MovieClip Frame 65
stop();
Symbol 614 MovieClip Frame 66
stop();
Symbol 614 MovieClip Frame 67
stop();
Symbol 614 MovieClip Frame 68
stop();
Symbol 614 MovieClip Frame 69
stop();
Symbol 614 MovieClip Frame 70
stop();
Symbol 614 MovieClip Frame 71
stop();
Symbol 614 MovieClip Frame 72
stop();
Symbol 614 MovieClip Frame 73
stop();
Symbol 614 MovieClip Frame 74
stop();
Symbol 614 MovieClip Frame 75
stop();
Symbol 614 MovieClip Frame 76
stop();
Symbol 614 MovieClip Frame 77
stop();
Symbol 614 MovieClip Frame 78
stop();
Symbol 614 MovieClip Frame 79
stop();
Symbol 614 MovieClip Frame 80
stop();
Symbol 614 MovieClip Frame 81
stop();
Symbol 614 MovieClip Frame 82
stop();
Symbol 615 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.InuyashaData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.InuyashaData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.InuyashaData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.InuyashaData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 616 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.InuyashaData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.InuyashaData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.InuyashaData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 617 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 618 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 619 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 620 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 621 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 622 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 623 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 624 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 625 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 626 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 627 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 628 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 646 Button
on (release) {
gotoAndPlay (2);
}
Symbol 647 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 649 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 677 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 679 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 681 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 683 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 685 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 687 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 689 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 691 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 693 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 695 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 696 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 697 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 700 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 701 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 704 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() - 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 705 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 50);
nextFrame();
}
Symbol 708 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 710 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 60);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 711 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() - 10);
nextFrame();
}
Symbol 717 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 20);
nextFrame();
}
Symbol 721 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 70);
nextFrame();
}
Symbol 722 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
gotoAndPlay ("Retarded");
}
Symbol 727 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 730 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 5);
nextFrame();
}
Symbol 734 Button
on (release) {
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 80);
gotoAndPlay ("Icecream");
}
Symbol 739 MovieClip Frame 1
stop();
Symbol 739 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.InuyashaData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 739 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 739 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 739 MovieClip Frame 9
stop();
Symbol 739 MovieClip Frame 10
stop();
Symbol 739 MovieClip Frame 11
stop();
Symbol 739 MovieClip Frame 12
stop();
Symbol 739 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 739 MovieClip Frame 14
stop();
Symbol 739 MovieClip Frame 15
stop();
Symbol 739 MovieClip Frame 16
stop();
Symbol 739 MovieClip Frame 17
stop();
Symbol 739 MovieClip Frame 18
stop();
Symbol 739 MovieClip Frame 19
stop();
Symbol 739 MovieClip Frame 20
stop();
Symbol 739 MovieClip Frame 26
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 27
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 28
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 29
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 30
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 31
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 32
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 33
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 34
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 35
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 36
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 37
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 38
stop();
_parent.InuyashaData.UpdatePrevious();
_parent.InuyashaData.UpdateScore(_parent.InuyashaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 739 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 739 MovieClip Frame 65
stop();
Symbol 739 MovieClip Frame 66
stop();
Symbol 739 MovieClip Frame 67
stop();
Symbol 739 MovieClip Frame 68
stop();
Symbol 739 MovieClip Frame 69
stop();
Symbol 739 MovieClip Frame 70
stop();
Symbol 739 MovieClip Frame 71
stop();
Symbol 739 MovieClip Frame 72
stop();
Symbol 739 MovieClip Frame 73
stop();
Symbol 739 MovieClip Frame 74
stop();
Symbol 739 MovieClip Frame 75
stop();
Symbol 739 MovieClip Frame 76
stop();
Symbol 739 MovieClip Frame 77
stop();
Symbol 739 MovieClip Frame 78
stop();
Symbol 739 MovieClip Frame 79
stop();
Symbol 739 MovieClip Frame 80
stop();
Symbol 739 MovieClip Frame 81
stop();
Symbol 739 MovieClip Frame 82
stop();
Symbol 740 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.LinaData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.LinaData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.LinaData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.LinaData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 741 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.LinaData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.LinaData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.LinaData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 742 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 743 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 744 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 745 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 746 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 747 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 748 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 749 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 750 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 751 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 752 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 753 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 771 Button
on (release) {
gotoAndPlay (2);
}
Symbol 772 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 774 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 802 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 804 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 806 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 808 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 810 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 812 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 814 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 816 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 818 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 820 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 821 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 822 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 825 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 828 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 50);
nextFrame();
}
Symbol 830 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 832 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() - 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 833 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 40);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 836 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 837 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 100);
nextFrame();
}
Symbol 841 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 70);
nextFrame();
}
Symbol 842 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 848 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 20);
nextFrame();
}
Symbol 849 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 40);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 853 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 856 Button
on (release) {
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 60);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 860 MovieClip Frame 1
stop();
Symbol 860 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.LinaData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 860 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 860 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 860 MovieClip Frame 9
stop();
Symbol 860 MovieClip Frame 10
stop();
Symbol 860 MovieClip Frame 11
stop();
Symbol 860 MovieClip Frame 12
stop();
Symbol 860 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 860 MovieClip Frame 14
stop();
Symbol 860 MovieClip Frame 15
stop();
Symbol 860 MovieClip Frame 16
stop();
Symbol 860 MovieClip Frame 17
stop();
Symbol 860 MovieClip Frame 18
stop();
Symbol 860 MovieClip Frame 19
stop();
Symbol 860 MovieClip Frame 20
stop();
Symbol 860 MovieClip Frame 26
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 27
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 28
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 29
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 30
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 31
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 32
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 33
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 34
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 35
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 36
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 37
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 38
stop();
_parent.LinaData.UpdatePrevious();
_parent.LinaData.UpdateScore(_parent.LinaData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 860 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 860 MovieClip Frame 65
stop();
Symbol 860 MovieClip Frame 66
stop();
Symbol 860 MovieClip Frame 67
stop();
Symbol 860 MovieClip Frame 68
stop();
Symbol 860 MovieClip Frame 69
stop();
Symbol 860 MovieClip Frame 70
stop();
Symbol 860 MovieClip Frame 71
stop();
Symbol 860 MovieClip Frame 72
stop();
Symbol 860 MovieClip Frame 73
stop();
Symbol 860 MovieClip Frame 74
stop();
Symbol 860 MovieClip Frame 75
stop();
Symbol 860 MovieClip Frame 76
stop();
Symbol 860 MovieClip Frame 77
stop();
Symbol 860 MovieClip Frame 78
stop();
Symbol 860 MovieClip Frame 79
stop();
Symbol 861 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.MisatoData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.MisatoData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.MisatoData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.MisatoData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 862 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.MisatoData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.MisatoData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.MisatoData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 863 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 864 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 865 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 866 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 867 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 868 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 869 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 870 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 871 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 872 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 873 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 874 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 892 Button
on (release) {
gotoAndPlay (2);
}
Symbol 893 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 895 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 923 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 925 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 927 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 929 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 931 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 933 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 935 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 937 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 939 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 941 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 942 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 943 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 946 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 949 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 50);
nextFrame();
}
Symbol 953 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 959 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - 10);
nextFrame();
}
Symbol 963 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() - 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 964 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 967 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 970 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 80);
gotoAndPlay ("Twain");
}
Symbol 971 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
nextFrame();
}
Symbol 978 Button
on (release) {
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 50);
gotoAndPlay ("dogs");
}
Symbol 985 MovieClip Frame 1
stop();
Symbol 985 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.MisatoData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 985 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 985 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 985 MovieClip Frame 9
stop();
Symbol 985 MovieClip Frame 10
stop();
Symbol 985 MovieClip Frame 11
stop();
Symbol 985 MovieClip Frame 12
stop();
Symbol 985 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 985 MovieClip Frame 14
stop();
Symbol 985 MovieClip Frame 15
stop();
Symbol 985 MovieClip Frame 16
stop();
Symbol 985 MovieClip Frame 17
stop();
Symbol 985 MovieClip Frame 18
stop();
Symbol 985 MovieClip Frame 19
stop();
Symbol 985 MovieClip Frame 20
stop();
Symbol 985 MovieClip Frame 26
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 27
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 28
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 29
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 30
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 31
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 32
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 33
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 34
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 35
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 36
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 37
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 38
stop();
_parent.MisatoData.UpdatePrevious();
_parent.MisatoData.UpdateScore(_parent.MisatoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 985 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 985 MovieClip Frame 65
stop();
Symbol 985 MovieClip Frame 66
stop();
Symbol 985 MovieClip Frame 67
stop();
Symbol 985 MovieClip Frame 68
stop();
Symbol 985 MovieClip Frame 69
stop();
Symbol 985 MovieClip Frame 70
stop();
Symbol 985 MovieClip Frame 71
stop();
Symbol 985 MovieClip Frame 72
stop();
Symbol 985 MovieClip Frame 73
stop();
Symbol 985 MovieClip Frame 74
stop();
Symbol 985 MovieClip Frame 75
stop();
Symbol 985 MovieClip Frame 76
stop();
Symbol 985 MovieClip Frame 77
stop();
Symbol 985 MovieClip Frame 78
stop();
Symbol 985 MovieClip Frame 79
stop();
Symbol 985 MovieClip Frame 80
stop();
Symbol 985 MovieClip Frame 81
stop();
Symbol 985 MovieClip Frame 82
stop();
Symbol 985 MovieClip Frame 83
stop();
Symbol 986 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.SangoData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.SangoData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.SangoData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.SangoData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 987 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.SangoData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.SangoData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.SangoData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 988 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 989 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 990 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 991 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 992 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 993 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 994 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 995 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 996 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 997 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 998 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 999 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1017 Button
on (release) {
gotoAndPlay (2);
}
Symbol 1018 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1020 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1048 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 1050 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 1052 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 1054 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 1056 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 1058 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 1060 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 1062 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 1064 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 1066 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 1067 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 30);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1068 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1071 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1072 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1075 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 30);
nextFrame();
}
Symbol 1078 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1082 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 70);
nextFrame();
}
Symbol 1086 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1087 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - 10);
nextFrame();
}
Symbol 1091 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 30);
nextFrame();
}
Symbol 1092 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
gotoAndPlay ("Hairstyle");
}
Symbol 1096 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
nextFrame();
}
Symbol 1101 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1102 Button
on (release) {
nextFrame();
}
Symbol 1106 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() - 100);
gotoAndPlay ("Clitoris");
}
Symbol 1113 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 50);
nextFrame();
}
Symbol 1114 Button
on (release) {
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 80);
gotoAndPlay ("Barf");
}
Symbol 1119 MovieClip Frame 1
stop();
Symbol 1119 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.SangoData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 1119 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 1119 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 1119 MovieClip Frame 9
stop();
Symbol 1119 MovieClip Frame 10
stop();
Symbol 1119 MovieClip Frame 11
stop();
Symbol 1119 MovieClip Frame 12
stop();
Symbol 1119 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 1119 MovieClip Frame 14
stop();
Symbol 1119 MovieClip Frame 15
stop();
Symbol 1119 MovieClip Frame 16
stop();
Symbol 1119 MovieClip Frame 17
stop();
Symbol 1119 MovieClip Frame 18
stop();
Symbol 1119 MovieClip Frame 19
stop();
Symbol 1119 MovieClip Frame 20
stop();
Symbol 1119 MovieClip Frame 26
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 27
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 28
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 29
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 30
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 31
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 32
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 33
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 34
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 35
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 36
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 37
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 38
stop();
_parent.SangoData.UpdatePrevious();
_parent.SangoData.UpdateScore(_parent.SangoData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1119 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1119 MovieClip Frame 65
stop();
Symbol 1119 MovieClip Frame 66
stop();
Symbol 1119 MovieClip Frame 67
stop();
Symbol 1119 MovieClip Frame 68
stop();
Symbol 1119 MovieClip Frame 69
stop();
Symbol 1119 MovieClip Frame 70
stop();
Symbol 1119 MovieClip Frame 71
stop();
Symbol 1119 MovieClip Frame 72
stop();
Symbol 1119 MovieClip Frame 73
stop();
Symbol 1119 MovieClip Frame 74
stop();
Symbol 1119 MovieClip Frame 75
stop();
Symbol 1119 MovieClip Frame 76
stop();
Symbol 1119 MovieClip Frame 77
stop();
Symbol 1119 MovieClip Frame 78
stop();
Symbol 1119 MovieClip Frame 79
stop();
Symbol 1119 MovieClip Frame 80
stop();
Symbol 1119 MovieClip Frame 81
stop();
Symbol 1119 MovieClip Frame 82
stop();
Symbol 1119 MovieClip Frame 83
stop();
Symbol 1119 MovieClip Frame 84
stop();
Symbol 1119 MovieClip Frame 85
stop();
Symbol 1119 MovieClip Frame 86
stop();
Symbol 1119 MovieClip Frame 87
stop();
Symbol 1120 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 15) {
_parent.UpdateTime(10);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 15);
if (_parent.SpikeData.GetScore() == 0) {
ResponseFrame = _parent.RandomRange(46, 46);
gotoAndPlay(ResponseFrame);
} else if (_parent.SpikeData.GetScore() < 300) {
ResponseFrame = _parent.RandomRange(47, 55);
gotoAndPlay(ResponseFrame);
} else if (_parent.SpikeData.GetScore() < 1700) {
ResponseFrame = _parent.RandomRange(47, 54);
gotoAndPlay(ResponseFrame);
} else if (_parent.SpikeData.GetScore() < 3000) {
ResponseFrame = _parent.RandomRange(49, 54);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(50, 55);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 1121 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(5);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
if (_parent.SpikeData.GetScore() < 500) {
ResponseFrame = _parent.RandomRange(26, 36);
gotoAndPlay(ResponseFrame);
} else if (_parent.SpikeData.GetScore() < 2200) {
ResponseFrame = _parent.RandomRange(26, 34);
gotoAndPlay(ResponseFrame);
} else if (_parent.SpikeData.GetScore() < 4500) {
ResponseFrame = _parent.RandomRange(28, 36);
gotoAndPlay(ResponseFrame);
} else {
ResponseFrame = _parent.RandomRange(30, 38);
gotoAndPlay(ResponseFrame);
}
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 1122 Button
on (release) {
if (_parent.PlayerOne.GetHP() >= 5) {
_parent.UpdateTime(7);
_parent.PlayerOne.UpdateHP(_parent.PlayerOne.GetHP() - 5);
gotoAndPlay (3);
} else {
this.NoHP_mc._visible = true;
this.NoHP_mc.play();
ResultSound = new Sound();
ResultSound.attachSound("BHUMP2");
ResultSound.start();
}
}
Symbol 1123 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[11].GetItemAmount() > 0) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 30);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(8, 8);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1124 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[8].GetItemAmount() > 0) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1125 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[5].GetItemAmount() > 0) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 200);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 125);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1126 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[2].GetItemAmount() > 0) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(14, 17);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1127 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[10].GetItemAmount() > 0) {
_global.ItemBriefcase[10].UpdateItemAmount(_global.ItemBriefcase[10].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1128 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[4].GetItemAmount() > 0) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1129 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[1].GetItemAmount() > 0) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1130 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[9].GetItemAmount() > 0) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1131 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[6].GetItemAmount() > 0) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 100);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 75);
ResponseFrame = _parent.RandomRange(13, 13);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1132 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[3].GetItemAmount() > 0) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1133 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[0].GetItemAmount() > 0) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(9, 12);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1151 Button
on (release) {
gotoAndPlay (2);
}
Symbol 1152 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
on (release) {
if (ItemBriefcase[7].GetItemAmount() > 0) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() - 1);
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 20);
ResponseFrame = _parent.RandomRange(18, 20);
gotoAndPlay(ResponseFrame);
}
}
Symbol 1154 Button
on (release) {
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1182 Button
on (release) {
gotoAndPlay ("1stAnswer");
}
Symbol 1184 Button
on (release) {
gotoAndPlay ("2ndAnswer");
}
Symbol 1186 Button
on (release) {
gotoAndPlay ("3rdAnswer");
}
Symbol 1188 Button
on (release) {
gotoAndPlay ("4thAnswer");
}
Symbol 1190 Button
on (release) {
gotoAndPlay ("5thAnswer");
}
Symbol 1192 Button
on (release) {
gotoAndPlay ("6thAnswer");
}
Symbol 1194 Button
on (release) {
gotoAndPlay ("7thAnswer");
}
Symbol 1196 Button
on (release) {
gotoAndPlay ("8thAnswer");
}
Symbol 1198 Button
on (release) {
gotoAndPlay ("9thAnswer");
}
Symbol 1200 Button
on (release) {
gotoAndPlay ("10thAnswer");
}
Symbol 1201 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1202 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 80);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1205 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 70);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1206 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1209 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
nextFrame();
}
Symbol 1213 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
nextFrame();
}
Symbol 1214 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1218 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
gotoAndPlay ("Pigs");
}
Symbol 1223 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 10);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1229 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 70);
gotoAndPlay ("Dentist");
}
Symbol 1230 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
nextFrame();
}
Symbol 1235 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 70);
nextFrame();
}
Symbol 1239 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 50);
gotoAndPlay ("Rancid");
}
Symbol 1240 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 80);
nextFrame();
}
Symbol 1244 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
nextFrame();
}
Symbol 1245 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 40);
gotoAndPlay ("Prison");
}
Symbol 1251 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 20);
nextFrame();
}
Symbol 1252 Button
on (release) {
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() - 20);
_parent.HideAllMovies();
this._visible = false;
gotoAndStop (1);
_parent.DialogMisc_mc.gotoAndStop("A_Start");
}
Symbol 1256 MovieClip Frame 1
stop();
Symbol 1256 MovieClip Frame 2
stop();
this.GiftIcon._visible = false;
if (_parent.SpikeData.GetScore() >= 300) {
this.GiftIcon._visible = true;
}
Symbol 1256 MovieClip Frame 3
stop();
ItemInfo_txt.text = "";
Item0Count_txt.text = _global.ItemBriefcase[0].GetItemAmount();
Item1Count_txt.text = _global.ItemBriefcase[1].GetItemAmount();
Item2Count_txt.text = _global.ItemBriefcase[2].GetItemAmount();
Item3Count_txt.text = _global.ItemBriefcase[3].GetItemAmount();
Item4Count_txt.text = _global.ItemBriefcase[4].GetItemAmount();
Item5Count_txt.text = _global.ItemBriefcase[5].GetItemAmount();
Item6Count_txt.text = _global.ItemBriefcase[6].GetItemAmount();
Item7Count_txt.text = _global.ItemBriefcase[7].GetItemAmount();
Item8Count_txt.text = _global.ItemBriefcase[8].GetItemAmount();
Item9Count_txt.text = _global.ItemBriefcase[9].GetItemAmount();
Item10Count_txt.text = _global.ItemBriefcase[10].GetItemAmount();
Item11Count_txt.text = _global.ItemBriefcase[11].GetItemAmount();
Symbol 1256 MovieClip Frame 8
stop();
ResultSound = new Sound();
ResultSound.attachSound("");
ResultSound.start();
Symbol 1256 MovieClip Frame 9
stop();
Symbol 1256 MovieClip Frame 10
stop();
Symbol 1256 MovieClip Frame 11
stop();
Symbol 1256 MovieClip Frame 12
stop();
Symbol 1256 MovieClip Frame 13
stop();
ResultSound = new Sound();
ResultSound.attachSound("harp");
ResultSound.start();
Symbol 1256 MovieClip Frame 14
stop();
Symbol 1256 MovieClip Frame 15
stop();
Symbol 1256 MovieClip Frame 16
stop();
Symbol 1256 MovieClip Frame 17
stop();
Symbol 1256 MovieClip Frame 18
stop();
Symbol 1256 MovieClip Frame 19
stop();
Symbol 1256 MovieClip Frame 20
stop();
Symbol 1256 MovieClip Frame 26
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 27
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 28
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 29
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 30
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 31
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 32
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 33
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 34
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 35
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 36
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 37
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 38
stop();
_parent.SpikeData.UpdatePrevious();
_parent.SpikeData.UpdateScore(_parent.SpikeData.GetScore() + 10);
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 10);
Symbol 1256 MovieClip Frame 46
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 47
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 48
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 49
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 50
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 51
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 52
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 53
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 54
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 55
stop();
_parent.PlayerOne.UpdateXP(_parent.PlayerOne.GetXP() + 100);
Symbol 1256 MovieClip Frame 65
stop();
Symbol 1256 MovieClip Frame 66
stop();
Symbol 1256 MovieClip Frame 67
stop();
Symbol 1256 MovieClip Frame 68
stop();
Symbol 1256 MovieClip Frame 69
stop();
Symbol 1256 MovieClip Frame 70
stop();
Symbol 1256 MovieClip Frame 71
stop();
Symbol 1256 MovieClip Frame 72
stop();
Symbol 1256 MovieClip Frame 73
stop();
Symbol 1256 MovieClip Frame 74
stop();
Symbol 1256 MovieClip Frame 75
stop();
Symbol 1256 MovieClip Frame 76
stop();
Symbol 1256 MovieClip Frame 77
stop();
Symbol 1256 MovieClip Frame 78
stop();
Symbol 1256 MovieClip Frame 79
stop();
Symbol 1256 MovieClip Frame 80
stop();
Symbol 1256 MovieClip Frame 81
stop();
Symbol 1256 MovieClip Frame 82
stop();
Symbol 1256 MovieClip Frame 83
stop();
Symbol 1256 MovieClip Frame 84
stop();
Symbol 1256 MovieClip Frame 85
stop();
Symbol 1256 MovieClip Frame 86
stop();
Symbol 1256 MovieClip Frame 87
stop();
Symbol 1256 MovieClip Frame 88
stop();
Symbol 1261 Button
on (release) {
gotoAndPlay (49);
}
Symbol 1293 MovieClip Frame 1
stop();
Symbol 1296 MovieClip Frame 1
stop();
Symbol 1336 Button
on (release) {
gotoAndStop ("StatusPanel");
}
Symbol 1340 Button
on (release) {
if (_currentframe == 93) {
eval (getInstanceAtDepth(0)).removeMovieClip();
}
gotoAndStop ("InvPanel");
}
Symbol 1343 Button
on (release) {
ResultSound = new Sound();
UpdateTime(2);
if (_global.WhichStep >= 5) {
if (CodesMatch()) {
ResultSound.attachSound("dooropen");
ResultSound.start();
gotoAndPlay ("SafeClear");
} else {
ResultSound.attachSound("doorstuck");
ResultSound.start();
Label1_mc.gotoAndPlay(2);
Label2_mc.gotoAndPlay(1);
Label3_mc.gotoAndPlay(1);
Label4_mc.gotoAndPlay(1);
_global.WhichStep = 1;
UpdateDangerBar();
if (GotBusted()) {
gotoAndPlay ("SafeBusted");
}
}
} else {
ResultSound.attachSound("doorstuck");
ResultSound.start();
UpdateDangerBar();
if (GotBusted()) {
gotoAndPlay ("SafeBusted");
}
}
}
Symbol 1347 Button
on (release) {
_global.WhichStep = _global.WhichStep + 1;
if (WhichStep == 2) {
Label1_mc.gotoAndPlay(3);
Label2_mc.gotoAndPlay(2);
} else if (WhichStep == 3) {
Label2_mc.gotoAndPlay(3);
Label3_mc.gotoAndPlay(2);
} else if (WhichStep == 4) {
Label3_mc.gotoAndPlay(3);
Label4_mc.gotoAndPlay(2);
} else if (WhichStep == 5) {
Label4_mc.gotoAndPlay(3);
}
}
Symbol 1350 Button
on (release) {
ResultSound = new Sound();
if (WhichStep == 1) {
Position1_txt.text = Number(Position1_txt.text) + 1;
if (Position1_txt.text == "10") {
Position1_txt.text = 0;
}
} else if (WhichStep == 2) {
Position2_txt.text = Number(Position2_txt.text) + 1;
if (Position2_txt.text == "10") {
Position2_txt.text = 0;
}
} else if (WhichStep == 3) {
Position3_txt.text = Number(Position3_txt.text) + 1;
if (Position3_txt.text == "10") {
Position3_txt.text = 0;
}
} else if (WhichStep == 4) {
Position4_txt.text = Number(Position4_txt.text) + 1;
if (Position4_txt.text == "10") {
Position4_txt.text = 0;
}
}
SafeDial_btn._rotation = SafeDial_btn._rotation + 36;
ResultSound.attachSound("spindial");
ResultSound.start();
UpdateDangerBar();
if (GotBusted()) {
gotoAndPlay ("SafeBusted");
}
}
Symbol 1353 MovieClip Frame 1
stop();
Symbol 1353 MovieClip Frame 2
stop();
Symbol 1353 MovieClip Frame 3
stop();
Symbol 1361 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 1401 MovieClip Frame 1
stop();
Symbol 1401 MovieClip Frame 2
stop();
Symbol 1401 MovieClip Frame 3
stop();
Symbol 1401 MovieClip Frame 4
stop();
Symbol 1401 MovieClip Frame 5
stop();
Symbol 1401 MovieClip Frame 6
stop();
Symbol 1401 MovieClip Frame 7
stop();
Symbol 1401 MovieClip Frame 8
stop();
Symbol 1401 MovieClip Frame 9
stop();
Symbol 1401 MovieClip Frame 10
stop();
Symbol 1401 MovieClip Frame 11
stop();
Symbol 1401 MovieClip Frame 12
stop();
Symbol 1401 MovieClip Frame 13
stop();
Symbol 1401 MovieClip Frame 14
stop();
Symbol 1401 MovieClip Frame 15
stop();
Symbol 1401 MovieClip Frame 16
stop();
Symbol 1401 MovieClip Frame 17
stop();
Symbol 1401 MovieClip Frame 18
stop();
Symbol 1401 MovieClip Frame 19
stop();
Symbol 1401 MovieClip Frame 20
stop();
Symbol 1401 MovieClip Frame 21
stop();
Symbol 1401 MovieClip Frame 22
stop();
Symbol 1401 MovieClip Frame 23
stop();
Symbol 1401 MovieClip Frame 24
stop();
Symbol 1401 MovieClip Frame 25
stop();
Symbol 1401 MovieClip Frame 26
stop();
Symbol 1401 MovieClip Frame 27
stop();
Symbol 1401 MovieClip Frame 28
stop();
Symbol 1401 MovieClip Frame 29
stop();
Symbol 1401 MovieClip Frame 30
stop();
Symbol 1401 MovieClip Frame 31
stop();
Symbol 1401 MovieClip Frame 32
stop();
Symbol 1401 MovieClip Frame 33
stop();
Symbol 1401 MovieClip Frame 34
stop();
Symbol 1401 MovieClip Frame 35
stop();
Symbol 1401 MovieClip Frame 36
stop();
Symbol 1401 MovieClip Frame 37
stop();
Symbol 1404 Button
on (release) {
play();
}
Symbol 1405 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
_parent.gotoAndPlay("BadEnd");
}
Symbol 1416 MovieClip Frame 1
stop();
Symbol 1416 MovieClip Frame 2
stop();
Symbol 1416 MovieClip Frame 3
stop();
Symbol 1416 MovieClip Frame 4
stop();
Symbol 1416 MovieClip Frame 5
stop();
Symbol 1421 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableAllButtons();
}
Symbol 1422 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableBoxes();
_parent.ResetBoard();
}
Symbol 1426 Button
on (release) {
this._visible = false;
this.gotoAndStop(1);
_parent.ExitGame();
}
Symbol 1431 MovieClip Frame 1
stop();
Symbol 1431 MovieClip Frame 2
stop();
Symbol 1431 MovieClip Frame 3
stop();
Symbol 1431 MovieClip Frame 4
stop();
Symbol 1431 MovieClip Frame 5
stop();
_global.GotPocketwatch = true;
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() + 1);
Symbol 1431 MovieClip Frame 6
stop();
if (_global.ItemBriefcase[3].GetItemAmount() < 99) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() + 1);
}
Symbol 1487 MovieClip Frame 1
stop();
Symbol 1487 MovieClip Frame 2
stop();
Symbol 1487 MovieClip Frame 3
stop();
Symbol 1487 MovieClip Frame 4
stop();
Symbol 1487 MovieClip Frame 5
stop();
Symbol 1487 MovieClip Frame 6
stop();
Symbol 1487 MovieClip Frame 7
stop();
Symbol 1487 MovieClip Frame 8
stop();
Symbol 1487 MovieClip Frame 9
stop();
Symbol 1487 MovieClip Frame 10
stop();
Symbol 1487 MovieClip Frame 11
stop();
Symbol 1487 MovieClip Frame 12
stop();
Symbol 1487 MovieClip Frame 13
stop();
Symbol 1487 MovieClip Frame 14
stop();
Symbol 1487 MovieClip Frame 15
stop();
Symbol 1487 MovieClip Frame 16
stop();
Symbol 1487 MovieClip Frame 17
stop();
Symbol 1487 MovieClip Frame 18
stop();
Symbol 1487 MovieClip Frame 19
stop();
Symbol 1487 MovieClip Frame 20
stop();
Symbol 1487 MovieClip Frame 21
stop();
Symbol 1487 MovieClip Frame 22
stop();
Symbol 1487 MovieClip Frame 23
stop();
Symbol 1487 MovieClip Frame 24
stop();
Symbol 1487 MovieClip Frame 25
stop();
Symbol 1487 MovieClip Frame 26
stop();
Symbol 1487 MovieClip Frame 27
stop();
Symbol 1487 MovieClip Frame 28
stop();
Symbol 1487 MovieClip Frame 29
stop();
Symbol 1487 MovieClip Frame 30
stop();
Symbol 1487 MovieClip Frame 31
stop();
Symbol 1487 MovieClip Frame 32
stop();
Symbol 1487 MovieClip Frame 33
stop();
Symbol 1487 MovieClip Frame 34
stop();
Symbol 1487 MovieClip Frame 35
stop();
Symbol 1487 MovieClip Frame 36
stop();
Symbol 1487 MovieClip Frame 37
stop();
Symbol 1487 MovieClip Frame 38
stop();
Symbol 1487 MovieClip Frame 39
stop();
Symbol 1487 MovieClip Frame 40
stop();
Symbol 1487 MovieClip Frame 41
stop();
Symbol 1487 MovieClip Frame 42
stop();
Symbol 1487 MovieClip Frame 43
stop();
Symbol 1487 MovieClip Frame 44
stop();
Symbol 1487 MovieClip Frame 45
stop();
Symbol 1487 MovieClip Frame 46
stop();
Symbol 1487 MovieClip Frame 47
stop();
Symbol 1487 MovieClip Frame 48
stop();
Symbol 1487 MovieClip Frame 49
stop();
Symbol 1487 MovieClip Frame 50
stop();
Symbol 1487 MovieClip Frame 51
stop();
Symbol 1487 MovieClip Frame 52
stop();
Symbol 1487 MovieClip Frame 53
stop();
Symbol 1487 MovieClip Frame 54
stop();
Symbol 1490 Button
on (release) {
_parent.UpdateTime(5);
CurrentPool = CurrentPool - 10;
Winnings_txt.text = "$" + CurrentPool;
Card1.gotoAndStop(PickRandomCard(1));
Card2.gotoAndStop(2);
Card3.gotoAndStop(2);
Card4.gotoAndStop(2);
Card5.gotoAndStop(2);
Higher_btn.enabled = true;
Lower_btn.enabled = true;
GiveUp_btn._visible = true;
Deal_btn._visible = false;
}
Symbol 1493 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
_global.CurrentCash = _global.CurrentCash + CurrentPool;
}
Symbol 1495 Button
on (release) {
if (Card2._currentframe == 2) {
Card2.gotoAndPlay(PickRandomCard(2));
if (Card2._currentframe > Card1._currentframe) {
LostMatch();
}
} else if (Card3._currentframe == 2) {
Card3.gotoAndPlay(PickRandomCard(3));
if (Card3._currentframe > Card2._currentframe) {
LostMatch();
}
} else if (Card4._currentframe == 2) {
Card4.gotoAndPlay(PickRandomCard(4));
if (Card4._currentframe > Card3._currentframe) {
LostMatch();
}
} else if (Card5._currentframe == 2) {
Card5.gotoAndPlay(PickRandomCard(5));
if (Card5._currentframe > Card4._currentframe) {
LostMatch();
} else {
WonMatch();
}
}
}
Symbol 1497 Button
on (release) {
if (Card2._currentframe == 2) {
Card2.gotoAndPlay(PickRandomCard(2));
if (Card2._currentframe < Card1._currentframe) {
LostMatch();
}
} else if (Card3._currentframe == 2) {
Card3.gotoAndPlay(PickRandomCard(3));
if (Card3._currentframe < Card2._currentframe) {
LostMatch();
}
} else if (Card4._currentframe == 2) {
Card4.gotoAndPlay(PickRandomCard(4));
if (Card4._currentframe < Card3._currentframe) {
LostMatch();
}
} else if (Card5._currentframe == 2) {
Card5.gotoAndPlay(PickRandomCard(5));
if (Card5._currentframe < Card4._currentframe) {
LostMatch();
} else {
WonMatch();
}
}
}
Symbol 1500 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
_global.CurrentCash = _global.CurrentCash + 200;
}
Symbol 1503 Button
on (release) {
this._visible = false;
gotoAndStop (1);
_parent.EnableAllButtons();
}
Symbol 1505 MovieClip Frame 1
stop();
Symbol 1505 MovieClip Frame 2
function CodesMatch() {
UserCode = (((Number(Position1_txt.text) * 1000) + (Number(Position2_txt.text) * 100)) + (Number(Position3_txt.text) * 10)) + Number(Position4_txt.text);
if (UserCode == _parent._global.SafeCode) {
return(true);
}
return(false);
}
function UpdateDangerBar() {
DangerBar_mc.nextFrame();
}
function GotBusted() {
if (DangerBar_mc._currentframe == 37) {
return(true);
}
return(false);
}
stop();
DangerBar_mc.gotoAndPlay(1);
Position1_txt.text = "0";
Position2_txt.text = "0";
Position3_txt.text = "0";
Position4_txt.text = "0";
Label1_mc.gotoAndPlay(2);
Label2_mc.gotoAndPlay(1);
Label3_mc.gotoAndPlay(1);
Label4_mc.gotoAndPlay(1);
_global.WhichStep = 1;
Symbol 1505 MovieClip Frame 3
Symbol 1505 MovieClip Frame 43
stop();
Symbol 1505 MovieClip Frame 49
stop();
_parent.gotoAndPlay("BadEnd");
Symbol 1505 MovieClip Frame 50
_parent._global.GotSafeCash = true;
_parent._global.CurrentCash = _parent._global.CurrentCash + 7000;
Symbol 1505 MovieClip Frame 107
stop();
Symbol 1505 MovieClip Frame 109
function ExitGame() {
this._visible = false;
this.gotoAndStop(1);
_parent.EnableAllButtons();
}
function ComputerThreeInRow() {
if (((Tic01_mc._currentframe == Tic02_mc._currentframe) && (Tic01_mc._currentframe == Tic03_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(5);
Tic02_mc.gotoAndStop(5);
Tic03_mc.gotoAndStop(5);
return(true);
}
if (((Tic04_mc._currentframe == Tic05_mc._currentframe) && (Tic04_mc._currentframe == Tic06_mc._currentframe)) && (Tic04_mc._currentframe != 1)) {
Tic04_mc.gotoAndStop(5);
Tic05_mc.gotoAndStop(5);
Tic06_mc.gotoAndStop(5);
return(true);
}
if (((Tic07_mc._currentframe == Tic08_mc._currentframe) && (Tic07_mc._currentframe == Tic09_mc._currentframe)) && (Tic07_mc._currentframe != 1)) {
Tic07_mc.gotoAndStop(5);
Tic08_mc.gotoAndStop(5);
Tic09_mc.gotoAndStop(5);
return(true);
}
if (((Tic01_mc._currentframe == Tic04_mc._currentframe) && (Tic01_mc._currentframe == Tic07_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(5);
Tic04_mc.gotoAndStop(5);
Tic07_mc.gotoAndStop(5);
return(true);
}
if (((Tic02_mc._currentframe == Tic05_mc._currentframe) && (Tic02_mc._currentframe == Tic08_mc._currentframe)) && (Tic02_mc._currentframe != 1)) {
Tic02_mc.gotoAndStop(5);
Tic05_mc.gotoAndStop(5);
Tic08_mc.gotoAndStop(5);
return(true);
}
if (((Tic03_mc._currentframe == Tic06_mc._currentframe) && (Tic03_mc._currentframe == Tic09_mc._currentframe)) && (Tic03_mc._currentframe != 1)) {
Tic03_mc.gotoAndStop(5);
Tic06_mc.gotoAndStop(5);
Tic09_mc.gotoAndStop(5);
return(true);
}
if (((Tic01_mc._currentframe == Tic05_mc._currentframe) && (Tic01_mc._currentframe == Tic09_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(5);
Tic05_mc.gotoAndStop(5);
Tic09_mc.gotoAndStop(5);
return(true);
}
if (((Tic03_mc._currentframe == Tic05_mc._currentframe) && (Tic03_mc._currentframe == Tic07_mc._currentframe)) && (Tic03_mc._currentframe != 1)) {
Tic03_mc.gotoAndStop(5);
Tic05_mc.gotoAndStop(5);
Tic07_mc.gotoAndStop(5);
return(true);
}
return(false);
}
function PlayerThreeInRow() {
if (((Tic01_mc._currentframe == Tic02_mc._currentframe) && (Tic01_mc._currentframe == Tic03_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(4);
Tic02_mc.gotoAndStop(4);
Tic03_mc.gotoAndStop(4);
return(true);
}
if (((Tic04_mc._currentframe == Tic05_mc._currentframe) && (Tic04_mc._currentframe == Tic06_mc._currentframe)) && (Tic04_mc._currentframe != 1)) {
Tic04_mc.gotoAndStop(4);
Tic05_mc.gotoAndStop(4);
Tic06_mc.gotoAndStop(4);
return(true);
}
if (((Tic07_mc._currentframe == Tic08_mc._currentframe) && (Tic07_mc._currentframe == Tic09_mc._currentframe)) && (Tic07_mc._currentframe != 1)) {
Tic07_mc.gotoAndStop(4);
Tic08_mc.gotoAndStop(4);
Tic09_mc.gotoAndStop(4);
return(true);
}
if (((Tic01_mc._currentframe == Tic04_mc._currentframe) && (Tic01_mc._currentframe == Tic07_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(4);
Tic04_mc.gotoAndStop(4);
Tic07_mc.gotoAndStop(4);
return(true);
}
if (((Tic02_mc._currentframe == Tic05_mc._currentframe) && (Tic02_mc._currentframe == Tic08_mc._currentframe)) && (Tic02_mc._currentframe != 1)) {
Tic02_mc.gotoAndStop(4);
Tic05_mc.gotoAndStop(4);
Tic08_mc.gotoAndStop(4);
return(true);
}
if (((Tic03_mc._currentframe == Tic06_mc._currentframe) && (Tic03_mc._currentframe == Tic09_mc._currentframe)) && (Tic03_mc._currentframe != 1)) {
Tic03_mc.gotoAndStop(4);
Tic06_mc.gotoAndStop(4);
Tic09_mc.gotoAndStop(4);
return(true);
}
if (((Tic01_mc._currentframe == Tic05_mc._currentframe) && (Tic01_mc._currentframe == Tic09_mc._currentframe)) && (Tic01_mc._currentframe != 1)) {
Tic01_mc.gotoAndStop(4);
Tic05_mc.gotoAndStop(4);
Tic09_mc.gotoAndStop(4);
return(true);
}
if (((Tic03_mc._currentframe == Tic05_mc._currentframe) && (Tic03_mc._currentframe == Tic07_mc._currentframe)) && (Tic03_mc._currentframe != 1)) {
Tic03_mc.gotoAndStop(4);
Tic05_mc.gotoAndStop(4);
Tic07_mc.gotoAndStop(4);
return(true);
}
return(false);
}
function DisableBoxes() {
_parent.UpdateTime(10);
Cancel_btn.enabled = false;
Tic01_mc.enabled = false;
Tic02_mc.enabled = false;
Tic03_mc.enabled = false;
Tic04_mc.enabled = false;
Tic05_mc.enabled = false;
Tic06_mc.enabled = false;
Tic07_mc.enabled = false;
Tic08_mc.enabled = false;
Tic09_mc.enabled = false;
}
function EnableBoxes() {
Cancel_btn.enabled = true;
Tic01_mc.enabled = true;
Tic02_mc.enabled = true;
Tic03_mc.enabled = true;
Tic04_mc.enabled = true;
Tic05_mc.enabled = true;
Tic06_mc.enabled = true;
Tic07_mc.enabled = true;
Tic08_mc.enabled = true;
Tic09_mc.enabled = true;
}
function PlayerWon() {
DisableBoxes();
GamesPlayed++;
GameCount_txt.text = GamesPlayed;
Won++;
WonCount_txt.text = Won;
if (Won < 5) {
Response_mc.gotoAndStop(2);
Response_mc._visible = true;
} else {
Response_mc.gotoAndStop(5);
Response_mc._visible = true;
}
}
function TiedGame() {
DisableBoxes();
GamesPlayed++;
GameCount_txt.text = GamesPlayed;
Response_mc.gotoAndStop(4);
Response_mc._visible = true;
}
function ComputerWon() {
DisableBoxes();
GamesPlayed++;
GameCount_txt.text = GamesPlayed;
Lost++;
LostCount_txt.text = Lost;
if (Lost < 5) {
Response_mc.gotoAndStop(3);
Response_mc._visible = true;
} else {
Response_mc.gotoAndStop(6);
Response_mc._visible = true;
}
}
function SpaceToBlock() {
if (((Tic01_mc._currentframe == 2) && (Tic02_mc._currentframe == 2)) && (Tic03_mc._currentframe == 1)) {
Tic03_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 2) && (Tic02_mc._currentframe == 1)) && (Tic03_mc._currentframe == 2)) {
Tic02_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 1) && (Tic02_mc._currentframe == 2)) && (Tic03_mc._currentframe == 2)) {
Tic01_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic04_mc._currentframe == 2) && (Tic05_mc._currentframe == 2)) && (Tic06_mc._currentframe == 1)) {
Tic06_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic04_mc._currentframe == 2) && (Tic05_mc._currentframe == 1)) && (Tic06_mc._currentframe == 2)) {
Tic05_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic04_mc._currentframe == 1) && (Tic05_mc._currentframe == 2)) && (Tic06_mc._currentframe == 2)) {
Tic04_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic07_mc._currentframe == 2) && (Tic08_mc._currentframe == 2)) && (Tic09_mc._currentframe == 1)) {
Tic09_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic07_mc._currentframe == 2) && (Tic08_mc._currentframe == 1)) && (Tic09_mc._currentframe == 2)) {
Tic08_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic07_mc._currentframe == 1) && (Tic08_mc._currentframe == 2)) && (Tic09_mc._currentframe == 2)) {
Tic07_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 2) && (Tic04_mc._currentframe == 2)) && (Tic07_mc._currentframe == 1)) {
Tic07_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 2) && (Tic04_mc._currentframe == 1)) && (Tic07_mc._currentframe == 2)) {
Tic04_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 1) && (Tic04_mc._currentframe == 2)) && (Tic07_mc._currentframe == 2)) {
Tic01_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic02_mc._currentframe == 2) && (Tic05_mc._currentframe == 2)) && (Tic08_mc._currentframe == 1)) {
Tic08_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic02_mc._currentframe == 2) && (Tic05_mc._currentframe == 1)) && (Tic08_mc._currentframe == 2)) {
Tic05_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic02_mc._currentframe == 1) && (Tic05_mc._currentframe == 2)) && (Tic08_mc._currentframe == 2)) {
Tic02_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic03_mc._currentframe == 2) && (Tic06_mc._currentframe == 2)) && (Tic09_mc._currentframe == 1)) {
Tic09_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic03_mc._currentframe == 2) && (Tic06_mc._currentframe == 1)) && (Tic09_mc._currentframe == 2)) {
Tic06_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic03_mc._currentframe == 1) && (Tic06_mc._currentframe == 2)) && (Tic09_mc._currentframe == 2)) {
Tic03_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 2) && (Tic05_mc._currentframe == 2)) && (Tic09_mc._currentframe == 1)) {
Tic09_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 2) && (Tic05_mc._currentframe == 1)) && (Tic09_mc._currentframe == 2)) {
Tic05_mc.gotoAndStop(3);
Moves++;
return(true);
}
if (((Tic01_mc._currentframe == 1) && (Tic05_mc._currentframe == 2)) && (Tic09_mc._currentframe == 2)) {
Tic01_mc.gotoAndStop(3);
Moves++;
return(true);
}
return(false);
}
function ComputerMove() {
DidYouBlock = SpaceToBlock();
if (DidYouBlock == false) {
Chosen = false;
while ((!Chosen) && (Moves < 9)) {
RndNumb = _parent.RandomRange(1, 9);
if (eval (("Tic0" + RndNumb) + "_mc")._currentframe == 1) {
eval (("Tic0" + RndNumb) + "_mc").gotoAndStop(3);
Chosen = true;
Moves++;
}
}
}
}
function ResetBoard() {
Moves = 0;
Tic01_mc.gotoAndStop(1);
Tic02_mc.gotoAndStop(1);
Tic03_mc.gotoAndStop(1);
Tic04_mc.gotoAndStop(1);
Tic05_mc.gotoAndStop(1);
Tic06_mc.gotoAndStop(1);
Tic07_mc.gotoAndStop(1);
Tic08_mc.gotoAndStop(1);
Tic09_mc.gotoAndStop(1);
}
stop();
var GamesPlayed = 0;
var Moves = 0;
var Won = 0;
var Lost = 0;
Response_mc._visible = false;
GameCount_txt.text = GamesPlayed;
WonCount_txt.text = Won;
LostCount_txt.text = Lost;
ResetBoard();
EnableBoxes();
Instance of Symbol 1416 MovieClip "Tic04_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic05_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic06_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic07_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic08_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic09_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic01_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic02_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Instance of Symbol 1416 MovieClip "Tic03_mc" in Symbol 1505 MovieClip Frame 109
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_parent.Moves++;
if (_parent.PlayerThreeInRow()) {
_parent.PlayerWon();
} else if (_parent.Moves == 9) {
_parent.TiedGame();
} else {
_parent.ComputerMove();
if (_parent.ComputerThreeInRow()) {
_parent.ComputerWon();
}
}
}
}
Symbol 1505 MovieClip Frame 111
stop();
Symbol 1505 MovieClip Frame 112
function LostMatch() {
Higher_btn.enabled = false;
Lower_btn.enabled = false;
Deal_btn._visible = true;
if (CurrentPool <= 0) {
gotoAndStop ("EmptyPool");
}
}
function WonMatch() {
Higher_btn.enabled = false;
Lower_btn.enabled = false;
Deal_btn._visible = true;
CurrentPool = CurrentPool + 50;
Winnings_txt.text = "$" + CurrentPool;
if (CurrentPool > 600) {
this.gotoAndPlay("WinAward");
}
}
function PickRandomCard(CardToPick) {
var _local2 = Math.round(Math.random() * 100);
var _local1 = Math.floor(_local2 / 1.96078431372549);
if (_local1 >= 51) {
_local1 = 50;
}
return(3 + _local1);
}
stop();
CurrentPool = 100;
Winnings_txt.text = "$" + CurrentPool;
PickedCard1 = 1;
PickedCard2 = 1;
PickedCard3 = 1;
PickedCard4 = 1;
PickedCard5 = 1;
Card1.gotoAndStop(1);
Card2.gotoAndStop(1);
Card3.gotoAndStop(1);
Card4.gotoAndStop(1);
Card5.gotoAndStop(1);
Deal_btn._visible = true;
Higher_btn.enabled = false;
Lower_btn.enabled = false;
GiveUp_btn._visible = false;
Symbol 1505 MovieClip Frame 113
stop();
if (_global.ItemBriefcase[7].GetItemAmount() < 99) {
_global.ItemBriefcase[7].UpdateItemAmount(_global.ItemBriefcase[7].GetItemAmount() + 1);
}
Symbol 1505 MovieClip Frame 114
stop();
Symbol 1510 Button
on (release) {
this.gotoAndPlay("Reception");
}
on (rollOver) {
RoomOver_txt.text = "Reception Room";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1513 Button
on (release) {
this.gotoAndPlay("Cubicle_1");
}
on (rollOver) {
RoomOver_txt.text = "Your Cubicle";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1515 Button
on (release) {
this.gotoAndPlay("Cubicle_2");
}
on (rollOver) {
RoomOver_txt.text = "Cubicle 2";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1516 Button
on (release) {
this.gotoAndPlay("Cubicle_3");
}
on (rollOver) {
RoomOver_txt.text = "Cubicle 3";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1517 Button
on (release) {
this.gotoAndPlay("Cubicle_4");
}
on (rollOver) {
RoomOver_txt.text = "Cubicle 4";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1518 Button
on (release) {
this.gotoAndPlay("Cubicle_5");
}
on (rollOver) {
RoomOver_txt.text = "Computer Cubicle";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1519 Button
on (release) {
this.gotoAndPlay("Cubicle_6");
}
on (rollOver) {
RoomOver_txt.text = "Vacant Cubicle";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1523 Button
on (release) {
this.gotoAndPlay("Boss_2");
}
on (rollOver) {
RoomOver_txt.text = "Misato's Office";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1527 Button
on (release) {
this.gotoAndPlay("Boss_1");
}
on (rollOver) {
RoomOver_txt.text = "Conference Room";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1531 Button
on (release) {
this.gotoAndPlay("Boss_3");
}
on (rollOver) {
RoomOver_txt.text = "Spike's Office";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1536 Button
on (release) {
this.gotoAndPlay("Head_Boss");
}
on (rollOver) {
RoomOver_txt.text = "Boss's Office";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1541 Button
on (release) {
this.gotoAndPlay("Break_Rm");
}
on (rollOver) {
RoomOver_txt.text = "Break Room";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1545 Button
on (release) {
this.gotoAndPlay("Xerox_Rm");
}
on (rollOver) {
RoomOver_txt.text = "Copy Room";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1549 Button
on (release) {
this.gotoAndPlay("Elevator_Rm20");
}
on (rollOver) {
RoomOver_txt.text = "Elevator";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1553 Button
on (release) {
this.gotoAndPlay("Floor5");
UpdateTime(8);
}
on (rollOver) {
RoomOver_txt.text = "Stairway Down";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1558 Button
on (release) {
this.gotoAndPlay("Bathroom");
}
on (rollOver) {
RoomOver_txt.text = "Unisex Bathroom";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1562 Button
on (release) {
this.gotoAndPlay("Closet_Rm");
}
on (rollOver) {
RoomOver_txt.text = "Janitor's Closet";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1568 Button
on (release) {
this.gotoAndPlay("Coffee_Shop");
}
on (rollOver) {
RoomOver_txt.text = "Starmucks's Coffee";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1572 Button
on (release) {
this.gotoAndPlay("Floor20");
UpdateTime(8);
}
on (rollOver) {
RoomOver_txt.text = "Stairway Up";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1577 Button
on (release) {
this.gotoAndPlay("Elevator_Rm5");
}
on (rollOver) {
RoomOver_txt.text = "Elevator";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1582 Button
on (release) {
this.gotoAndPlay("Gift_Shop");
}
on (rollOver) {
RoomOver_txt.text = "Gift Shop";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1587 Button
on (release) {
this.gotoAndPlay("Health_Spa");
}
on (rollOver) {
RoomOver_txt.text = "Health Spa";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1592 Button
on (release) {
this.gotoAndPlay("Gym_1");
}
on (rollOver) {
RoomOver_txt.text = "Executive Gym";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1598 Button
on (release) {
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop(5);
DisableAllButtons();
Steps_btn.enabled = false;
Elev_btn.enabled = false;
Gym_btn.enabled = false;
Shop_btn.enabled = false;
Gift_btn.enabled = false;
Spa_btn.enabled = false;
Patio_btn.enabled = false;
Home_btn.enabled = false;
}
on (rollOver) {
RoomOver_txt.text = "Exit to Home";
}
on (rollOut) {
RoomOver_txt.text = "";
}
Symbol 1609 Button
on (release) {
UpdateTime(10);
if (_global.FoundEin == false) {
_global.FoundEin = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
ElevBackButton_btn._visible = false;
DialogMisc_mc._visible = true;
DisableAllButtons();
DialogMisc_mc.gotoAndPlay("CodeEin");
}
Symbol 1611 Button
on (release) {
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop(3);
DisableAllButtons();
}
Symbol 1615 Button
on (release) {
UpdateTime(60);
_global.GotStone = true;
_global.SecretsFound++;
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() + 1);
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
DisableAllButtons();
ElevBackButton_btn._visible = false;
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("FoundStone");
}
Symbol 1623 Button
on (release) {
UpdateTime(10);
UpdateHUD();
if (_global.FoundCocaine == false) {
_global.FoundCocaine = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
ElevBackButton_btn._visible = false;
DialogMisc_mc._visible = true;
DisableAllButtons();
DialogMisc_mc.gotoAndPlay("Buy_Cocaine");
}
Symbol 1627 Button
on (release) {
if (_root._currentframe < 84) {
this.gotoAndPlay("Floor20");
} else {
this.gotoAndPlay("Floor5");
}
}
Symbol 1631 Button
on (release) {
var RandomPlace;
if (_root._currentframe < 84) {
RandomPlace = RandomRange(68, 83);
while ((RandomPlace == _root._currentframe) || (RandomPlace == 76)) {
RandomPlace = RandomRange(68, 83);
}
this.gotoAndPlay(RandomPlace);
} else {
RandomPlace = RandomRange(86, 90);
while (RandomPlace == _root._currentframe) {
RandomPlace = RandomRange(86, 90);
}
this.gotoAndPlay(RandomPlace);
}
}
Symbol 1637 MovieClip Frame 1
stop();
Symbol 1638 Button
on (release) {
this.gotoAndPlay("Health_Spa");
EnableAllButtons();
}
Symbol 1652 Button
on (release) {
ResultSound = new Sound();
if ((_global.CurrentHour >= 12) || (_global.CurrentHour <= 6)) {
if (PlayerOne.GetHP() >= 40) {
_global.CurrentCash = Number(_global.CurrentCash) + Number(PlayerOne.GetCHA() * 7);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 40);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
}
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NoTimePhone");
}
}
Symbol 1657 Button
on (release) {
ResultSound = new Sound();
if (PlayerOne.GetHP() >= 20) {
_global.CurrentCash = Number(_global.CurrentCash) + Number(PlayerOne.GetSTR() * 6);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 20);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
}
}
Symbol 1659 Button
on (release) {
UpdateTime(13);
if (_global.GotNote01 == false) {
_global.GotNote01 = true;
_global.SecretsFound++;
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + 3);
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop("ChinaMisato");
DisableAllButtons();
}
Symbol 1666 Button
on (release) {
ResultSound = new Sound();
if ((_global.CurrentHour >= 11) || (_global.CurrentHour <= 3)) {
if (PlayerOne.GetHP() >= 40) {
BonusAmount = Math.round(Math.random() * PlayerOne.GetLUK());
_global.CurrentCash = (Number(_global.CurrentCash) + Math.round(PlayerOne.GetINT() * 10)) + BonusAmount;
PlayerOne.UpdateHP(PlayerOne.GetHP() - 40);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(20);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
}
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NoTimeStock");
}
}
Symbol 1672 Button
on (press) {
UpdateTime(3);
if (_global.GotPicture == false) {
_global.SecretsFound++;
_global.GotPicture = true;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
}
Symbol 1678 MovieClip Frame 1
stop();
if (_parent._global.GotComic == true) {
gotoAndPlay (18);
}
Symbol 1678 MovieClip Frame 18
stop();
Symbol 1695 MovieClip Frame 1
stop();
Symbol 1695 MovieClip Frame 24
stop();
Symbol 1700 Button
on (press) {
DisableAllButtons();
ResultSound = new Sound();
ResultSound.attachSound("faxtone");
ResultSound.start();
ResultSound.onSoundComplete = function () {
EnableAllButtons();
if (_global.GotFax == false) {
_global.GotFax = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
};
}
Symbol 1703 Button
on (release) {
if (_global.GottenPaperclip == false) {
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop(2);
DisableAllButtons();
_global.GottenPaperclip = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
}
Symbol 1712 Button
on (release) {
ResultSound = new Sound();
if (PlayerOne.GetHP() >= 30) {
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + 4);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 30);
UpdateTime(30);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
}
}
Symbol 1717 Button
on (release) {
_parent.UpdateTime(3);
ResultSound = new Sound();
ResultSound.attachSound("EatMeat");
ResultSound.start();
_parent.DisableAllButtons();
ResultSound.onSoundComplete = function () {
_parent.EnableAllButtons();
};
}
Symbol 1721 MovieClip Frame 1
stop();
Symbol 1721 MovieClip Frame 2
stop();
Symbol 1721 MovieClip Frame 3
stop();
Symbol 1721 MovieClip Frame 4
stop();
Symbol 1721 MovieClip Frame 5
stop();
Symbol 1724 Button
on (release) {
ResultSound = new Sound();
PlayerOne.UpdateHP(PlayerOne.GetHP() + 3);
if (PlayerOne.GetHP() > PlayerOne.GetHPMax()) {
PlayerOne.UpdateHP(PlayerOne.GetHPMax());
ResultSound.attachSound("cricket");
ResultSound.start();
UpdateTime(30);
} else {
UpdateTime(30);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
}
}
Symbol 1726 Button
on (release) {
UpdateTime(3);
if (_global.ChangedWall == false) {
_global.ChangedWall = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
TheWall_mc.play();
}
Symbol 1731 Button
on (release) {
if (_global.GymInvite == false) {
_global.GymInvite = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("KajiFound");
}
}
Symbol 1738 Button
on (release) {
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop(3);
DisableAllButtons();
}
Symbol 1743 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 80) && (CurrentCash >= 2000)) {
PlayerOne.UpdateINT(PlayerOne.GetINT() + 30);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 80);
UpdateTime(60);
UpdateTime(60);
_global.CurrentCash = _global.CurrentCash - 2000;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 80) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1745 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 20) && (CurrentCash >= 100)) {
PlayerOne.UpdateINT(PlayerOne.GetINT() + 10);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 20);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(20);
_global.CurrentCash = _global.CurrentCash - 100;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 20) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1757 MovieClip Frame 1
stop();
Symbol 1757 MovieClip Frame 2
stop();
Symbol 1757 MovieClip Frame 3
stop();
Symbol 1757 MovieClip Frame 4
stop();
Symbol 1757 MovieClip Frame 5
stop();
Symbol 1757 MovieClip Frame 6
stop();
Symbol 1757 MovieClip Frame 7
stop();
Symbol 1757 MovieClip Frame 8
stop();
Symbol 1757 MovieClip Frame 9
stop();
Symbol 1757 MovieClip Frame 10
stop();
Symbol 1757 MovieClip Frame 11
stop();
Symbol 1757 MovieClip Frame 12
stop();
Symbol 1763 Button
on (release) {
UpdateTime(3);
ResultSound = new Sound();
ResultSound.attachSound("Candy");
ResultSound.start();
DisableAllButtons();
ResultSound.onSoundComplete = function () {
EnableAllButtons();
};
}
Symbol 1767 Button
on (release) {
ResultSound = new Sound();
if (PlayerOne.GetHP() >= 100) {
PlayerOne.UpdateLUK(PlayerOne.GetLUK() + 15);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 100);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
UpdateTime(60);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 100) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1769 Button
on (release) {
UpdateTime(2);
ResultSound = new Sound();
ResultSound.attachSound("SPVomit");
ResultSound.start();
DisableAllButtons();
ResultSound.onSoundComplete = function () {
EnableAllButtons();
};
}
Symbol 1772 Button
on (release) {
ResultSound = new Sound();
if (PlayerOne.GetHP() >= 20) {
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + 3);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 20);
UpdateTime(5);
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 20) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1774 Button
on (release) {
UpdateTime(7);
ResultSound = new Sound();
ResultSound.attachSound("Toilet");
ResultSound.start();
DisableAllButtons();
ResultSound.onSoundComplete = function () {
EnableAllButtons();
if (_global.FlushedToilet == false) {
_global.FlushedToilet = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
};
}
Symbol 1776 Button
on (release) {
if ((SafeCover_btn._visible == false) && (_global.GotSafeCash == false)) {
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndStop("SafeIntro");
DisableAllButtons();
}
}
Symbol 1779 Button
on (release) {
if (_global.GotSafeCash == false) {
this.SafeCover_btn._visible = false;
if (_global.FoundSafe == false) {
_global.SecretsFound++;
_global.FoundSafe = true;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
}
}
Symbol 1783 MovieClip Frame 1
stop();
Symbol 1783 MovieClip Frame 2
stop();
Symbol 1789 Button
on (release) {
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("TakeTheTest");
}
Symbol 1792 Button
on (release) {
if (_global.FoundPeeping == false) {
_global.FoundPeeping = true;
_global.SecretsFound++;
ResultSound = new Sound();
ResultSound.attachSound("dingup");
ResultSound.start();
}
this.gotoAndPlay("Shower_Scene");
}
Symbol 1798 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 30) && (CurrentCash >= 1000)) {
PlayerOne.UpdateLUK(PlayerOne.GetLUK() + 5);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 30);
UpdateTime(60);
_global.CurrentCash = _global.CurrentCash - 1000;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 30) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1800 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 10) && (CurrentCash >= 3200)) {
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + 35);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 10);
UpdateTime(60);
_global.CurrentCash = _global.CurrentCash - 3200;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 10) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1802 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 30) && (CurrentCash >= 10)) {
PlayerOne.UpdateINT(PlayerOne.GetINT() + 5);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 30);
UpdateTime(40);
_global.CurrentCash = _global.CurrentCash - 10;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 30) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1804 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 20) && (CurrentCash >= 230)) {
PlayerOne.UpdateLUK(PlayerOne.GetLUK() + 8);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 20);
UpdateTime(60);
UpdateTime(60);
UpdateTime(20);
_global.CurrentCash = _global.CurrentCash - 230;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 20) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1813 Button
on (release) {
if ((_global.CurrentCash >= 270) && (_global.ItemBriefcase[8].GetItemAmount() < 99)) {
_global.ItemBriefcase[8].UpdateItemAmount(_global.ItemBriefcase[8].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 270;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1819 Button
on (release) {
if ((_global.CurrentCash >= 200) && (_global.ItemBriefcase[3].GetItemAmount() < 99)) {
_global.ItemBriefcase[3].UpdateItemAmount(_global.ItemBriefcase[3].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 200;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1825 Button
on (release) {
if ((_global.CurrentCash >= 830) && (_global.ItemBriefcase[11].GetItemAmount() < 99)) {
_global.ItemBriefcase[11].UpdateItemAmount(_global.ItemBriefcase[11].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 830;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1837 Button
on (release) {
if ((_global.CurrentCash >= 450) && (_global.ItemBriefcase[2].GetItemAmount() < 99)) {
_global.ItemBriefcase[2].UpdateItemAmount(_global.ItemBriefcase[2].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 450;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1842 Button
on (release) {
if ((_global.CurrentCash >= 1050) && (_global.ItemBriefcase[1].GetItemAmount() < 99)) {
_global.ItemBriefcase[1].UpdateItemAmount(_global.ItemBriefcase[1].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 1050;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1847 Button
on (release) {
if ((_global.CurrentCash >= 520) && (_global.ItemBriefcase[6].GetItemAmount() < 99)) {
_global.ItemBriefcase[6].UpdateItemAmount(_global.ItemBriefcase[6].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 520;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1853 Button
on (release) {
if ((_global.CurrentCash >= 3020) && (_global.ItemBriefcase[0].GetItemAmount() < 99)) {
_global.ItemBriefcase[0].UpdateItemAmount(_global.ItemBriefcase[0].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 3020;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1859 Button
on (release) {
if ((_global.CurrentCash >= 4300) && (_global.ItemBriefcase[9].GetItemAmount() < 99)) {
_global.ItemBriefcase[9].UpdateItemAmount(_global.ItemBriefcase[9].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 4300;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1863 Button
on (release) {
if ((_global.CurrentCash >= 10000) && (_global.ItemBriefcase[5].GetItemAmount() < 99)) {
_global.ItemBriefcase[5].UpdateItemAmount(_global.ItemBriefcase[5].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 10000;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1869 Button
on (release) {
if ((_global.CurrentCash >= 1800) && (_global.ItemBriefcase[4].GetItemAmount() < 99)) {
_global.ItemBriefcase[4].UpdateItemAmount(_global.ItemBriefcase[4].GetItemAmount() + 1);
_global.CurrentCash = _global.CurrentCash - 1800;
DisplayCash();
ChaChing = new Sound();
ChaChing.attachSound("CashReg1");
ChaChing.start();
} else {
ChaChing = new Sound();
ChaChing.attachSound("BHUMP2");
ChaChing.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
DialogMisc_mc.gotoAndPlay("ItemError");
}
}
Symbol 1877 Button
on (release) {
if (_global.GymInvite == true) {
this.gotoAndPlay("Gym_2");
}
}
Symbol 1880 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 30) && (CurrentCash >= 20)) {
PlayerOne.UpdateSTR(PlayerOne.GetSTR() + 10);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 30);
UpdateTime(40);
_global.CurrentCash = _global.CurrentCash - 20;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 30) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1882 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 40) && (CurrentCash >= 550)) {
PlayerOne.UpdateSTR(PlayerOne.GetSTR() + 17);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 40);
UpdateTime(20);
_global.CurrentCash = _global.CurrentCash - 550;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 40) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1884 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 25) && (CurrentCash >= 20)) {
PlayerOne.UpdateCHA(PlayerOne.GetCHA() + 7);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 25);
UpdateTime(20);
_global.CurrentCash = _global.CurrentCash - 20;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 25) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1886 Button
on (release) {
ResultSound = new Sound();
if ((PlayerOne.GetHP() >= 70) && (CurrentCash >= 3500)) {
PlayerOne.UpdateSTR(PlayerOne.GetSTR() + 30);
PlayerOne.UpdateHP(PlayerOne.GetHP() - 70);
UpdateTime(60);
_global.CurrentCash = _global.CurrentCash - 3500;
DisplayCash();
ResultSound.attachSound("buttonpopup");
ResultSound.start();
} else {
ResultSound.attachSound("BHUMP2");
ResultSound.start();
DisableAllButtons();
DialogMisc_mc._visible = true;
if (PlayerOne.GetHP() < 70) {
DialogMisc_mc.gotoAndPlay("NotEnoughHP");
} else {
DialogMisc_mc.gotoAndPlay("NotEnoughCash");
}
}
}
Symbol 1897 Button
on (release) {
if (_global.CurrentPlace > 12) {
UpdateTime(-5);
}
if (_currentframe == 93) {
eval (getInstanceAtDepth(0)).removeMovieClip();
}
gotoAndPlay(_global.CurrentPlace);
}
Symbol 1901 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[11].GetItemName();
ShowStatChanges(11);
}
on (rollOut) {
ItemInfo_txt.text = "";
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
}
on (release) {
UseAnItem(11);
}
Symbol 1902 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[8].GetItemName();
ShowStatChanges(8);
}
on (rollOut) {
ItemInfo_txt.text = "";
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
}
on (release) {
UseAnItem(8);
}
Symbol 1903 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[5].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1904 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[2].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1905 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[10].GetItemName();
ShowStatChanges(10);
}
on (rollOut) {
ItemInfo_txt.text = "";
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
}
on (release) {
UseAnItem(10);
}
Symbol 1906 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[7].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1907 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[4].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1908 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[1].GetItemName();
ShowStatChanges(1);
}
on (rollOut) {
ItemInfo_txt.text = "";
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
}
on (release) {
UseAnItem(1);
}
Symbol 1909 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[9].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1910 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[6].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1911 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[3].GetItemName();
ShowStatChanges(3);
}
on (rollOut) {
ItemInfo_txt.text = "";
INTScore_txt.text = PlayerOne.GetINT();
STRScore_txt.text = PlayerOne.GetSTR();
CHAScore_txt.text = PlayerOne.GetCHA();
LUKScore_txt.text = PlayerOne.GetLUK();
}
on (release) {
UseAnItem(3);
}
Symbol 1912 Button
on (rollOver) {
ItemInfo_txt.text = _global.ItemBriefcase[0].GetItemName();
}
on (rollOut) {
ItemInfo_txt.text = "";
}
Symbol 1956 Button
on (release) {
if (_global.CurrentPlace > 12) {
UpdateTime(-5);
}
this.gotoAndPlay(_global.CurrentPlace);
}
Symbol 1985 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 1986 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 1987 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 1990 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 1991 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 1996 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 2003 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 2004 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("MisatoExam" + NextQ);
} else {
gotoAndPlay ("MisatoScore");
}
}
Symbol 2007 Button
on (release) {
gotoAndPlay ("Voting");
}
Symbol 2012 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2013 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2014 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2019 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2020 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2029 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2030 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("SpikeExam" + NextQ);
} else {
gotoAndPlay ("SpikeScore");
}
}
Symbol 2035 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("ReiExam" + NextQ);
} else {
gotoAndPlay ("ReiScore");
}
}
Symbol 2036 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
switch (NextQ) {
case 1 :
gotoAndPlay ("ReiExam1");
break;
case 2 :
gotoAndPlay ("ReiExam2");
break;
case 3 :
gotoAndPlay ("ReiExam3");
break;
case 4 :
gotoAndPlay ("ReiExam4");
break;
case 5 :
gotoAndPlay ("ReiExam5");
break;
case 6 :
gotoAndPlay ("ReiExam6");
break;
case 7 :
gotoAndPlay ("ReiExam7");
}
} else {
gotoAndPlay ("ReiScore");
}
}
Symbol 2037 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
switch (NextQ) {
case 1 :
gotoAndPlay ("ReiExam1");
break;
case 2 :
gotoAndPlay ("ReiExam2");
break;
case 3 :
gotoAndPlay ("ReiExam3");
break;
case 4 :
gotoAndPlay ("ReiExam4");
break;
case 5 :
gotoAndPlay ("ReiExam5");
break;
case 6 :
gotoAndPlay ("ReiExam6");
break;
case 7 :
gotoAndPlay ("ReiExam7");
}
} else {
gotoAndPlay ("ReiScore");
}
}
Symbol 2050 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
switch (NextQ) {
case 1 :
gotoAndPlay ("ReiExam1");
break;
case 2 :
gotoAndPlay ("ReiExam2");
break;
case 3 :
gotoAndPlay ("ReiExam3");
break;
case 4 :
gotoAndPlay ("ReiExam4");
break;
case 5 :
gotoAndPlay ("ReiExam5");
break;
case 6 :
gotoAndPlay ("ReiExam6");
break;
case 7 :
gotoAndPlay ("ReiExam7");
}
} else {
gotoAndPlay ("ReiScore");
}
}
Symbol 2055 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2056 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2057 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2060 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2061 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2072 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2073 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("InuyashaExam" + NextQ);
} else {
gotoAndPlay ("InuyashaScore");
}
}
Symbol 2078 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2079 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2080 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2085 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2086 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2095 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2096 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("SangoExam" + NextQ);
} else {
gotoAndPlay ("SangoScore");
}
}
Symbol 2101 Button
on (release) {
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2102 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2103 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2112 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2113 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 7);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2118 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("Bingo");
ResultSound.start();
_global.CorrectNumber++;
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2119 Button
on (release) {
ResultSound = new Sound();
ResultSound.attachSound("NopeBeep");
ResultSound.start();
var NextQ;
if (_global.QuestionNumber < 3) {
_global.QuestionNumber++;
NextQ = RandomRange(1, 6);
gotoAndPlay("LinaExam" + NextQ);
} else {
gotoAndPlay ("LinaScore");
}
}
Symbol 2146 MovieClip Frame 21
stop();
_parent.play();
Symbol 2177 MovieClip Frame 16
stop();
_parent.play();
Symbol 2193 MovieClip Frame 16
stop();
_parent.play();
Symbol 2205 MovieClip Frame 12
stop();
_parent.play();
Symbol 2223 MovieClip Frame 19
stop();
_parent.play();
Symbol 2229 MovieClip Frame 7
stop();
_parent.play();
Symbol 2234 Button
on (release) {
if (_global.PlayerRank == "Chief Executive") {
gotoAndPlay ("CEO");
} else if (Number(FinalScore_txt.text) > 0) {
gotoAndPlay ("RankList");
} else {
gotoAndPlay ("Cubicle_1");
}
}
Symbol 2235 Button
on (release) {
gotoAndPlay ("Cubicle_1");
}
Symbol 2252 Button
on (release) {
gotoAndPlay ("Scene2");
}
Symbol 2259 Button
on (release) {
gotoAndPlay ("Scene3");
}
Symbol 2262 Button
on (release) {
gotoAndPlay ("Credits");
}
Symbol 2273 MovieClip Frame 65
gotoAndPlay (1);
Symbol 2277 Button
on (release) {
play();
}
Symbol 2333 MovieClip Frame 97
gotoAndPlay (1);