diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-18 18:26:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-18 18:26:02 -0300 |
commit | 048f06dfbd0ce99847cf145638161f212b45d682 (patch) | |
tree | 4f107fd74130c95f9124e5198ad5a6f406fc6444 /npc/020-7 | |
parent | 2170d2312af238debbae1be7d2bd436384d339d3 (diff) | |
download | serverdata-048f06dfbd0ce99847cf145638161f212b45d682.tar.gz serverdata-048f06dfbd0ce99847cf145638161f212b45d682.tar.bz2 serverdata-048f06dfbd0ce99847cf145638161f212b45d682.tar.xz serverdata-048f06dfbd0ce99847cf145638161f212b45d682.zip |
Placeholders stage 2
Diffstat (limited to 'npc/020-7')
-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!"); |