diff options
Diffstat (limited to 'npc/020-7/elias.txt')
-rw-r--r-- | npc/020-7/elias.txt | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/npc/020-7/elias.txt b/npc/020-7/elias.txt index 36ff85936..51b694325 100644 --- a/npc/020-7/elias.txt +++ b/npc/020-7/elias.txt @@ -27,14 +27,23 @@ OnTouch: } 020-7,40,41,0 script Elias NPC_BLUESAGEWORKER_MA,{ + mesn; + mesq l("Hello, and welcome to Blue Sage's Residence, Library, and Nivalis Townhall."); + // TODO + .@q=getq(NivalisQuest_BlueSage); + if (.@q) + close; + next; + mesn; + mesq l("Due to a recent incident involving slimes, the building is closed to public visits."); .@q=getq(General_Narrator); - if (.@q < 10) { - npctalk3 l("ERROR/TODO: Explain that library and residence is off-limits"); - } else { - npctalk3 l("ERROR/TODO: Grant access to Blue Sage Library after showing Rakinorf recommendation letter."); - } + select + l("That's sad to hear."), + rif(.@q == 10, l("I have a letter from Rakinorf.")), + l("What happened?"); + mes ""; goodbye; - end; + close; OnAccessDenied: npctalk3 l("You can't go in there!"); |