diff options
Diffstat (limited to 'npc/002-1')
-rw-r--r-- | npc/002-1/chefgado.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/002-1/chefgado.txt b/npc/002-1/chefgado.txt index 89c9d5022..ea232eb21 100644 --- a/npc/002-1/chefgado.txt +++ b/npc/002-1/chefgado.txt @@ -54,7 +54,7 @@ L_Ask: L_Start: mes ""; mesn; - mesq l("Great, I need 5 @@. Remember a good food makes a good crew.",getitemlink("PiouLegs")); + mesq l("Great, I need 11 @@. Remember a good food makes a good crew.",getitemlink("PiouLegs")); setq ShipQuests_ChefGado, 1; mes ""; menu @@ -65,17 +65,17 @@ L_Start: L_Continue: setq ShipQuests_ChefGado, 1; mesn; - mesq l("Do you have the @@/5 @@ I requested? Sailors are getting hungry because you!",countitem("PiouLegs"),getitemlink("PiouLegs")); + mesq l("Do you have the @@/11 @@ I requested? Sailors are getting hungry because you!",countitem("PiouLegs"),getitemlink("PiouLegs")); mes ""; menu - rif(countitem("PiouLegs") >= 5, l("Yes, take them.")), L_Reward, + rif(countitem("PiouLegs") >= 11, l("Yes, take them.")), L_Reward, l("Not yet."), -; close; L_Reward: inventoryplace CreasedGloves, 1; - delitem PiouLegs, 5; + delitem PiouLegs, 11; getitem CreasedGloves, 1; setq ShipQuests_ChefGado,2; Zeny = Zeny + 100; |