diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-19 13:52:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-19 13:52:58 -0300 |
commit | f70e1f1a7c7d676c2ca758db5371bda67e89d974 (patch) | |
tree | 8f028dc8860d03b7ba37658d7751f938123188dc | |
parent | c7f59ba6e0ddcd0e28c1b19a299e6e14c890d141 (diff) | |
download | serverdata-f70e1f1a7c7d676c2ca758db5371bda67e89d974.tar.gz serverdata-f70e1f1a7c7d676c2ca758db5371bda67e89d974.tar.bz2 serverdata-f70e1f1a7c7d676c2ca758db5371bda67e89d974.tar.xz serverdata-f70e1f1a7c7d676c2ca758db5371bda67e89d974.zip |
Parua: Adjust the reward based on difficulty setting.
-rw-r--r-- | world/map/npc/029-3/parua.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/world/map/npc/029-3/parua.txt b/world/map/npc/029-3/parua.txt index 0abc5db2..43dda09c 100644 --- a/world/map/npc/029-3/parua.txt +++ b/world/map/npc/029-3/parua.txt @@ -401,9 +401,13 @@ L_IdleCheckPassed: OnReward: if (isdead()) end; - getexp 25000, 0; - set BOSS_POINTS, BOSS_POINTS + 100; - message strcharinfo(0), "You gain 100 Boss Points giving you a total of " + BOSS_POINTS + "."; + set @bp, 100 * 2200 / $@FIGHT_CAVE_MAX_LEVEL; + set @xp, 100000 * 2200 / $@FIGHT_CAVE_MAX_LEVEL; + getexp @xp, 0; + set BOSS_POINTS, BOSS_POINTS + @bp; + message strcharinfo(0), "You gain "+ @bp +" Boss Points giving you a total of " + BOSS_POINTS + "."; + set @bp, 0; + set @xp, 0; goto L_CleanUp_Player; } |