diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-30 11:04:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-30 11:04:58 -0300 |
commit | 0ad16ca7740117cad93dc638b6caf87899cead80 (patch) | |
tree | f77600c4796decdf268325d64ca2f10bdd6d8e1e /npc/012-1/luffyx.txt | |
parent | 69867205bef796b30ed68234936886480e8c388c (diff) | |
download | serverdata-0ad16ca7740117cad93dc638b6caf87899cead80.tar.gz serverdata-0ad16ca7740117cad93dc638b6caf87899cead80.tar.bz2 serverdata-0ad16ca7740117cad93dc638b6caf87899cead80.tar.xz serverdata-0ad16ca7740117cad93dc638b6caf87899cead80.zip |
Cocktails required
Diffstat (limited to 'npc/012-1/luffyx.txt')
-rw-r--r-- | npc/012-1/luffyx.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/012-1/luffyx.txt b/npc/012-1/luffyx.txt index 6034d55d6..fd0cf052d 100644 --- a/npc/012-1/luffyx.txt +++ b/npc/012-1/luffyx.txt @@ -27,7 +27,7 @@ L_SummerQuest: mesq l("Hey, do you know what is good on summer? @@!", getitemlink(LuffyxSummerShorts)); next; mesn; - mesq l("What about you bring me 100 @@ and 30 @@?", getitemlink(RedApple), getitemlink(MoubooSteak)); + mesq l("What about you bring me 60 @@, 40 @@ and 20 @@?", getitemlink(CactusCocktail), getitemlink(AppleCocktail), getitemlink(CherryCocktail)); next; select l("Not now, thanks"), @@ -38,13 +38,15 @@ L_SummerQuest: goto L_Main; if (@menu == 2) { if ( - countitem(RedApple) < 100 || - countitem(MoubooSteak) < 30 + countitem(CherryCocktail) < 20 || + countitem(CactusCocktail) < 60 || + countitem(AppleCocktail) < 40 ) goto L_Lying; inventoryplace LuffyxSummerShorts, 1; - delitem RedApple, 100; - delitem MoubooSteak, 30; + delitem CherryCocktail, 20; + delitem AppleCocktail, 40; + delitem CactusCocktail, 60; getitem LuffyxSummerShorts, 1; setq SQuest_Summer, 1; mesn; |