diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-31 20:39:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-31 20:39:59 -0300 |
commit | c55932bb768e57739c8a65015216e9f94f8a7943 (patch) | |
tree | c4c1fc2352826bc57df0eac4a749d36fb65c4145 /npc/002-1 | |
parent | 18ce8f0b54a2d7dfb76c3082ebbac970f3e66d76 (diff) | |
download | serverdata-c55932bb768e57739c8a65015216e9f94f8a7943.tar.gz serverdata-c55932bb768e57739c8a65015216e9f94f8a7943.tar.bz2 serverdata-c55932bb768e57739c8a65015216e9f94f8a7943.tar.xz serverdata-c55932bb768e57739c8a65015216e9f94f8a7943.zip |
Save pipelines
Diffstat (limited to 'npc/002-1')
-rw-r--r-- | npc/002-1/alige.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/002-1/alige.txt b/npc/002-1/alige.txt index fc6351b98..f9a91fe0a 100644 --- a/npc/002-1/alige.txt +++ b/npc/002-1/alige.txt @@ -59,8 +59,8 @@ L_GoGo: mes l("* @@/8 @@", countitem(BottleOfTonoriWater), getitemlink(BottleOfTonoriWater)); mes l("* @@/6 @@", countitem(HastePotion), getitemlink(HastePotion)); mes l("* @@/6 @@", countitem(StrengthPotion), getitemlink(StrengthPotion)); - mes l("* @@/2 @@", countitem(YellowCottonDye), getitemlink(YellowCottonDye)); - mes l("* @@/2 @@", countitem(BlueCottonDye), getitemlink(BlueCottonDye)); + mes l("* @@/2 @@", countitem(YellowDye), getitemlink(YellowDye)); + mes l("* @@/2 @@", countitem(BlueDye), getitemlink(BlueDye)); mes l("* @@/7.500 GP", Zeny); next; // Temporary item. This four leaf amulet can be evolved: Bromenal < Iron < Golden < Crozenite @@ -114,8 +114,8 @@ L_Remember: mes l("* @@/8 @@", countitem(BottleOfTonoriWater), getitemlink(BottleOfTonoriWater)); mes l("* @@/6 @@", countitem(HastePotion), getitemlink(HastePotion)); mes l("* @@/6 @@", countitem(StrengthPotion), getitemlink(StrengthPotion)); - mes l("* @@/2 @@", countitem(YellowCottonDye), getitemlink(YellowCottonDye)); - mes l("* @@/2 @@", countitem(BlueCottonDye), getitemlink(BlueCottonDye)); + mes l("* @@/2 @@", countitem(YellowDye), getitemlink(YellowDye)); + mes l("* @@/2 @@", countitem(BlueDye), getitemlink(BlueDye)); mes l("* @@/7.500 GP", Zeny); next; // Temporary item. This four leaf amulet can be evolved: Bromenal < Iron < Golden < Crozenite @@ -131,8 +131,8 @@ L_Check: countitem(BottleOfTonoriWater) < 8 || countitem(HastePotion) < 6 || countitem(StrengthPotion) < 6 || - countitem(YellowCottonDye) < 2 || - countitem(BlueCottonDye) < 2) + countitem(YellowDye) < 2 || + countitem(BlueDye) < 2) goto L_Missing; if (Zeny < 7500) goto L_Poor; @@ -144,8 +144,8 @@ L_Check: delitem BottleOfTonoriWater, 8; delitem HastePotion, 6; delitem StrengthPotion, 6; - delitem YellowCottonDye, 2; - delitem BlueCottonDye, 2; + delitem YellowDye, 2; + delitem BlueDye, 2; Zeny = Zeny - 7500; getitem CrozeniteFourLeafAmulet, 1; getexp 2200, 50; |