diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-07-07 22:20:25 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-07-07 22:20:25 +0000 |
commit | dba84e72701e79ae648a290d9425b664abc4f8e0 (patch) | |
tree | f1f96787a8f30a2a04cdb3fcdc8af9b76af97bcd /npc | |
parent | 922171bd45fdcd19cdb8fcf522bcf068faf38a69 (diff) | |
download | serverdata-dba84e72701e79ae648a290d9425b664abc4f8e0.tar.gz serverdata-dba84e72701e79ae648a290d9425b664abc4f8e0.tar.bz2 serverdata-dba84e72701e79ae648a290d9425b664abc4f8e0.tar.xz serverdata-dba84e72701e79ae648a290d9425b664abc4f8e0.zip |
add exp + better list of item required
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-1/luffyx.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/012-1/luffyx.txt b/npc/012-1/luffyx.txt index 96ac80a96..baf8f919c 100644 --- a/npc/012-1/luffyx.txt +++ b/npc/012-1/luffyx.txt @@ -27,7 +27,11 @@ L_SummerQuest: mesq l("Hey, do you know what is good on summer? @@!", getitemlink(LuffyxSummerShorts)); next; mesn; - mesq l("What about you bring me 60 @@, 40 @@ and 20 @@? And a @@!", getitemlink(CactusCocktail), getitemlink(AppleCocktail), getitemlink(CherryCocktail), getitemlink(JeansShorts)); + mes l("What about you bring me:"); + mes l("@@/60 @@", countitem(CactusCocktail), getitemlink(CactusCocktail)); + mes l("@@/40 @@", countitem(AppleCocktail), getitemlink(AppleCocktail)); + mes l("@@/20 @@", countitem(CherryCocktail), getitemlink(CherryCocktail)); + mes l("@@/1 @@", countitem(JeansShorts), getitemlink(jeansShorts)); next; select l("Not now, thanks"), @@ -49,6 +53,7 @@ L_SummerQuest: delitem CactusCocktail, 60; delitem JeansShorts, 1; getitem LuffyxSummerShorts, 1; + getexp 10000, 60; setq SQuest_Summer, 1; mesn; mesq l("Yay yay! Many thanks! Here, take the reward as promised!"); |