
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5392 54d463be-8e91-2dee-dedb-b68131a5f0ec
85 lines
2.9 KiB
Plaintext
85 lines
2.9 KiB
Plaintext
//===== 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;
|
|
}
|