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 9296cd0bb..b0876a50e 100644 --- a/npc/003-0-1/guards.txt +++ b/npc/003-0-1/guards.txt @@ -7,6 +7,8 @@ 003-0-1,50,24,0 script Guard#00301A NPC_BRGUARD_SPEAR,{ if (getgmlevel()) goto L_Sponsor; + if ($FIRESOFSTEAM) + goto L_Steam; mesn; mesq l("Past this grates, is the Magic Council Room."); @@ -27,6 +29,16 @@ L_Sponsor: closeclientdialog; close; +L_Steam: + mesn; + mesq l("The Council is not in session, it has dispersed since Andrei Sakar went to an expedition to Artis. However, it was decided to allow others inside."); + mesc l("Warp to Council room?"); + if (askyesno() == ASK_YES) { + warp "003-0-2", 34, 42; + } + closeclientdialog; + close; + OnInit: .distance=4; end; |