summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-05-23 22:05:45 -0300
committerJesusaves <cpntb1@ymail.com>2019-05-23 22:05:45 -0300
commite31d15407908c90fac899f0200b854d7793a3966 (patch)
treebbb14dd8ec7f682e29beea0bc4d4ad849809380b /npc
parentff47c0a3d923353a66b40f7f460a35871452091a (diff)
downloadserverdata-e31d15407908c90fac899f0200b854d7793a3966.tar.gz
serverdata-e31d15407908c90fac899f0200b854d7793a3966.tar.bz2
serverdata-e31d15407908c90fac899f0200b854d7793a3966.tar.xz
serverdata-e31d15407908c90fac899f0200b854d7793a3966.zip
Monster Staff labels
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/siege.txt25
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;
+
}