diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/siege.txt | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index dfe48324f..7071a68f1 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -336,18 +336,37 @@ OnRespawn: end; // Boss Death Labels -OnLieutenantDeath: +OnSergeantDeath: $MK_TEMPVAR+=1; + getitem StrangeCoin, rand(1,5); + announce("##2The Monster Sergeant was defeated by "+strcharinfo(0)+"!", bc_all); + end; + +OnLieutenantDeath: + $MK_TEMPVAR+=3; getitem StrangeCoin, rand(5,10); announce("##2The Monster Lieutenant was defeated by "+strcharinfo(0)+"!", bc_all); end; +OnCaptainDeath: + $MK_TEMPVAR+=5; + getitem StrangeCoin, rand(10,15); + announce("##2The Monster Captain was defeated by "+strcharinfo(0)+"!", bc_all); + end; + OnColonelDeath: - $MK_TEMPVAR+=10; - getitem StrangeCoin, rand(15,25); + $MK_TEMPVAR+=7; + getitem StrangeCoin, rand(15,20); $MOST_HEROIC$=strcharinfo(0); announce("##2The Monster Colonel was defeated by "+strcharinfo(0)+"!", bc_all); end; +OnGeneralDeath: + $MK_TEMPVAR+=9; + getitem StrangeCoin, rand(20,25); + $MOST_HEROIC$=strcharinfo(0); + announce("##2The Monster General was defeated by "+strcharinfo(0)+"!", bc_all); + end; + } |