diff options
-rw-r--r-- | npc/functions/siege.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index 380c49d80..b6d77f510 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -504,7 +504,7 @@ function script do_siege { OnRespawn: if (playerattached()) { getmapxy(.@m$,.@x,.@y,0); - if (rand(10000) <= $coinsrate) + if (rand(10000) <= 2 * $coinsrate) makeitem StrangeCoin, 1, .@m$, .@x, .@y; } end; @@ -513,7 +513,7 @@ OnRespawn: OnSergeantDeath: if ($GAME_STORYLINE == 2) $MK_TEMPVAR+=1; - getitem StrangeCoin, rand2(1,5); + getitem StrangeCoin, 1; announce("##2The Monster Sergeant was defeated by "+strcharinfo(0)+"!", bc_all); $@EXP_EVENT=rand2(1, 3); $@EXP_EVENT_TIME=1; @@ -524,7 +524,7 @@ OnSergeantDeath: OnLieutenantDeath: if ($GAME_STORYLINE == 2) $MK_TEMPVAR+=3; - getitem StrangeCoin, rand2(5,10); + getitem StrangeCoin, rand2(1, 2); announce("##2The Monster Lieutenant was defeated by "+strcharinfo(0)+"!", bc_all); $@EXP_EVENT=rand2(4, 6); $@EXP_EVENT_TIME=1; @@ -535,7 +535,7 @@ OnLieutenantDeath: OnCaptainDeath: if ($GAME_STORYLINE == 2) $MK_TEMPVAR+=5; - getitem StrangeCoin, rand2(10,15); + getitem StrangeCoin, rand2(1, 3); announce("##2The Monster Captain was defeated by "+strcharinfo(0)+"!", bc_all); $@EXP_EVENT=rand2(7, 9); $@EXP_EVENT_TIME=1; @@ -546,7 +546,7 @@ OnCaptainDeath: OnColonelDeath: if ($GAME_STORYLINE == 2) $MK_TEMPVAR+=7; - getitem StrangeCoin, rand2(15,20); + getitem StrangeCoin, rand2(1, 4); announce("##2The Monster Colonel was defeated by "+strcharinfo(0)+"!", bc_all); $@EXP_EVENT=rand2(10, 12); $@EXP_EVENT_TIME=1; @@ -557,7 +557,7 @@ OnColonelDeath: OnGeneralDeath: if ($GAME_STORYLINE == 2) $MK_TEMPVAR+=9; - getitem StrangeCoin, rand2(20,25); + getitem StrangeCoin, rand2(1, 5); announce("##2The Monster General was defeated by "+strcharinfo(0)+"!", bc_all); $@EXP_EVENT=rand2(13, 15); $@EXP_EVENT_TIME=1; |