diff options
Diffstat (limited to 'world/map/npc/027-8/general_terogan.txt')
-rw-r--r-- | world/map/npc/027-8/general_terogan.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/world/map/npc/027-8/general_terogan.txt b/world/map/npc/027-8/general_terogan.txt index 522b1eaa..f23bb5c8 100644 --- a/world/map/npc/027-8/general_terogan.txt +++ b/world/map/npc/027-8/general_terogan.txt @@ -9,8 +9,8 @@ set @TEROGAN_SOUL_REQ, 5; set @TEROGAN_ROTTEN_RAGS_REQ, 5; - set @TEROGAN_UNDEAD_EYE_REQ, 3; - set @TEROGAN_UNDEAD_EAR_REQ, 2; + set @TEROGAN_UNDEAD_EYE_REQ, 2; + set @TEROGAN_UNDEAD_EAR_REQ, 3; set @minlevel, 80; mes "[Tome]"; @@ -269,8 +269,14 @@ OnReward: set @bonus, (BaseLevel/2); set DailyQuestBonus, DailyQuestBonus + @bonus; message strcharinfo(0), "You feel a temporary rush of power and zest for action. " + @bonus + " daily bonus gained." ; + if (BaseLevel < 120) goto L_Bonus; + set BOSS_POINTS, BOSS_POINTS + 60; + message strcharinfo(0), "You gain 60 Boss Points giving you a total of " + BOSS_POINTS + "."; + goto L_End; + +L_Bonus: set BOSS_POINTS, BOSS_POINTS + 75; - message strcharinfo(0), "You gain 75 Boss Points giving you a total of " + BOSS_POINTS + "."; + message strcharinfo(0), "You gain 60+15 Boss Points giving you a total of " + BOSS_POINTS + "."; goto L_End; L_End: |