diff options
-rw-r--r-- | npc/018-2-1/dustman.txt | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/npc/018-2-1/dustman.txt b/npc/018-2-1/dustman.txt index 745cf7b89..e361768b2 100644 --- a/npc/018-2-1/dustman.txt +++ b/npc/018-2-1/dustman.txt @@ -36,16 +36,26 @@ L_COD: mes ""; - mesn; - mesq l("Hey, do you know the ##BCall Of Dusty##b event?"); - next; + if (.@cod < 1) { + mesn; + mesq l("Hey, do you know the ##BCall Of Dusty##b event?"); + next; + setq LoFQuest_COD, 1; + } mesn; mesq l("Just @@ ago, thiefs stole Pihro & Pyndragon weapons.", FuzzyTime(1542570030)); next; - mesn; - mesq l("Pyndragon said he'll do a @@ to however reduces them to dust. Interested?", getitemlink(Dustynator)); // BottledDust, Dustynator - mesc l("Note: Dustynator is a high level weapon. You might not have enough level to use it yet."); - next; + if (.@cod < 2) { + mesn; + mesq l("Pyndragon said he'll do a @@ to however reduces them to dust. Interested?", getitemlink(Dustynator)); // BottledDust, Dustynator + mesc l("Note: Dustynator is a high level weapon. You might not have enough level to use it yet."); + next; + } else { + mesn; + mesq l("Well, you already got the Dustynator, but you might want to collect more @@. They keep coming back, after all.", getitemlink(BottledDust)); + mesc l("Note: Killing enemies there with the Dustynator grants more dusty in a bottle."); + next; + } if (askyesno() == ASK_YES) { mes ""; mesn; |