027-8,39,24,0 script General Terogan#Main NPC400,{ if ($@CRYPT_FIGHT3 != 0) end; @TEROGAN_SOUL_REQ = 5; @TEROGAN_ROTTEN_RAGS_REQ = 5; @TEROGAN_UNDEAD_EYE_REQ = 2; @TEROGAN_UNDEAD_EAR_REQ = 3; @minLevel = 80; mes "[Tome]"; mes "The Tome is open to a page about a summon ritual that can be performed in this chamber."; next; goto L_TomeMain; L_TomeMain: mes "What do you want to do?"; menu "Read reagent List.", L_SummonReagents, "Assign myself left.", L_SummonLeft, "Assign myself right.", L_SummonRight, "Perform Ritual.", L_RitualMenu, "Nothing.", L_close; L_SummonReagents: mes "Says we need " + @TEROGAN_SOUL_REQ + " Souls, " + @TEROGAN_ROTTEN_RAGS_REQ + " Rotten Rags, " + @TEROGAN_UNDEAD_EYE_REQ + " Undead Eyes, and " + @TEROGAN_UNDEAD_EAR_REQ + " Undead Ears to perform the ritual. You will also need help, as the summon states both rooms need at least 1 occupant during the ritual."; next; goto L_TomeMain; L_MissingReagents: mes "It appears we are missing something, lets check the reagent list again."; next; goto L_SummonReagents; L_SummonLeft: warp "027-8", 27, 43; goto L_close; L_SummonRight: warp "027-8", 51, 43; goto L_close; L_RitualMenu: mes "Which side do you want to be on?"; menu "Left.", L_RitualLeft, "Right.", L_RitualRight; L_RitualLeft: if (BaseLevel < @minLevel) goto L_ToWeak; if ( (countitem("Soul") < @TEROGAN_SOUL_REQ) || (countitem("RottenRags") < @TEROGAN_ROTTEN_RAGS_REQ) || (countitem("UndeadEye") < @TEROGAN_UNDEAD_EYE_REQ) || (countitem("UndeadEar") < @TEROGAN_UNDEAD_EAR_REQ) ) goto L_MissingReagents; if (getareausers("027-8", 43, 39, 58, 60) == 0) goto L_NeedOther; delitem "Soul", @TEROGAN_SOUL_REQ; delitem "RottenRags", @TEROGAN_ROTTEN_RAGS_REQ; delitem "UndeadEye", @TEROGAN_UNDEAD_EYE_REQ; delitem "UndeadEar", @TEROGAN_UNDEAD_EAR_REQ; mes "As you perform the ritual you can feel the energy amass."; next; mes "A cold shiver runs down your spine as you feel something manifesting out of the void."; if ($@CRYPT_FIGHT3 != 0) goto L_close; // initialize fight $@CRYPT_FIGHT3 = 1; $@CRYPT_FIGHT3_WAVE = 0; $@CRYPT_FIGHT3_MOBS_COUNT = 2; $@CRYPT_FIGHT3_PC = getmapusers("027-8"); areamonster "027-8", 43, 39, 58, 60, "", 1124, 1, "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1075, 1, "General Terogan#Main::OnPetDeath"; initnpctimer; warp "027-8", 27, 43; goto L_Announce; L_RitualRight: if (BaseLevel < @minLevel) goto L_ToWeak; if ( (countitem("Soul") < @TEROGAN_SOUL_REQ) || (countitem("RottenRags") < @TEROGAN_ROTTEN_RAGS_REQ) || (countitem("UndeadEye") < @TEROGAN_UNDEAD_EYE_REQ) || (countitem("UndeadEar") < @TEROGAN_UNDEAD_EAR_REQ) ) goto L_MissingReagents; if (getareausers("027-8", 20, 39, 35, 60) == 0) goto L_NeedOther; delitem "Soul", @TEROGAN_SOUL_REQ; delitem "RottenRags", @TEROGAN_ROTTEN_RAGS_REQ; delitem "UndeadEye", @TEROGAN_UNDEAD_EYE_REQ; delitem "UndeadEar", @TEROGAN_UNDEAD_EAR_REQ; mes "As you perform the ritual you can feel the energy amass."; next; mes "A cold shiver runs down your spine as you feel something manifesting out of the void."; warp "027-8", 51, 43; if ($@CRYPT_FIGHT3 != 0) goto L_close; // initialize fight $@CRYPT_FIGHT3 = 1; $@CRYPT_FIGHT3_WAVE = 0; $@CRYPT_FIGHT3_MOBS_COUNT = 2; $@CRYPT_FIGHT3_PC = getmapusers("027-8"); areamonster "027-8", 43, 39, 58, 60, "", 1124, 1, "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1075, 1, "General Terogan#Main::OnPetDeath"; initnpctimer; goto L_Announce; L_NeedOther: mes "You need at least one other person in the the other chamber to start."; goto L_TomeMain; L_ToWeak: mes "You try to perform the ritual but nothing happens. You don't seem experienced enough."; goto L_close; L_close: @bonus = 0; @minLevel = 0; @TEROGAN_SOUL_REQ = 0; @TEROGAN_ROTTEN_RAGS_REQ = 0; @TEROGAN_UNDEAD_EYE_REQ = 0; @TEROGAN_UNDEAD_EAR_REQ = 0; close; OnTimer5000: setnpctimer 0; if ($@CRYPT_FIGHT3 != 0) goto L_CryptLogic; goto L_Return_1; L_Return_1: $@CRYPT_FIGHT3_PC = 0; areatimer 0, "027-8", 0, 0, 79, 84, 10, "General Terogan#Main::OnTick"; end; L_CryptLogic: $@CRYPT_FIGHT3_ROUND_PEN = $@CRYPT_FIGHT3_PC; if ($@CRYPT_FIGHT3_ROUND_PEN > 60) $@CRYPT_FIGHT3_ROUND_PEN = 60; if ($@CRYPT_FIGHT3_PC <= 0) goto L_CleanUpLosers; if (getareausers("027-8", 20, 39, 35, 60, 1) < 1) goto L_Failure; if (getareausers("027-8", 43, 39, 58, 60, 1) < 1) goto L_Failure; set $@CRYPT_FIGHT3_ROUND_TIMER, $@CRYPT_FIGHT3_ROUND_TIMER + 5; // Advance 5 seconds if (mobcount("027-8", "General Terogan#Main::OnPetDeath") <= 0) goto L_NextWave; if ($@CRYPT_FIGHT3_ROUND_TIMER + $@CRYPT_FIGHT3_ROUND_PEN >= 120) goto L_NextWave; goto L_Return_1; L_NextWave: $@CRYPT_FIGHT3_ROUND_TIMER = 0; $@CRYPT_FIGHT3_WAVE = $@CRYPT_FIGHT3_WAVE + 1; if ( ($@CRYPT_FIGHT3_WAVE > 10) && ($@CRYPT_FIGHT3_MOBS_COUNT == 0) ) goto L_CleanUp; if ( ($@CRYPT_FIGHT3_WAVE > 10) && ($@CRYPT_FIGHT3_WAVE < 22) ) goto L_Return_1; if ($@CRYPT_FIGHT3_WAVE > 22) goto L_SummonNuke; if ($@CRYPT_FIGHT3_WAVE < 5) goto L_WeakSummons; if ( ($@CRYPT_FIGHT3_WAVE < 10) && ($@CRYPT_FIGHT3_WAVE >= 5) ) goto L_StrongSummons; if ($@CRYPT_FIGHT3_WAVE == 10) goto L_BossSummons; goto L_SummonNuke; L_SummonNuke: $@CRYPT_FIGHT3_MOBS_COUNT = $@CRYPT_FIGHT3_MOBS_COUNT + $@CRYPT_FIGHT3_WAVE*2 + $@CRYPT_FIGHT3_PC*4; areamonster "027-8", 0, 0, 79, 84, "", 1124, $@CRYPT_FIGHT3_WAVE*2 + $@CRYPT_FIGHT3_PC*4, "General Terogan#Main::OnPetDeath"; goto L_Announce; L_WeakSummons: $@CRYPT_FIGHT3_MOBS_NUMBER = (5 + (1 * $@CRYPT_FIGHT3_WAVE) + (2 * $@CRYPT_FIGHT3_PC))/2; $@CRYPT_FIGHT3_MOBS_COUNT = $@CRYPT_FIGHT3_MOBS_COUNT + ($@CRYPT_FIGHT3_MOBS_NUMBER/2) + ($@CRYPT_FIGHT3_MOBS_NUMBER/2); areamonster "027-8", 43, 39, 58, 60, "", 1124, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1074, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; goto L_Announce; L_StrongSummons: $@CRYPT_FIGHT3_MOBS_NUMBER = (5 + (1 * $@CRYPT_FIGHT3_WAVE) + (2 * $@CRYPT_FIGHT3_PC))/2; $@CRYPT_FIGHT3_MOBS_COUNT = $@CRYPT_FIGHT3_MOBS_COUNT + (2 * ($@CRYPT_FIGHT3_MOBS_NUMBER/2)); areamonster "027-8", 43, 39, 58, 60, "", 1124, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1075, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; goto L_Announce; L_BossSummons: $@CRYPT_FIGHT3_MOBS_NUMBER = (5 + (1 * $@CRYPT_FIGHT3_WAVE) + (2 * $@CRYPT_FIGHT3_PC))/2; $@CRYPT_FIGHT3_MOBS_COUNT = $@CRYPT_FIGHT3_MOBS_COUNT + (2 * ($@CRYPT_FIGHT3_MOBS_NUMBER/2)) + 2; areamonster "027-8", 43, 39, 58, 60, "", 1124, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1075, ($@CRYPT_FIGHT3_MOBS_NUMBER/2), "General Terogan#Main::OnPetDeath"; areamonster "027-8", 43, 39, 58, 60, "", 1129, 1, "General Terogan#Main::OnPetDeath"; areamonster "027-8", 20, 39, 35, 60, "", 1129, 1, "General Terogan#Main::OnPetDeath"; goto L_Announce; L_Announce: $@msg$ = $@CRYPT_FIGHT3_MESSAGES$[$@CRYPT_FIGHT3_WAVE]; if ($@msg$ == "") goto L_Return_1; mapannounce "027-8", $@msg$, 0; mapannounce "027-5", $@msg$, 0; $@msg$ = ""; goto L_Return_1; OnTick: if (ispcdead()) end; $@CRYPT_FIGHT3_PC = $@CRYPT_FIGHT3_PC + 1; end; OnPetDeath: $@CRYPT_FIGHT3_MOBS_COUNT = $@CRYPT_FIGHT3_MOBS_COUNT - 1; end; L_Failure: if ($@CRYPT_FAIL_ANNOUNCED) goto L_NextWave; $@CRYPT_FAIL_ANNOUNCED = 1; mapannounce "027-8", "Looks like your neighbour team to is finished off, this is your death sentence!", 0; $@CRYPT_FIGHT3_WAVE = 23; goto L_NextWave; L_CleanUpLosers: mapannounce "027-8", "General Terogan : You just proved you cannot even coordinate a simple task. Come back when you are prepared", 0; $@CRYPT_FIGHT3 = 0; $@CRYPT_FIGHT3_PC = 0; $@CRYPT_FIGHT3_WAVE = 0; $@CRYPT_FIGHT3_ROUND_TIMER = 0; $@CRYPT_FIGHT3_MOBS_COUNT = 0; $@CRYPT_FIGHT3_ROUND_PEN = 0; $@CRYPT_FIGHT3_MOBS_NUMBER = 0; $@CRYPT_FAIL_ANNOUNCED = 0; killmonster "027-8", "General Terogan#Main::OnPetDeath"; stopnpctimer; setnpctimer 0; end; L_CleanUp: mapannounce "027-8", "General Terogan : You might have won this battle, but you will never defeat me!", 0; areatimer 0, "027-8", 0, 0, 79, 84, 10, "General Terogan#Main::OnReward"; $@CRYPT_FIGHT3 = 0; $@CRYPT_FIGHT3_PC = 0; $@CRYPT_FIGHT3_WAVE = 0; $@CRYPT_FIGHT3_ROUND_TIMER = 0; $@CRYPT_FIGHT3_MOBS_COUNT = 0; $@CRYPT_FIGHT3_ROUND_PEN = 0; $@CRYPT_FIGHT3_MOBS_NUMBER = 0; $@CRYPT_FAIL_ANNOUNCED = 0; killmonster "027-8", "General Terogan#Main::OnPetDeath"; stopnpctimer; setnpctimer 0; end; OnReward: if (ispcdead()) end; @bonus = (BaseLevel/2); DailyQuestBonus = DailyQuestBonus + @bonus; message strcharinfo(0), "You feel a temporary rush of power and zest for action. " + @bonus + " daily bonus gained." ; if (checkidle() > MAX_IDLE) goto L_End; if (BaseLevel < 120) { BOSS_POINTS += 75; dispbottom l("You gain %s Boss Points giving you a total of %s.", "60+15", fnum(BOSS_POINTS)); } else { BOSS_POINTS += 60; dispbottom l("You gain %s Boss Points giving you a total of %s.", "60", fnum(BOSS_POINTS)); } goto L_End; L_End: @bonus = 0; @minLevel = 0; @TEROGAN_SOUL_REQ = 0; @TEROGAN_ROTTEN_RAGS_REQ = 0; @TEROGAN_UNDEAD_EYE_REQ = 0; @TEROGAN_UNDEAD_EAR_REQ = 0; end; OnInit: setarray $@CRYPT_FIGHT3_MESSAGES$, "General Terogan : Haha, Thank you mortal. You have released me from my prison. To show my graditude you can die swiftly at my hands and become part of my undead army. MUhahahahaha! Minions, Dispose of these Adventurers!", "General Terogan : Ha, Looks like your tougher then I thought.", "General Terogan : and here I thought I wasn't going to enjoy this.", "General Terogan : More of them are coming!", "General Terogan : Minions! Kill them already!", "General Terogan : *facepalm* I knew I should have hired better help.", "General Terogan : Well at least you will make a good addition to my army.", "General Terogan : To the Abyss with you already!", "General Terogan : How about you try a different approach and kill them already!", "General Terogan : Minions! Last chance or it's back to being part of an ossuary for you!", "General Terogan : Looks like if you want something done right you have to do it yourself.", "General Terogan : Charge!."; end; } 027-8,27,41,0 script General Terogan#Exit1 NPC400,{ if ($@CRYPT_FIGHT3 != 0) message strcharinfo(0), "You are way too busy to check this book right now"; if ($@CRYPT_FIGHT3 != 0) end; mes "[General Terogan]"; mes "\"Let's get you out of here " + strcharinfo(0) + "\""; warp "027-8", 38, 29; end; } 027-8,51,41,0 script General Terogan#Exit2 NPC400,{ if ($@CRYPT_FIGHT3 != 0) message strcharinfo(0), "You are way too busy to check this book right now"; if ($@CRYPT_FIGHT3 != 0) end; mes "[General Terogan]"; mes "\"Let's get you out of here " + strcharinfo(0) + "\""; warp "027-8", 38, 29; end; }