diff options
Diffstat (limited to 'npc/007-1/torches.txt')
-rw-r--r-- | npc/007-1/torches.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/007-1/torches.txt b/npc/007-1/torches.txt index 5dd82e217..d00009621 100644 --- a/npc/007-1/torches.txt +++ b/npc/007-1/torches.txt @@ -22,7 +22,7 @@ function script CheckTorch { if (getq2(TulimsharQuest_DarkInvocator) & $@TorchBits[@torch]) goto L_Empty; if (countitem(EverburnPowder) <= 0) { - dispbottom(l("I do not have Everburn Powder to lit the torch.")); + dispbottom(l("You need %s to light this torch."), getitemlink(EverburnPowder)); end; } setq2 TulimsharQuest_DarkInvocator, getq2(TulimsharQuest_DarkInvocator) | $@TorchBits[@torch]; @@ -65,7 +65,7 @@ L_TorchTally: delitem EverburnPowder, 1; if (@torch_count == 5) { - message strcharinfo(0), l("All torches are lit!"); + message strcharinfo(0), l("All torches are lit! Return to Zarkor."); //killmonsterall("007-1"); setq1 TulimsharQuest_DarkInvocator, 6; } |