diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-06-29 22:21:55 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-06-29 22:21:55 +0000 |
commit | b9b80d4179594e817a1e3ca4641472ba4b72ee37 (patch) | |
tree | a6eb9dd9a0e096443be42207009d5137bdb084ff /npc/003-0-1/maxime.txt | |
parent | 3d79aa596fecd927d29083d3856d4f1bb36bf2ca (diff) | |
download | serverdata-b9b80d4179594e817a1e3ca4641472ba4b72ee37.tar.gz serverdata-b9b80d4179594e817a1e3ca4641472ba4b72ee37.tar.bz2 serverdata-b9b80d4179594e817a1e3ca4641472ba4b72ee37.tar.xz serverdata-b9b80d4179594e817a1e3ca4641472ba4b72ee37.zip |
tonori need 2 cac drink and 1 roasted
Diffstat (limited to 'npc/003-0-1/maxime.txt')
-rw-r--r-- | npc/003-0-1/maxime.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index 96b9c9704..9c46c127b 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -15,8 +15,8 @@ mesc l("@@/8 @@", countitem(Plushroom), getitemlink(Plushroom)); mesc l("@@/4 @@", countitem(MushroomSpores), getitemlink(MushroomSpores)); mesc l("@@/3 @@", countitem(ScorpionStinger), getitemlink(ScorpionStinger)); - mesc l("@@/2 @@", countitem(RoastedMaggot), getitemlink(RoastedMaggot)); - mesc l("@@/1 @@", countitem(CactusDrink), getitemlink(CactusDrink)); + mesc l("@@/2 @@", countitem(CactusDrink), getitemlink(CactusDrink)); + mesc l("@@/1 @@", countitem(RoastedMaggot), getitemlink(RoastedMaggot)); mesc l("@@/150 GP", format_number(Zeny)); next; select @@ -33,8 +33,8 @@ countitem(Plushroom) < 8 || countitem(MushroomSpores) < 4 || countitem(ScorpionStinger) < 3 || - countitem(RoastedMaggot) < 2 || - countitem(CactusDrink) < 1 || + countitem(CactusDrink) < 2 || + countitem(RoastedMaggot) < 1 || Zeny < 150) goto L_Missing; // 3~7 normaly, 4~10 during Summer @@ -43,8 +43,8 @@ delitem Plushroom, 8; delitem MushroomSpores, 4; delitem ScorpionStinger, 3; - delitem RoastedMaggot, 2; - delitem CactusDrink, 1; + delitem CactusDrink, 2; + delitem RoastedMaggot, 1; getitem TonoriDelight, rand(3,7); if (season() == SUMMER) { getitem TonoriDelight, rand(1,3); |