diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-16 17:16:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-16 17:16:45 -0300 |
commit | ca5260325eb853f40dacec8061917e9b20935364 (patch) | |
tree | 2250aa07cbda5a32f1c29926e0f1c8b0594aa7cc | |
parent | 0af1415383233f1bf375043bae42db5e21f33568 (diff) | |
download | serverdata-ca5260325eb853f40dacec8061917e9b20935364.tar.gz serverdata-ca5260325eb853f40dacec8061917e9b20935364.tar.bz2 serverdata-ca5260325eb853f40dacec8061917e9b20935364.tar.xz serverdata-ca5260325eb853f40dacec8061917e9b20935364.zip |
Adjust EXP Boost on siege victory to their final values (as I've decided before)
-rw-r--r-- | npc/functions/siege.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index a0429d1dc..326d7baa6 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -445,7 +445,7 @@ OnLieutenantDeath: $MK_TEMPVAR+=3; getitem StrangeCoin, rand(5,10); announce("##2The Monster Lieutenant was defeated by "+strcharinfo(0)+"!", bc_all); - $@EXP_EVENT=rand2(102, 104); + $@EXP_EVENT=rand2(104, 106); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; end; @@ -455,7 +455,7 @@ OnCaptainDeath: $MK_TEMPVAR+=5; getitem StrangeCoin, rand(10,15); announce("##2The Monster Captain was defeated by "+strcharinfo(0)+"!", bc_all); - $@EXP_EVENT=rand2(103, 105); + $@EXP_EVENT=rand2(107, 109); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; end; @@ -466,7 +466,7 @@ OnColonelDeath: getitem StrangeCoin, rand(15,20); $MOST_HEROIC$=strcharinfo(0); announce("##2The Monster Colonel was defeated by "+strcharinfo(0)+"!", bc_all); - $@EXP_EVENT=rand2(104, 106); + $@EXP_EVENT=rand2(110, 112); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; end; @@ -477,7 +477,7 @@ OnGeneralDeath: getitem StrangeCoin, rand(20,25); $MOST_HEROIC$=strcharinfo(0); announce("##2The Monster General was defeated by "+strcharinfo(0)+"!", bc_all); - $@EXP_EVENT=rand2(105, 107); + $@EXP_EVENT=rand2(113, 115); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; end; |