diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/mkbot.txt | 1 | ||||
-rw-r--r-- | npc/functions/siege.txt | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/npc/functions/mkbot.txt b/npc/functions/mkbot.txt index 3074ade2b..1229dfd60 100644 --- a/npc/functions/mkbot.txt +++ b/npc/functions/mkbot.txt @@ -49,6 +49,7 @@ OnBourneAgain: Mobpt+=max(13500, rand2(10000, BaseLevel*90)); Mobpt = Mobpt + 165; //$MOST_HEROIC$=strcharinfo(0); + specialeffect(FX_FANFARE, AREA, getcharid(3)); } // We need to start over .bar=true; diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index 570991b12..33375d314 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -496,6 +496,7 @@ OnSergeantDeath: $@EXP_EVENT=rand2(1, 3); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; + specialeffect(FX_FANFARE, AREA, getcharid(3)); end; OnLieutenantDeath: @@ -506,6 +507,7 @@ OnLieutenantDeath: $@EXP_EVENT=rand2(4, 6); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; + specialeffect(FX_FANFARE, AREA, getcharid(3)); end; OnCaptainDeath: @@ -516,6 +518,7 @@ OnCaptainDeath: $@EXP_EVENT=rand2(7, 9); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; + specialeffect(FX_FANFARE, AREA, getcharid(3)); end; OnColonelDeath: @@ -526,6 +529,7 @@ OnColonelDeath: $@EXP_EVENT=rand2(10, 12); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; + specialeffect(FX_FANFARE, AREA, getcharid(3)); end; OnGeneralDeath: @@ -536,6 +540,7 @@ OnGeneralDeath: $@EXP_EVENT=rand2(13, 15); $@EXP_EVENT_TIME=1; donpcevent "@exprate::OnPlayerCall"; + specialeffect(FX_FANFARE, AREA, getcharid(3)); end; } |