diff options
Diffstat (limited to 'npc/003-6/cyndala.txt')
-rw-r--r-- | npc/003-6/cyndala.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-6/cyndala.txt b/npc/003-6/cyndala.txt index d4410df3a..8569c4975 100644 --- a/npc/003-6/cyndala.txt +++ b/npc/003-6/cyndala.txt @@ -17,7 +17,7 @@ l("Seek a colorant for that material: Cotton, cashmere, leather, Lazurite..."), l("Once you have the appropriate colorant for the item, ##bdrag the colorant##b to the material."), l("Example:"), - l("Drag and drop a @@ in a @@, and you will obtain a @@.", getitemlink(RedCottonDye), getitemlink(ArtisTankTop), getitemlink(ArtisTankTop, RedCottonDye)), + l("Drag and drop a @@ in a @@, and you will obtain a @@.", getitemlink(RedDye), getitemlink(ArtisTankTop), getitemlink(ArtisTankTop, RedDye)), l("Dye cards are not the only thing which exist, but they are the coolest!"); } @@ -31,8 +31,8 @@ if (@inventorylist_card1[.@item_index] != 0) { - if ((@inventorylist_card1[.@item_index] > YellowCottonDye) || - (@inventorylist_card1[.@item_index] < CrimsonCashmereDye)) + if ((@inventorylist_card1[.@item_index] > YellowDye) || + (@inventorylist_card1[.@item_index] < CrimsonDye)) { return false; } @@ -113,7 +113,7 @@ mes "slot " + str(.@i) + " = " + str(getcardbyindex(.@item, .@i)); } mes str(@inventorylist_card1[.@item]); - mes str(YellowCottonDye); + mes str(YellowDye); mes "item options:"; for (.@i = 0; .@i < 5; .@i ++) { |