diff options
Diffstat (limited to 'npc/021-1')
-rw-r--r-- | npc/021-1/yeti.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/021-1/yeti.txt b/npc/021-1/yeti.txt index a24c83d6d..8eed60dc0 100644 --- a/npc/021-1/yeti.txt +++ b/npc/021-1/yeti.txt @@ -96,10 +96,10 @@ L_Assigned: L_Report: mesn; - mesq l("Did you brought us a kind gift of good will, on the worth of 60 @@, to offer to our King?", getitemlink(MoubooSteak)); + mesq l("Did you brought us a kind gift of good will, on the worth of %d %s, to offer to our King?", 50, getitemlink(MoubooSteak)); next; select - rif(countitem(MoubooSteak) >= 60, l("Yes, here they are.")), // Demure was here + rif(countitem(MoubooSteak) >= 50, l("Yes, here they are.")), // Demure was here l("Not yet."); mes ""; if (@menu == 2) { @@ -107,7 +107,7 @@ L_Report: mesq l("Then please bring me this, so I can help you back."); close; } - delitem MoubooSteak, 60; + delitem MoubooSteak, 50; getexp 120000, 0; // roughly 30% from needed EXP. This quest IS boring. setq NivalisQuest_Cindy, 3; mesn; |