diff options
author | Reid <reidyaro@gmail.com> | 2012-11-02 21:24:54 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-11-02 21:36:40 +0100 |
commit | aa275da8e2c3bf75cc64d2c359d804128c114cfe (patch) | |
tree | 3b4a5448e6fa0b34a8f653a568e6d97b109020a4 /npc | |
parent | 34c413ab746254018d48c34353d0c3622a236a73 (diff) | |
download | clientdata-aa275da8e2c3bf75cc64d2c359d804128c114cfe.tar.gz clientdata-aa275da8e2c3bf75cc64d2c359d804128c114cfe.tar.bz2 clientdata-aa275da8e2c3bf75cc64d2c359d804128c114cfe.tar.xz clientdata-aa275da8e2c3bf75cc64d2c359d804128c114cfe.zip |
Change items need on chef gado quest.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-2-1/chefgado.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index c88ea797..3fedfa8e 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -64,14 +64,14 @@ l_Rude: mes ""; mesq l("... Welcome onboard cutie! I just realized I need delicious ingredients to prepare a... a special recipe."); next; - mesq l("I only need 1 @@, 1 @@ and...", getitemlink("PiouLegs"), getitemlink("Croconut")); + mesq l("I only need 2 @@, 1 @@, 1 @@ and...", getitemlink("PiouLegs"), getitemlink("Croconut"), getitemlink("Aquada")); next; - mesq l("... and 1 @@.", getitemlink("Aquada")); + mesq l("... and 1 @@.", getitemlink("SeaDrops")); next; menu l("Sure, why not?"), l_Sure, - l("Aquada!? I will not help you with your evil plan!"), -; + l("Sea Drops!? I will not help you with your evil plan!"), -; close; @@ -87,7 +87,7 @@ l_QuestAccepted: mesq l("Have you collected all the ingredients for my recipe? The special one too?"); next; - if (countitem("PiouLegs") > 0 && countitem("Croconut") > 0 && countitem("Aquada") > 0) goto l_Collected; + if (countitem("PiouLegs") > 1 && countitem("Croconut") > 0 && countitem("Aquada") > 0 && countitem("SeaDrops") > 0) goto l_Collected; menu l("Not yet. I will be back soon."), -; @@ -98,9 +98,10 @@ l_Collected: menu l("All your... fresh ingredients are ready to be cooked."), -; - delitem "PiouLegs", 1; + delitem "PiouLegs", 2; delitem "Croconut", 1; delitem "Aquada", 1; + delitem "SeaDrops", 1; setq ShipQuests_ChefGado, 2; mes ""; |