diff options
Diffstat (limited to 'world/map/npc/027-6/general_krukan.txt')
-rw-r--r-- | world/map/npc/027-6/general_krukan.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/world/map/npc/027-6/general_krukan.txt b/world/map/npc/027-6/general_krukan.txt index 1c2ff95f..a685be16 100644 --- a/world/map/npc/027-6/general_krukan.txt +++ b/world/map/npc/027-6/general_krukan.txt @@ -200,8 +200,14 @@ OnReward: set @bonus, (BaseLevel/4); set DailyQuestBonus, DailyQuestBonus + @bonus; message strcharinfo(0), "You feel a temporary rush of power and zest for action. " + @bonus + " daily bonus gained." ; + if (BaseLevel < 90) goto L_Bonus; + set BOSS_POINTS, BOSS_POINTS + 20; + message strcharinfo(0), "You gain 20 Boss Points giving you a total of " + BOSS_POINTS + "."; + goto L_End; + +L_Bonus: set BOSS_POINTS, BOSS_POINTS + 25; - message strcharinfo(0), "You gain 25 Boss Points giving you a total of " + BOSS_POINTS + "."; + message strcharinfo(0), "You gain 20+5 Boss Points giving you a total of " + BOSS_POINTS + "."; goto L_End; L_End: |