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
|
//===== eAthena Script =======================================
//= Blacksmith Skills Quests
//===== By: ==================================================
//= Lupus, Reddozen
//===== Current Version: =====================================
//= 1.3a
//===== Compatible With: =====================================
//= eAthena Revision 3800+
//===== Description: =========================================
//= Temp quests for new skills for 2nd classes
//===== Additional Comments: =================================
//= 1.0 for fully working skills only [Lupus]
//= 1.1 Added more new skill quests for more classes [Lupus]
//= Somehow eA engine doesn't let you keep learn't skill V_V'
//= 1.2 Added to correct locations, correct NPC's, fixed
//= some of the items required and made them into real
//= quests. [Reddozen]
//= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
//= 1.3a fixed an item ID typo, thx 2Spiritual Kid
//= 1.3b Splitted into different files [DracoRPG]
//============================================================
//============================================================
// ALCHEMIST - ELEMENTAL POTION CREATION
//============================================================
yuno_in04.gat,33,108,5 script Pislik 750,{
mes "[Pislik]";
if(BaseJob!=Job_Alchem) goto L_noalche;
if(countitem(7434)) goto L_alreadyhave;//Items: Elemental_Potion_Creation_Guide,
if(JobLevel<40) goto L_nojob;
mes "I'll teach you all I know, but";
mes "you have to bring me some things";
mes "first.";
mes "5 Yellow Gemstones";
mes "4 Empty Potion Bottles";
mes "10 Hearts of Mermaid";
mes "10 Moth Dust";
mes "20 Maneater Blossoms";
mes "1 Geek Glasses";
next;
mes "[Pislik]";
mes "Let me check your items.";
next;
if(countitem(715)<5 || countitem(1093)<4 || countitem(950)<10 || countitem(1057)<10 || countitem(1032)<20 || countitem(2243)<1) goto L_noitems;//Items: Yellow_Gemstone, Empty_Potion_Bottle, Heart_of_Mermaid, Moth_Dust, Maneater_Blossom, Geek_Glasses,
delitem 715, 5;//Items: Yellow_Gemstone,
delitem 1093, 4;//Items: Empty_Potion_Bottle,
delitem 950, 10;//Items: Heart_of_Mermaid,
delitem 1057, 10;//Items: Moth_Dust,
delitem 1032, 20;//Items: Maneater_Blossom,
delitem 2243, 1;//Items: Geek_Glasses,
getitem 7434, 1;//Items: Elemental_Potion_Creation_Guide,
mes "[Pislik]";
mes "I see you have what you need,";
mes "so I'll give you my manual.";
close;
L_noitems:
mes "[Pislik]";
mes "You don't have enough items.";
mes "Come back when you have all";
mes "the required items for me.";
close;
L_noalche:
mes "Sorry, but my knowledge is only about alchemy.";
mes "I can't help you.";
emotion e_gasp;
close;
L_alreadyhave:
mes "I've already given you";
mes "my Elemental Potion Creation Guide...";
close;
L_nojob:
mes "Come back when you've learned";
mes "more about being an Alchemist.";
close;
}
|