diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-21 19:25:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-21 19:25:13 -0300 |
commit | df6b5fdb6b555f91dbd37d883480b7e86de5505c (patch) | |
tree | af8f3475d0d7888ecab8778bdbdc226ebcfd855f /npc/003-1 | |
parent | 4e08d5e099cec08819505dbe21c0455bdc1e730c (diff) | |
download | serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.gz serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.bz2 serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.xz serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.zip |
Make Croconut Box weight half and require half croconuts.
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/sailors.txt | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/npc/003-1/sailors.txt b/npc/003-1/sailors.txt index e6ca095ea..2b3eec50e 100644 --- a/npc/003-1/sailors.txt +++ b/npc/003-1/sailors.txt @@ -60,11 +60,11 @@ L_Quest1: L_Report1: mesn; mes l("@@/1 @@", countitem(FishBox), getitemlink(FishBox)); - mes l("@@/1 @@", countitem(CroconutBox), getitemlink(CroconutBox)); - mes l("@@/2 @@", countitem(CottonCloth), getitemlink(CottonCloth)); + mes l("@@/2 @@", countitem(CroconutBox), getitemlink(CroconutBox)); + mes l("@@/3 @@", countitem(CottonCloth), getitemlink(CottonCloth)); if (countitem(FishBox) < 1 || - countitem(CroconutBox) < 1 || - countitem(CottonCloth) < 2) + countitem(CroconutBox) < 2 || + countitem(CottonCloth) < 3) close; next; select @@ -74,8 +74,8 @@ L_Report1: if (@menu == 2) close; if (countitem(FishBox) < 1 || - countitem(CroconutBox) < 1 || - countitem(CottonCloth) < 2) { + countitem(CroconutBox) < 2 || + countitem(CottonCloth) < 3) { mesn; mesq l("Liar. Where are the goods? Are you trying to cheat me?!"); next; @@ -91,8 +91,8 @@ L_Report1: } inventoryplace Dagger, 1, CottonShirt, 1; delitem FishBox, 1; // 7.500 GP → 3.750 GP - delitem CroconutBox, 1; // 12.000 GP → 10.600~11.800 GP - delitem CottonCloth, 2; // 2.000 GP + delitem CroconutBox, 2; // 12.000 GP → 10.600~11.800 GP + delitem CottonCloth, 3; // 2.000 GP getexp 1508, 15; Zeny=Zeny+3750; // Profit: 1800 GP → 2.400~1.200 GP getitem Dagger, 1; @@ -129,11 +129,11 @@ L_Quest2: L_Report2: mesn; mes l("@@/2 @@", countitem(FishBox), getitemlink(FishBox)); - mes l("@@/3 @@", countitem(CroconutBox), getitemlink(CroconutBox)); - mes l("@@/8 @@", countitem(CottonCloth), getitemlink(CottonCloth)); + mes l("@@/5 @@", countitem(CroconutBox), getitemlink(CroconutBox)); + mes l("@@/7 @@", countitem(CottonCloth), getitemlink(CottonCloth)); if (countitem(FishBox) < 2 || - countitem(CroconutBox) < 3 || - countitem(CottonCloth) < 8) + countitem(CroconutBox) < 5 || + countitem(CottonCloth) < 7) close; next; select @@ -143,8 +143,8 @@ L_Report2: if (@menu == 2) close; if (countitem(FishBox) < 2 || - countitem(CroconutBox) < 3 || - countitem(CottonCloth) < 8) { + countitem(CroconutBox) < 5 || + countitem(CottonCloth) < 7) { mesn; mesq l("Liar. Where are the goods? Are you trying to cheat me?!"); next; @@ -159,8 +159,8 @@ L_Report2: close; } delitem FishBox, 2; // 7.500 GP → 3.750 GP - delitem CroconutBox, 3; // 12.000 GP → 10.600~11.800 GP - delitem CottonCloth, 8; // 2.000 GP + delitem CroconutBox, 5; // 12.000 GP → 10.600~11.800 GP + delitem CottonCloth, 7; // 2.000 GP getexp 1508, 15; Zeny=Zeny+15750; // Profit: 1800 GP → 2.400~1.200 GP setq TulimsharQuest_Sailors, 4; |