diff options
Diffstat (limited to 'npc/functions/siege.txt')
-rw-r--r-- | npc/functions/siege.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index 1a0d92dbe..bf8d8ce0b 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -190,3 +190,24 @@ function script siege_cast { return; } + +// Utility NPC +- script #SiegeCtrl NPC_HIDDEN,{ + end; + +// Boss Death Labels +OnLieutenantDeath: + getitem StrangeCoin, 1; + mapannounce(getmap(), l("##2The Monster Lieutenant was defeated by @@!", strcharinfo(0)), bc_map); + $MK_TEMPVAR+=1; + end; + +OnColonelDeath: + getitem StrangeCoin, 5; + $MOST_HEROIC$=strcharinfo(0); + mapannounce(getmap(), l("##2The Monster Colonel was defeated by @@!", strcharinfo(0)), bc_map); + $MK_TEMPVAR+=10; + end; + +} + |