diff options
Diffstat (limited to 'npc/003-0-1/guards.txt')
-rw-r--r-- | npc/003-0-1/guards.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/003-0-1/guards.txt b/npc/003-0-1/guards.txt index b1e04658c..0c34c5217 100644 --- a/npc/003-0-1/guards.txt +++ b/npc/003-0-1/guards.txt @@ -5,6 +5,8 @@ // Magic Council Guard 003-0-1,50,24,0 script Guard#00301A NPC_BRGUARD_SPEAR,{ + if ($MOST_HEROIC$ == strcharinfo(0)) + goto L_Hero; if (getgmlevel()) goto L_Sponsor; if ($FIRESOFSTEAM) @@ -22,6 +24,16 @@ mesc l("There's nothing in the Magic Council Room, though. It's just a perk."); close; +L_Hero: + mesn; + mesq l("Greetings, %s. Do you have business on the Alliance Council Room?", strcharinfo(0)); + mesc l("Warp to Council room?"); + if (askyesno() == ASK_YES) { + warp "003-0-2", 34, 42; + } + closeclientdialog; + close; + L_Sponsor: mesn; mesq l("Alliance members (sponsors) are allowed inside the Council Room."); |