diff options
Diffstat (limited to 'npc/002-1/alige.txt')
-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; |