diff options
Diffstat (limited to 'world/map/npc/027-7')
-rw-r--r-- | world/map/npc/027-7/general_razha.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/world/map/npc/027-7/general_razha.txt b/world/map/npc/027-7/general_razha.txt index f331d95c..137cb139 100644 --- a/world/map/npc/027-7/general_razha.txt +++ b/world/map/npc/027-7/general_razha.txt @@ -9,7 +9,7 @@ set @RAZHA_SOUL_REQ, 3; set @RAZHA_DISEASED_HEARTS_REQ, 5; - set @RAZHA_UNDEAD_EYE_REQ, 3; + set @RAZHA_UNDEAD_EYE_REQ, 1; set @RAZHA_UNDEAD_EAR_REQ, 2; set @minlevel, 70; @@ -204,8 +204,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 < 100) goto L_Bonus; + set BOSS_POINTS, BOSS_POINTS + 40; + message strcharinfo(0), "You gain 40 Boss Points giving you a total of " + BOSS_POINTS + "."; + goto L_End; + +L_Bonus: set BOSS_POINTS, BOSS_POINTS + 50; - message strcharinfo(0), "You gain 50 Boss Points giving you a total of " + BOSS_POINTS + "."; + message strcharinfo(0), "You gain 40+10 Boss Points giving you a total of " + BOSS_POINTS + "."; goto L_End; L_End: |