diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-01 23:42:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-01 23:42:56 -0300 |
commit | a0a41b91a806a0ec8f50501743067e8d8479291b (patch) | |
tree | 94cfde4f8701cd4ef3471e55eab2ba44fd7be163 /npc/functions | |
parent | ddc98664f978196bf724e235162a55bc9896f376 (diff) | |
download | serverdata-a0a41b91a806a0ec8f50501743067e8d8479291b.tar.gz serverdata-a0a41b91a806a0ec8f50501743067e8d8479291b.tar.bz2 serverdata-a0a41b91a806a0ec8f50501743067e8d8479291b.tar.xz serverdata-a0a41b91a806a0ec8f50501743067e8d8479291b.zip |
Newcomer EXPDROPUP: Only 2/3 of EXP, and full bonus as drop.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 703e167a5..62e3a9eff 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -856,7 +856,7 @@ function script NewcomerEXPDROPUP { .@BONUS=max(1, .@BONUS); sc_end SC_CASH_PLUSEXP; sc_end SC_CASH_RECEIVEITEM; - sc_start SC_CASH_PLUSEXP, 7200000, .@BONUS; + sc_start SC_CASH_PLUSEXP, 7200000, .@BONUS*2/3; sc_start SC_CASH_RECEIVEITEM, 7200000, .@BONUS; return .@BONUS; } |