diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-28 16:06:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-28 16:06:14 -0300 |
commit | 59eb64fb145ecaf0ee405f77460d6366acbc8b7b (patch) | |
tree | c2c84cba9d45da72671c10eadeee5e45ad1e38c3 | |
parent | da5c5dad4111c7d3c9eace1b06d9b23025b514dd (diff) | |
download | serverdata-59eb64fb145ecaf0ee405f77460d6366acbc8b7b.tar.gz serverdata-59eb64fb145ecaf0ee405f77460d6366acbc8b7b.tar.bz2 serverdata-59eb64fb145ecaf0ee405f77460d6366acbc8b7b.tar.xz serverdata-59eb64fb145ecaf0ee405f77460d6366acbc8b7b.zip |
Actually give +2% exp/gp so when you max rebirth, it is a total +10% bonusr13.3+1_20210401
-rw-r--r-- | npc/025-1/phoenix.txt | 2 | ||||
-rw-r--r-- | npc/functions/util.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/025-1/phoenix.txt b/npc/025-1/phoenix.txt index bb95261c3..f3dc8a318 100644 --- a/npc/025-1/phoenix.txt +++ b/npc/025-1/phoenix.txt @@ -52,7 +52,7 @@ mes l("* +3 Inventory Slots")+" ##1##BWIP##b##0"; mes l("* +1 in all attributes, permanently"); mes l("* +1 Magic Skill Point"); - mes l("* +%d%% EXP Gain and Drop Chance, permanently", 1); + mes l("* +%d%% EXP Gain and Drop Chance, permanently", 2); mes l("* 1 %s", getitemlink(SupremeGift)); mes l("* 1 Trait"); if (BaseLevel < .@blvl) { diff --git a/npc/functions/util.txt b/npc/functions/util.txt index fb138de01..5102f9430 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -1134,7 +1134,7 @@ function script NewcomerEXPDROPUP { .@BONUS=max(1, .@BONUS); // Rebirth } else { - .@BONUS=REBIRTH*1; + .@BONUS=REBIRTH*2; } // Defaults to 24 hours sc_end SC_CASH_PLUSEXP; |