diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-28 18:49:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-28 18:49:23 -0300 |
commit | 3d4cc7b6adfa50c2b22c774810ae32448e7d9711 (patch) | |
tree | 368dba030ff1639c6797d72d56efe3538c77011a /npc/003-3/malindou.txt | |
parent | db39e7e210590596cd58406d606958aa1c161997 (diff) | |
download | serverdata-3d4cc7b6adfa50c2b22c774810ae32448e7d9711.tar.gz serverdata-3d4cc7b6adfa50c2b22c774810ae32448e7d9711.tar.bz2 serverdata-3d4cc7b6adfa50c2b22c774810ae32448e7d9711.tar.xz serverdata-3d4cc7b6adfa50c2b22c774810ae32448e7d9711.zip |
Rebirth - The permanent experience bonus (5% per rebirth)
Diffstat (limited to 'npc/003-3/malindou.txt')
-rw-r--r-- | npc/003-3/malindou.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index 39ce3041d..3da53f9cb 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -536,8 +536,10 @@ OnPCBaseLvUpEvent: NewcomerEXPDROPUP(); break; case 20: - sc_end SC_CASH_PLUSEXP; - sc_end SC_CASH_RECEIVEITEM; + if (!REBIRTH) { + sc_end SC_CASH_PLUSEXP; + sc_end SC_CASH_RECEIVEITEM; + } break; case 25: if (#REFERRAL_PROG && BaseLevel == 25 && #REFERRAL_CTRL < 1) { @@ -603,7 +605,7 @@ OnPCLoginEvent: ALCReset(); // Newbie bonuses recalc - if (BaseLevel < 20) NewcomerEXPDROPUP(); + if (BaseLevel < 20 || REBIRTH) NewcomerEXPDROPUP(); // Daily rewards (The first with dialog interactions) daily_login_bonus_handler(); |