1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
//===== 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: set .@item,6279; break;
case 2: set .@item,6280; break;
case 3: set .@item,6281; break;
case 4: set .@item,6282; break;
case 5: set .@item,6283; break;
case 6: set .@item,6284; break;
case 7: set .@item,6285; break;
case 8: set .@item,11022; break;
case 9: set .@item,11023; break;
case 10: set .@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) {
set .@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;
}
|