diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-02-22 17:50:24 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2023-02-22 17:50:24 +0100 |
commit | 72d0141b657afcd4254066ef9ccf0cb40fe17959 (patch) | |
tree | 04f4fb62e24964bca503c19be17063ed9847929c | |
parent | ec4bf281e1d8f6309b5ede350175aa4fb814a053 (diff) | |
download | serverdata-72d0141b657afcd4254066ef9ccf0cb40fe17959.tar.gz serverdata-72d0141b657afcd4254066ef9ccf0cb40fe17959.tar.bz2 serverdata-72d0141b657afcd4254066ef9ccf0cb40fe17959.tar.xz serverdata-72d0141b657afcd4254066ef9ccf0cb40fe17959.zip |
Rework Nahrec mylarin/savior logic to no longer require code reading in
order to obtain a savior blueprint.
poppet did not know about this possibility.
-rw-r--r-- | npc/017-5/nahrec.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/017-5/nahrec.txt b/npc/017-5/nahrec.txt index da6a157b5..3dfa2a8af 100644 --- a/npc/017-5/nahrec.txt +++ b/npc/017-5/nahrec.txt @@ -62,7 +62,7 @@ function NahrecMain { l("Can you craft Chainmail?"), l("Can you craft Light Platemail?"), l("Can you craft Warlord Plate?"), - rif(countitem(MylarinDust) && !NAHREC_RECIPE, l("Can you craft Savior Equipment?")), + rif(NAHREC_MYLARIN_QUERY && !NAHREC_RECIPE, l("Can you craft Savior Equipment?")), l("Can you craft Chainmail Skirt?"), l("Do you know something about 'Mylarin Dust'?"), l("Nevermind, bye!"); @@ -125,8 +125,9 @@ function Mylarin { next; mesq l("It has eluded so many craftsmiths, who knows what can be done with that!"); next; - mesq l("I can make some stuff with it, but I have no idea where it can be found. Mylarin dust... amazing."); + mesq l("I can make some savior equipment with it, but I have no idea where it can be found. Mylarin dust... amazing."); next; + NAHREC_MYLARIN_QUERY = true; return; } |