diff options
Diffstat (limited to 'npc/018-8/ctrl.c')
-rw-r--r-- | npc/018-8/ctrl.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/018-8/ctrl.c b/npc/018-8/ctrl.c index c2a78f30f..c68d0ce4e 100644 --- a/npc/018-8/ctrl.c +++ b/npc/018-8/ctrl.c @@ -149,8 +149,10 @@ function clauquerPrologue { } mesn; mesq l("Oh, and if you really plan to rescue the girl, I advise you to use potions for every single battle. You might want to take some food with you too. Don't be afraid to bring too much with you, these battles take time to end."); - if (REBIRTH || BaseLevel >= 90) + if (REBIRTH) mesc l("Clauquer clearly is not aware that you were reborn. These fights will likely be a breeze to someone so overpowered as you, but caution is never too much."); + else if (BaseLevel >= 90) + mesc l("Clauquer clearly is not aware of your level. These fights will likely be a breeze to someone so overpowered as you, but caution is never too much."); next; mesn; mesq l("I think you're now ready to explore these caves and fight. Good luck rescuing the girl!"); @@ -348,9 +350,10 @@ OnBeat: /* ****************************************** */ OnTick1: - dispbottom l("Time remaining: %d minutes", 15); - addtimer2(300000, "#RossyQuest::OnTick2"); - end; + //dispbottom l("Time remaining: %d minutes", 15); + //addtimer2(300000, "#RossyQuest::OnTick2"); + //end; + //FALLTHROUGH; OnTick2: dispbottom l("Time remaining: %d minutes", 10); @@ -500,8 +503,8 @@ function script RossyCave { setunitdata(.@mob, UDT_MODE, .@bmod|4); // 4 = MD_AGGRESSIVE // Make it healthy .@bhp= getunitdata(.@mob, UDT_MAXHP); - setunitdata(.@mob, UDT_MAXHP, .@bhp*11/10); - setunitdata(.@mob, UDT_HP, .@bhp*11/10); + setunitdata(.@mob, UDT_MAXHP, .@bhp*12/10); + setunitdata(.@mob, UDT_HP, .@bhp*12/10); } // Spawn boss |