diff options
Diffstat (limited to 'npc/029-0')
-rw-r--r-- | npc/029-0/event.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/029-0/event.txt b/npc/029-0/event.txt index cd172418a..e2e671100 100644 --- a/npc/029-0/event.txt +++ b/npc/029-0/event.txt @@ -235,7 +235,9 @@ OnMinute02: 003-0-2,34,21,0 script Alliance Officer NPC_HALBERDBARBARIAN,{ mesn; - mesq l("Good %s, %s. The council is not in session right now.", (is_night() ? l("evening") : l("morning")), lg("peasant")); + mesq l("Good %s, %s. The council is not in session right now.", + (is_night() ? l("evening") : l("morning")), + (strcharinfo(0) == $MOST_HEROIC$ ? lg("hero") : lg("peasant"))); if (($BETASERVER || debug) && BaseLevel < 60 && !#BETA_REVIVE) goto L_PowerUp; close; @@ -337,8 +339,10 @@ L_PowerUp: OnInit: .distance=4; + /* if (!$BETASERVER && !debug) disablenpc .name$; + */ end; } |