diff options
Diffstat (limited to 'npc/024-1')
-rw-r--r-- | npc/024-1/guard.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt index c668d7ca6..71ac1dc92 100644 --- a/npc/024-1/guard.txt +++ b/npc/024-1/guard.txt @@ -5,6 +5,10 @@ // Controls access to Frostia. 024-1,93,73,0 script Frostia Guard NPC_ELF,{ + // Main Quest Have Precedence + if (getq(General_Narrator) == 11) + goto L_MainQuest; + if (BaseLevel < 40) goto L_Unallowed; if (Class == Elven) @@ -37,6 +41,14 @@ L_Unallowed: close; +L_MainQuest: + mesc b(l(".:: Main Quest 4-1 ::.")), 3; + msObjective(BaseLevel >= 40, l("* @@/@@ Base Level", BaseLevel, 40)); + mesc l("* Deliver Nikolai's Letter to Frostia Mayor"), 9; + mes ""; + mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1; + close; + OnInit: .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, WarlordHelmet); |