diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-04-20 23:01:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-04-20 23:01:10 -0300 |
commit | d91cc72896f0aff6b731286606a09b89a722dd66 (patch) | |
tree | a7ed4cccdd583e9c19a4c0edd6c60e9ff7eb9a4d /npc/003-0-1/guards.txt | |
parent | cb29b4ed730c770887d9da017754d62afa7d719c (diff) | |
download | serverdata-d91cc72896f0aff6b731286606a09b89a722dd66.tar.gz serverdata-d91cc72896f0aff6b731286606a09b89a722dd66.tar.bz2 serverdata-d91cc72896f0aff6b731286606a09b89a722dd66.tar.xz serverdata-d91cc72896f0aff6b731286606a09b89a722dd66.zip |
Make High Council Room more lively.
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."); |