diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-09 14:33:41 +0300 |
commit | 7c2407a738adce17b1ee61cae8b705f002b14656 (patch) | |
tree | 27d856a86bfe9d76edfab9759acf9240658e6bd8 /npc/re/merchants/alchemist.txt | |
parent | ad2413527a2204cf434226e62c9c8245025c0253 (diff) | |
download | hercules-7c2407a738adce17b1ee61cae8b705f002b14656.tar.gz hercules-7c2407a738adce17b1ee61cae8b705f002b14656.tar.bz2 hercules-7c2407a738adce17b1ee61cae8b705f002b14656.tar.xz hercules-7c2407a738adce17b1ee61cae8b705f002b14656.zip |
Remove conf dir.
Diffstat (limited to 'npc/re/merchants/alchemist.txt')
-rw-r--r-- | npc/re/merchants/alchemist.txt | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/npc/re/merchants/alchemist.txt b/npc/re/merchants/alchemist.txt deleted file mode 100644 index 0658126ff..000000000 --- a/npc/re/merchants/alchemist.txt +++ /dev/null @@ -1,117 +0,0 @@ -//===== Hercules Script ====================================== -//= Alchemist Shop -//===== By: ================================================== -//= rAthena Dev Team -//===== Current Version: ===================================== -//= 1.0 -//===== Description: ========================================= -//= [Official Conversion] -//= Merchants for Alchemist Materials and Manuals. -//===== Additional Comments: ================================= -//= 1.0 Split Geneticist shop from main file. [Euphy] -//= Updated dialogue to match the official script. -//============================================================ - -alde_alche,31,186,3 script Craft Book Merchant#alde 4_M_ALCHE_D,{ - mes "[Craft Book Merchant]"; - mes "Welcome."; - mes "I'm here to sell"; - mes "^0000FFspecial craft books^000000 for Geneticists."; - next; - mes "[Craft Book Merchant]"; - mes "Geneticists have some skills"; - mes "that require craft books to activate."; - next; - mes "[Craft Book Merchant]"; - mes "The more craft books you have,"; - mes "the more skills you can use."; - next; - mes "[Craft Book Merchant]"; - mes "Please understand that"; - mes "I specialize in the sale of these special books and"; - mes "I ^FF0000don't sell other items^000000."; - next; - mes "[Craft Book Merchant]"; - mes "Would you like to take a look at my craft books?"; - next; - if(select("Sure.:No.") == 2) { - mes "[Craft Book Merchant]"; - mes "Thank you for visiting my shop."; - mes "Please be safe on your travels."; - close; - } - if (checkweight(1201,1) == 0) { - mes "[Craft Book Merchant]"; - mes "I'm sorry, but your inventory is almost full."; - mes "Please empty your inventory first."; - close; - } - if (MaxWeight - Weight < 2500) { - mes "[Craft Book Merchant]"; - mes "Please empty your inventory first."; - close; - } - mes "[Craft Book Merchant]"; - mes "Okay then, here's the list of available craft books."; - next; - switch(select("[Apple Bomb Craft Book] 100,000 zeny:[Pineapple Bomb Craft Book] 100,000 zeny:[Coconut Bomb Craft Book] 100,000 zeny:[Melon Bomb Craft Book] 100,000 zeny:[Banana Bomb Craft Book] 100,000 zeny:[Plant Gene Cultivation Method] 100,000 zeny:[Superior Potion Craft Manual] 100,000 zeny:[Mix Cooking Book] 100,000 zeny:[Health Improvement Research Book] 100,000 zeny:[Vigor Drink Recipe] 100,000 zeny:Close")){ - case 1: .@item = 6279; break; - case 2: .@item = 6280; break; - case 3: .@item = 6281; break; - case 4: .@item = 6282; break; - case 5: .@item = 6283; break; - case 6: .@item = 6284; break; - case 7: .@item = 6285; break; - case 8: .@item = 11022; break; - case 9: .@item = 11023; break; - case 10: .@item = 11024; break; - case 11: - mes "[Craft Book Merchant]"; - mes "Thank you for your patronage."; - mes "Please come again."; - close; - } - mes "[Craft Book Merchant]"; - mes "^0000FF["+getitemname(.@item)+"] costs"; - mes "100,000 zeny."; - mes "How many would you like to purchase?"; - next; - input .@amount; - if (.@amount == 0) { - mes "[Craft Book Merchant]"; - mes "Would you like to see some different books?"; - close; - } - if (.@amount < 1 || .@amount > 99 ){ - mes "[Craft Book Merchant]"; - mes "You cannot purchase more than 100 at a time."; - close; - } - mes "[Craft Book Merchant]"; - mes "You've entered "+.@amount+"x ^0000FF["+getitemname(.@item)+"]^000000 to be purchased."; - mes "Would you like to continue?"; - next; - if (select("Yes:No") == 1) { - .@total = .@amount * 100000; - if (Zeny < .@total) { - mes "[Craft Book Merchant]"; - mes "I'm sorry, but you don't have enough money."; - close; - } - if (checkweight(.@item,.@amount) == 0){ - mes "[Craft Book Merchant]"; - mes "It doesn't seem like you can carry everything."; - mes "Please check the space in your inventory."; - close; - } - mes "[Craft Book Merchant]"; - mes "Thank you for your patronage."; - Zeny -= .@total; - getitem .@item,.@amount; - close; - } - mes "[Craft Book Merchant]"; - mes "Please take your time"; - mes "before you make your decision."; - close; -} |