summaryrefslogtreecommitdiff
path: root/npc/jobs/2-1/blacksmith.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/jobs/2-1/blacksmith.txt')
-rw-r--r--npc/jobs/2-1/blacksmith.txt1564
1 files changed, 534 insertions, 1030 deletions
diff --git a/npc/jobs/2-1/blacksmith.txt b/npc/jobs/2-1/blacksmith.txt
index f96a41a25..413fe69fd 100644
--- a/npc/jobs/2-1/blacksmith.txt
+++ b/npc/jobs/2-1/blacksmith.txt
@@ -1,18 +1,46 @@
-//===== rAthena Script =======================================
-// Blacksmith Job change Quest
-//===== By: ==================================================
-//= Masao
-//= Credits: Muad_Dib
-//===== Current Version: =====================================
-//= 1.0
-//===== Compatible With: =====================================
-//= Any rAthena SVN
-//===== Description: =========================================
-//= [Translated from the Official]
-//= Job change Quest from Merchant -> Blacksmith.
-//===== Additional Comments: =================================
-//= 1.0 Updated to latest available official file. [Masao]
-//============================================================
+//===== rAthena Script =======================================
+//= Blacksmith Quest
+//===== By: ==================================================
+//= EREMES THE CANIVALIZER(Aegis)
+//= Translated by: yoshiki.
+//= Converted by: Komurka.
+//= Optimized and further edited by kobra_k88.
+//= Further bugfixed and tested by Lupus
+//===== Current Version: =====================================
+//= 2.8
+//===== Compatible With: =====================================
+//= rAthena SVN
+//===== Description: =========================================
+//= [Aegis Conversion]
+//= Job Change quest for Blacksmith class.
+//===== Additional Comments: =================================
+//= Changed some npc names to the iRO names. Changed some variable
+//= names and labels. Edited some text.[kobra_k88]
+//= Removed "if(JobLevel > 48) goto higher". It was a left over line.
+//= Thx to "Decker".[kobra_k88]
+//= Fixed some typos, thanks to Riotblade [celest]
+//= 1.3-1.5 Added Baby Class support [Lupus]
+//= 1.6 Added a func which prevent advanced classes passing
+//= 2nd Job Quests again. It also guides adv classes where
+//= to go. [Lupus]
+//= 1.7 item quantity/ids typos fix
+//= 1.8 Moved the Quest to Einbroch [Poki#3]
+//= 2.0 Changed numbers to constants. [Vicious]
+//= 2.1 Removed Duplicates [Silent]
+//= 2.2 Merged Jfunc, changed job numbers to constants [Lupus]
+//= 2.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
+//= 2.4 Several bugfixes with the help of Barron-Monster. [L0ne_W0lf]
+//= 2.4a Changed a BaseJob to baseclass. [L0ne_W0lf]
+//= 2.4b Further bug fixes with teh hel of Barron-Monster. [L0ne_W0lf]
+//= 2.4c More fixes courtosy of Micktu. [L0ne_W0lf]
+//= 2.4d Fixed an incorrect answer in the quiz. (Trojal) [L0ne_W0lf]
+//= 2.4e Touched up a few issues as pointed out by Ultramage. [L0ne_W0lf]
+//= 2.5 Krongast is in Lighthalzen. (DarkValmir) [L0ne_W0lf]
+//= 2.6 Fixed 4 bugs [Lupus]
+//= 2.6a Typo fix [Yommy]
+//= 2.7 Added Quest Log commands. [Kisuka]
+//= 2.8 Removed the need for use of 'goto.' [L0ne_W0lf]
+//==============================================================
ein_in01,18,28,4 script Guildsman#BLS 731,{
if (Upper == 1) {
@@ -45,52 +73,62 @@ ein_in01,18,28,4 script Guildsman#BLS 731,{
mes "our craft. Our skills of melting metal into new weapons";
mes "and tools is truly a form of art!";
next;
- if (Class == Job_Baby || Class == Job_Novice) {
- mes "[Altiregen]";
- mes "First, you must become a Merchant before you can become a Blacksmith. Go to the city of Alberta to learn the Merchant trade.";
+ if (BaseClass == Job_Novice) {
+ if (sex == 0) {
+ mes "[Altiregen]";
+ mes "Oh~";
+ mes "what a very";
+ mes "pretty lady!";
+ mes "Are you interested in";
+ mes "becoming a Blacksmith?";
+ next;
+ mes "[Altiregen]";
+ mes "First, you must become a Merchant before you can become a Blacksmith. Go to the city of Alberta to learn the Merchant trade.";
+ close;
+ }
close;
}
- if (Class == Job_Swordman || Class == Job_Knight || Class == Job_Crusader) {
+ else if (BaseClass == Job_Swordman) {
mes "[Altiregen]";
mes "Oh, are you interested in having a weapon forged? I'm sorry to disappoint you, but I actually have a lot of business to attend to.";
close;
}
- if (Class == Job_Archer || Class == Job_Hunter || Class == Job_Dancer || Class == Job_Bard) {
+ else if (BaseClass == Job_Archer) {
mes "[Altiregen]";
mes "Oh...";
mes "There's not much we can offer you here. And you can't really help out around here unless you know how to make stuff...";
close;
}
- if (Class == Job_Mage || Class == Job_Wizard || Class == Job_Sage) {
+ else if (BaseClass == Job_Mage) {
mes "[Altiregen]";
mes "Oh? What's a magic user doing here? I'm surprised. Usually this kind of rough work is beneath you intellectual types.";
close;
}
- if (Class == Job_Acolyte || Class == Job_Priest || Class == Job_Monk) {
+ else if (BaseClass == Job_Acolyte) {
mes "[Altiregen]";
mes "Oh! Am I correct in assuming you're a member of the Clergy? Would you please bless me before you leave!";
close;
}
- if (Class == Job_Thief || Class == Job_Assassin || Class == Job_Rogue) {
+ else if (BaseClass == Job_Thief) {
mes "[Altiregen]";
mes "I'm sorry...";
mes "But there really isn't anything for you to steal here. Well, there are the Daggers we keep in the back, but...";
close;
}
- if (Class == Job_Alchemist) {
+ else if (BaseJob == Job_Alchemist) {
mes "[Altiregen]";
mes "So how's the pharmacy business going on recently?";
mes "Well, my forging business does not seem to grow any longer.";
close;
}
- if (Class == Job_Baby_Blacksmith || Class == Job_Blacksmith) {
+ else if (BaseJob == Job_Blacksmith) {
mes "[Altiregen]";
mes "Oh! Long time no see.";
mes "Have you come to purchase supplies from Christopher? These days I'm stuck behind this desk. My body's itching to strike the ol' anvil.";
close;
}
- if (Class == Job_Baby_Merchant || Class == Job_Merchant) {
- if (SkillPoint != 0) {
+ else if (BaseJob == Job_Merchant) {
+ if (SkillPoint) {
mes "[Altiregen]";
mes "You can't change to the Blacksmith Job Class without first using all your skill points. Please come back after wisely using your skill points.";
close;
@@ -103,14 +141,14 @@ ein_in01,18,28,4 script Guildsman#BLS 731,{
mes "If you're interested, fill out this application with your name";
mes "and Job Level.";
next;
- switch (select("Fill out Application.:What are the requirements?:Um, I need to think about it.")) {
+ switch(select("Fill out Application.:What are the requirements?:Um, I need to think about it.")) {
case 1:
- if (SkillPoint != 0) {
+ if (SkillPoint) {
mes "[Altiregen]";
mes "You can't change to the Blacksmith Job Class without first using all your skill points. Please come back after wisely using your skill points.";
close;
}
- if ((JobLevel > 39) && (BSMITH_Q == 0)) {
+ else if (JobLevel > 39 && BSMITH_Q == 0) {
mes "[Altiregen]";
mes "Hmmm...";
mes "Looks like you";
@@ -133,7 +171,7 @@ ein_in01,18,28,4 script Guildsman#BLS 731,{
mes "and good luck!";
close;
}
- if (JobLevel < 40) {
+ else if (JobLevel < 40) {
mes "[Altiregen]";
mes "Hmmm, it seems that you lack experience as a Merchant. We require that you are at least Job Level 40, you see.";
next;
@@ -157,18 +195,18 @@ ein_in01,18,28,4 script Guildsman#BLS 731,{
close;
}
}
- if ((BSMITH_Q > 0) && (BSMITH_Q < 8)) {
+ else if (BSMITH_Q > 0 && BSMITH_Q < 8) {
mes "[Altiregen]";
mes "You haven't left yet?";
mes "Go to Einbech and find ^8E6B23Geschupenschte^000000. Finish helping him out, and when you're done, come back to me.";
close;
}
- if ((BSMITH_Q > 8) && (BSMITH_Q < 15)) {
+ else if (BSMITH_Q > 8 && BSMITH_Q < 15) {
mes "[Altiregen]";
mes "Was the work you did for ^8E6B23Geschupenschte^000000 to your liking? He's known for being pretty exacting...";
close;
}
- if (BSMITH_Q == 15) {
+ else if (BSMITH_Q == 15) {
mes "[Altiregen]";
mes "Great job!!";
mes "You have passed";
@@ -203,53 +241,51 @@ ein_in01,18,28,4 script Guildsman#BLS 731,{
mes "If you can't endure this, you'll never be a Blacksmith!";
close;
}
- if (BSMITH_Q == 16) {
+ else if (BSMITH_Q == 16) {
mes "[Altiregen]";
mes "Um? Haven't you talk to the guildsman yet?";
mes "If you haven't, I suggest you to do so as soon as possible.";
close;
}
- if ((BSMITH_Q == 17) && (countitem(1005) > 0) && (JobLevel > 39)) {
+ else if (BSMITH_Q == 17 && countitem(1005) > 0 && JobLevel > 39) {
mes "[Altiregen]";
- mes "Excellent, I can tell by the twinkle in your eye that you were successful. I can now bestow upon you the gift of smithing, the art";
- mes "of the Blacksmith.";
- next;
- if(Class == Job_Baby_Merchant){
- jobchange Job_Baby_Blacksmith;
- } else {
- jobchange Job_Blacksmith;
+ mes "Excellent, I can tell by the twinkle in your eye that you were successful. I can now bestow upon you the gift of the smithing, the art of the Blacksmith.";
+ if(checkquest(2015) != -1) {
+ changequest 2015,2016;
}
+ next;
+ set .@joblvl,JobLevel;
+ callfunc "Job_Change",Job_Blacksmith;
+ callfunc "F_ClearJobVar"; // clears all job variables for the current player
mes "[Altiregen]";
mes "Always remember that we are creators, and artists over metals. Be wary that you do not fall into the pitfalls of selfishness";
mes "and greed.";
next;
delitem 1005,1; //Hammer_Of_Blacksmith
+ completequest 2016;
mes "[Altiregen]";
mes "Here is a little";
mes "gift to mark the";
mes "beginning of your";
mes "life as a Blacksmith.";
mes "Congratulations!!!";
- if (JobLevel > 48) {
+ if (.@joblvl > 48)
getitem 999,30; //Steel
- } else {
+ else
getitem 999,5; //Steel
- }
- changequest 2015,2016;
- completequest 2016;
close;
}
}
}
-ein_in01,201,27,3 script Guildsman#einbech 63,{
+ein_in01,201,27,3 script Guildsman#alberta 63,{
mes "[Geschupenschte]";
mes "Hello there!";
mes "I'm ^8E6B23Geschupenschte^000000,";
mes "a Blacksmith by trade.";
mes "Nice to meet you!";
next;
- if (Class == Job_Baby_Merchant || Class == Job_Merchant) {
+ if (BaseJob == Job_Merchant) {
mes "[Geschupenschte]";
mes "Oh ho ho!";
mes "You're a Merchant!";
@@ -270,193 +306,190 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "to be busy~";
close;
}
- if (BSMITH_Q == 1) {
- mes "[Geschupenschte]";
- mes "Oh ho ho!";
- mes "You're a Merchant!";
- mes "Excellent! I was";
- mes "in need of some help!";
- next;
- mes "[Geschupenschte]";
- mes "Am I correct in assuming you are the help sent by the Blacksmith Guild? There aren't many trustyworthy people I can hire to help me, so I'm always";
- mes "short on help.";
- next;
- mes "[Geschupenschte]";
- mes "Hmm, in any case,";
- mes "you are the help that was sent, right? Okay, I have some work for you that must be handled";
- mes "right away!";
- next;
- mes "[Geschupenschte]";
- mes "Some time ago, I had a boy working for me who had no experience and bought the wrong supplies! It was terrible...";
- next;
- mes "[Geschupenschte]";
- mes "Anyone would hate to lose money through a foolish mistake like that. However, I have a slightly more difficult job for you.";
- next;
- mes "[Geschupenschte]";
- mes "However, I want to make sure that you have some basic knowledge as a Merchant. I'd like to ask you some questions, if that's okay.";
- next;
- if (select("Yes.:Um, can I have some time to prepare?") == 1) {
- set @black_q,0;
- set .@rand_b,rand(1,3);
- if (.@rand_b == 1) {
+ else if ((BSMITH_Q == 1) || (BSMITH_Q == 2)) {
+ if (BSMITH_Q == 1) {
+ mes "[Geschupenschte]";
+ mes "Am I correct in assuming you are the help sent by the Blacksmith Guild? There aren't many trustyworthy people I can hire to help me, so I'm always";
+ mes "short on help.";
+ next;
+ mes "[Geschupenschte]";
+ mes "Hmm, in any case,";
+ mes "you are the help that was sent, right? Okay, I have some work for you that must be handled";
+ mes "right away!";
+ next;
+ mes "[Geschupenschte]";
+ mes "Some time ago, I had a boy working for me who had no experience and bought the wrong supplies! It was terrible...";
+ next;
+ mes "[Geschupenschte]";
+ mes "Anyone would hate to lose money through a foolish mistake like that. However, I have a slightly more difficult job for you.";
+ next;
+ mes "[Geschupenschte]";
+ mes "However, I want to make sure that you have some basic knowledge as a Merchant. I'd like to ask you some questions, if that's okay.";
+ next;
+ set .@selection,select("Yes.:Um, can I have some time to prepare?");
+ }
+ else if (BSMITH_Q == 2) {
+ mes "[Geschupenschte]";
+ mes "So, have you";
+ mes "studied a little";
+ mes "more this time?";
+ next;
+ mes "[Geschupenschte]";
+ mes "I admit that it's pretty unreasonable to expect anyone to get a perfect score the first time around, so I'll give you";
+ mes "a little break...";
+ next;
+ mes "[Geschupenschte]";
+ mes "You can miss";
+ mes "one problem!";
+ mes "Alright, let's start";
+ mes "with the questions~";
+ next;
+ }
+ if (.@selection != 2) {
+ if (rand(2)) {
mes "[Geschupenschte]";
mes "1. Which one of the following regions is matched incorrectly";
mes "with its specialty item?";
next;
- if (select("Morroc - Thief Clothes:Alberta - Two Hand Axe:Comodo - Berserk Potion:Alberta - Swordmace") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("Morroc - Thief Clothes:Alberta - Two Hand Axe:Comodo - Berserk Potion:Alberta - Swordmace") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "2. What status can";
mes "be inflicted with the";
mes "^8E6B23Hammer Fall^000000 skill?";
next;
- if (select("Stun:Blind:Silence:Sleep") == 1) {
- set @black_q,@black_q + 10;
- }
+ if (select("Stun:Blind:Silence:Sleep") == 1)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "3. Which one of the following skills cannot be performed";
mes "by a Merchant?";
next;
- if (select("Vending:Discount:Overcharge:Increase AGI") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("Vending:Discount:Overcharge:Increase AGI") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "4. Where can you find a store";
mes "that sells Blue Gemstones?";
next;
- if (select("Alberta:Morroc:Geffen:Prontera") == 3) {
- set @black_q,@black_q + 10;
- }
+ if (select("Alberta:Morroc:Geffen:Prontera") == 3)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "5. Where is the";
mes "Tool Dealer";
mes "located in Geffen?";
next;
- if (select("8 o'clock direction from the town square:11 o'clock direction from the town square:6 o'clock direction from the town square:5 o'clock direction from the town square") == 1) {
- set @black_q,@black_q + 10;
- }
+ if (select("8 o'clock direction from the town square:11 o'clock direction from the town square:6 o'clock direction from the town square:5 o'clock direction from the town square") == 1)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "6. Which weapon";
mes "cannot be used";
mes "by a Merchant?";
next;
- if (select("Stiletto:Ring Pommel Saber:Chain:Bible") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("Stiletto:Ring Pommel Saber:Chain:Bible") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "7. Which one of the following";
mes "has the highest defense rate?";
next;
- if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2) {
- set @black_q,@black_q + 10;
- }
+ if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "8. For Level 3 weapons,";
mes "what is the ^8E6B23Safe^000000 limit";
mes "for upgrading?";
next;
- if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 3) {
- set @black_q,@black_q + 10;
- }
+ if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 3)
+ set .@black_q,.@black_q+10;
mes "9. What item";
mes "can be made using";
mes "the ^8E6B23Trunks^000000 item?";
next;
- if (select("Sakkat:Ghost Bandana:Majestic Goat:Antler") == 1) {
- set @black_q,@black_q + 10;
- }
+ if (select("Sakkat:Ghost Bandana:Majestic Goat:Antler") == 1)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "10. The most important";
mes "part of being a Merchant is...?";
next;
select("Credit:Integrity:Money:Rhetoric");
- set @black_q,@black_q + 10;
- next;
- } else {
+ set .@black_q,.@black_q+10;
+ }
+ else {
mes "[Geschupenschte]";
mes "1. Among the following cities, which one is not correctly matched with its specialty?";
next;
- if (select("Al De Baran - Yggdrasil Leaf:Alberta - Hammer:Comodo - Berserk Potion:Al De Baran - Hammer") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("Al De Baran - Yggdrasil Leaf:Alberta - Hammer:Comodo - Berserk Potion:Al De Baran - Hammer") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "2. How much Zeny";
mes "is one Jellopy worth?";
next;
- if (select("1 Zeny:2 Zeny:3 Zeny:4 Zeny") == 3) {
- set @black_q,@black_q + 10;
- }
+ if (select("1 Zeny:2 Zeny:3 Zeny:4 Zeny") == 3)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "3. What is required";
mes "for a Merchant to use";
mes "the ^8E6B23Vending^000000 Skill?";
next;
- if (select("Must have a Cart.:Must have items to sell.:Must be wielding a weapon.:Must be wearing armor.") == 1) {
- set @black_q,@black_q + 10;
- }
+ if (select("Must have a Cart.:Must have items to sell.:Must be wielding a weapon.:Must be wearing armor.") == 1)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "4. Where can you";
mes "change your Job to";
mes "become a Merchant?";
next;
- if (select("Alberta:Morroc:Geffen:Prontera") == 1) {
- set @black_q,@black_q + 10;
- }
+ if (select("Alberta:Morroc:Geffen:Prontera") == 1)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "5. Where is the";
mes "Weapons Dealer";
mes "located in Morroc?";
next;
- if (select("7 o'clock from the town's center:11 o'clock from the town's center:6 o'clock from the town's center:5 o'clock from the town's center") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("7 o'clock from the town's center:11 o'clock from the town's center:6 o'clock from the town's center:5 o'clock from the town's center") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "6. What weapon";
mes "can a Merchant";
mes "not use?";
next;
- if (select("Main Gauche:Claymore:Chain:Two handed Axe") == 2) {
- set @black_q,@black_q + 10;
- }
+ if (select("Main Gauche:Claymore:Chain:Two handed Axe") == 2)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "7. Which one of the following";
mes "has the highest defense rate?";
next;
- if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2) {
- set @black_q,@black_q + 10;
- }
+ if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "8. For Level 3 weapons,";
mes "what is the ^8E6B23Safe^000000 limit";
mes "for upgrading?";
next;
- if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 2) {
- set @black_q,@black_q + 10;
- }
+ if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 3)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "9. What monster does";
mes "NOT drop Iron Ore?";
next;
- if (select("Chon Chon:Steel Chon Chon:Zerom:Anolian") == 4) {
- set @black_q,@black_q + 10;
- }
+ if (select("Chon Chon:Steel Chon Chon:Zerom:Anolian") == 4)
+ set .@black_q,.@black_q+10;
mes "[Geschupenschte]";
mes "10. What is most";
mes "important to a Merchant?";
next;
select("Rhetoric:Credit:Money:Experience");
- set @black_q,@black_q + 10;
- next;
+ set .@black_q,.@black_q+10;
}
mes "[Geschupenschte]";
mes "Umm. You did a good job!";
next;
mes "[Geschupenschte]";
- mes "Let's see...your score is..." + @black_q + " points.";
- if (@black_q == 100) {
- set BSMITH_Q, 3;
- changequest 2000,2002;
+ mes "Let's see...your score is..." + .@black_q + " points.";
+ if (.@black_q == 100) {
+ set BSMITH_Q,3;
+ if(checkquest(2001) != -1) {
+ changequest 2001,2002;
+ }else{
+ changequest 2000,2002;
+ }
mes "Oh ho ho~";
mes "You'll have";
mes "no problem";
@@ -468,11 +501,19 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "When you get back, I'll be ready!";
close;
}
- set BSMITH_Q, 2;
- changequest 2000,2001;
+ set BSMITH_Q,2;
+ if(checkquest(2001) == -1) {
+ changequest 2000,2001;
+ }
mes ".............";
next;
mes "[Geschupenschte]";
+ if (BSMITH_Q == 2) {
+ mes "How do I say this?";
+ mes "How did you fail again?!";
+ mes "If you plan to perform your duties in this manner, I can't trust you with any kind of job...";
+ close;
+ }
mes "Hmm...";
mes "It pains me to say this, but it seems you need to study a little more. You can never be";
mes "a Blacksmith with";
@@ -485,7 +526,8 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "being careful~";
close;
}
- if (BSMITH_Q == 2) {
+ /*
+ else if (BSMITH_Q == 2) {
mes "[Geschupenschte]";
mes "So, have you";
mes "studied a little";
@@ -501,191 +543,10 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "Alright, let's start";
mes "with the questions~";
next;
- set @black_q,0;
- set .@rand_b,rand(1,3);
- if (.@rand_b == 1) {
- mes "[Geschupenschte]";
- mes "1. Which one of the following regions is matched incorrectly";
- mes "with its specialty item?";
- next;
- if (select("Morroc - Thief Clothes:Alberta - Two Hand Axe:Comodo - Beserk Potion:Alberta - Swordmace") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "2. What status can";
- mes "be inflicted with the";
- mes "^8E6B23Hammer Fall^000000 skill?";
- next;
- if (select("Stun:Blind:Silence:Sleep") == 1) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "3. Which one of the following skills cannot be performed";
- mes "by a Merchant?";
- next;
- if (select("Vending:Discount:Overcharge:Increase AGI") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "4. Where can you find a store";
- mes "that sells Blue Gemstones?";
- next;
- if (select("Alberta:Morroc:Geffen:Prontera") == 3) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "5. Where is the";
- mes "Tool Dealer";
- mes "located in Geffen?";
- next;
- if (select("8 o'clock direction from the town square:11 o'clock direction from the town square:6 o'clock direction from the town square:5 o'clock direction from the town square") == 1) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "6. Which weapon";
- mes "cannot be used";
- mes "by a Merchant?";
- next;
- if (select("Stiletto:Ring Pommel Saber:Chain:Bible") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "7. Which one of the following";
- mes "has the highest defense rate?";
- next;
- if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "8. For Level 3 weapons,";
- mes "what is the ^8E6B23Safe^000000 limit";
- mes "for upgrading?";
- next;
- if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 3) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "9. What item";
- mes "can be made using";
- mes "the ^8E6B23Trunks^000000 item?";
- next;
- if (select("Sakkat:Ghost Bandana:Majestic Goat:Antler") == 1) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "10. The most important";
- mes "part of being a Merchant is...?";
- next;
- select("Credit:Integrity:Money:Rhetoric");
- set @black_q,@black_q + 10;
- next;
- } else {
- mes "[Geschupenschte]";
- mes "1. Among the following cities, which one is not correctly matched with its specialty?";
- next;
- if (select("Al De Beran - Yggdrasil Leaf:Alberta - Hammer:Comodo - Beserk Potion:Al De Baran - Hammer") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "2. How much Zeny";
- mes "is one Jellopy worth?";
- next;
- if (select("1 Zeny:2 Zeny:3 Zeny:4 Zeny") == 3) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "3. What is required";
- mes "for a Merchant to use";
- mes "the ^8E6B23Vending^000000 Skill?";
- next;
- if (select("Must have a Cart.:Must have items to sell.:Must be wielding a weapon.:Must be wearing armor.") == 1) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "4. Where can you";
- mes "change your Job to";
- mes "become a Merchant?";
- next;
- if (select("Alberta:Morroc:Geffen:Prontera") == 1) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "5. Where is the";
- mes "Weapons Dealer";
- mes "located in Morroc?";
- next;
- if (select("7 o'clock from the town's center:11 o'clock from the town's center:6 o'clock from the town's center:5 o'clock from the town's center") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "6. What weapon";
- mes "can a Merchant";
- mes "not use?";
- next;
- if (select("Main Gauche:Claymore:Chain:Two handed Axe") == 2) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "7. Which one of the following";
- mes "has the highest defense rate?";
- next;
- if (select("Panties:Mink Coat:Wooden Mail:Silk Robe") == 2) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "8. For Level 3 weapons,";
- mes "what is the ^8E6B23Safe^000000 limit";
- mes "for upgrading?";
- next;
- if (select("up to + 3:up to + 4:up to + 5:up to + 6") == 2) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "9. What monster does";
- mes "NOT drop Iron Ore?";
- next;
- if (select("Chon Chon:Steel Chon Chon:Zerom:Anolian") == 4) {
- set @black_q,@black_q + 10;
- }
- mes "[Geschupenschte]";
- mes "10. What is most";
- mes "important to a Merchant?";
- next;
- select("Rhetoric:Credit:Money:Experience");
- set @black_q,@black_q + 10;
- next;
- }
- mes "[Geschupenschte]";
- mes "Hmm, good. You did a great job!";
- next;
- mes "[Geschupenschte]";
- mes "Let's see...your score is..." + @black_q + " points.";
- if (@black_q > 80) {
- set BSMITH_Q,3;
- changequest 2001,2002;
- mes "Oh ho ho~";
- mes "You'll have";
- mes "no problem";
- mes "with this score!";
- next;
- mes "[Geschupenschte]";
- mes "I will entrust you with a job!";
- mes "Give me a little time to make the necessary arrangements.";
- mes "When you get back, I'll be ready!";
- close;
- }
- set BSMITH_Q,2;
- completequest 2000;
- setquest 2001;
- mes ".............";
- next;
- mes "[Geschupenschte]";
- mes "How do I say this?";
- mes "How did you fail again?!";
- mes "If you plan to perform your duties in this manner, I can't trust you with any kind of job...";
- close;
+ goto L_AskQuestions;
}
- if (BSMITH_Q == 3) {
+ */
+ else if (BSMITH_Q == 3) {
mes "[Geschupenschte]";
mes "Hmm...";
mes "Now, where were";
@@ -705,176 +566,98 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "Well, to make";
mes "this you will need...";
next;
- set .@black_item,rand(1,6);
- if (.@black_item == 1) {
- set BSMITH_Q,4;
- changequest 2002,2003;
- mes "[Geschupenschte]";
- mes "^8E6B232 Steel^000000,";
- mes "^8E6B231 Rotten Bandage^000000,";
- mes "^8E6B232 Blue Gemstone^000000, and";
- mes "^8E6B231 Arc Wand^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Steel^000000,";
- mes "^8E6B231 Rotten Bandage^000000,";
- mes "^8E6B232 Blue Gemstone^000000, and";
- mes "^8E6B231 Arc Wand^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- }
- if (.@black_item == 2) {
- set BSMITH_Q,5;
- changequest 2002,2004;
- mes "[Geschupenschte]";
- mes "^8E6B232 Star Dust^000000,";
- mes "^8E6B231 Skel-bone^000000,";
- mes "^8E6B231 Zargon^000000 and";
- mes "^8E6B231 Gladius^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Star Dust^000000,";
- mes "^8E6B231 Skel-bone^000000,";
- mes "^8E6B231 Zargon^000000 and";
- mes "^8E6B231 Gladius^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
+ switch(rand(1,5)) {
+ //Steel, Rotten_Bandage, Blue_Gemstone, Arc_Wand
+ case 1: setarray .@items[0], 999,1, 930,1, 717,2, 1610,1, 4; changequest 2002,2003; break;
+ //Sparkling_Dust, Skel_Bone, Zargon, Gladius
+ case 2: setarray .@items[0], 1001,2, 932,1, 912,1, 1219,1, 5; changequest 2002,2004; break;
+ //Coal, Shell, Boody_Red, Tsurugi
+ case 3: setarray .@items[0], 1003,1, 935,2, 990,2, 1119,1, 6; changequest 2002,2005; break;
+ //Iron_Ore, Eye_Bandage, Blue_Gemstone, Arbalest
+ case 4: setarray .@items[0], 1002,1, 2212,1, 717,2, 1713,1, 7; changequest 2002,2006; break;
+ //Iron, Green_Herb, Animal's_Skin, Ring_Pommel_Saber
+ default: setarray .@items[0], 998,1, 511,1, 919,2, 1122,1, 8; changequest 2002,2007; break;
}
- if (.@black_item == 3) {
- set BSMITH_Q,6;
- changequest 2002,2005;
- mes "[Geschupenschte]";
- mes "^8E6B232 Coal^000000,";
- mes "^8E6B232 Shell^000000,";
- mes "^8E6B232 Red Blood^000000 and";
- mes "^8E6B231 Tsurugi^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Coal^000000,";
- mes "^8E6B232 Shell^000000,";
- mes "^8E6B232 Red Blood^000000 and";
- mes "^8E6B231 Tsurugi^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
+ set BSMITH_Q,.@items[8];
+ mes "[Geschupenschte]";
+ mes "^8E6B23"+.@items[1]+" "+getitemname(.@items[0])+"^000000,";
+ mes "^8E6B23"+.@items[3]+" "+getitemname(.@items[2])+"^000000,";
+ mes "^8E6B23"+.@items[5]+" "+getitemname(.@items[4])+"^000000, and";
+ mes "^8E6B23"+.@items[7]+" "+getitemname(.@items[6])+"^000000, the kind";
+ mes "you can buy from";
+ mes "an NPC shop.";
+ next;
+ mes "[Geschupenschte]";
+ mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
+ next;
+ mes "[Geschupenschte]";
+ mes "Okay~";
+ mes "Good luck";
+ mes "on your first job!";
+ close;
+ }
+ else if (BSMITH_Q > 3 && BSMITH_Q < 9) {
+ switch(BSMITH_Q) {
+ case 4: setarray .@items[0], 999,1, 930,1, 717,2, 1610,1, 9; break;
+ case 5: setarray .@items[0], 1001,2, 932,1, 912,1, 1219,1, 10; break;
+ case 6: setarray .@items[0], 1003,1, 935,2, 990,2, 1119,1, 11; break;
+ case 7: setarray .@items[0], 1002,1, 2212,1, 717,2, 1713,1, 12; break;
+ case 8: setarray .@items[0], 998,1, 511,1, 919,2, 1122,1, 13; break;
}
- if (.@black_item == 4) {
- set BSMITH_Q,7;
- changequest 2002,2006;
+ mes "[Geschupenschte]";
+ mes "Ah, you're back!";
+ mes "Did you bring";
+ mes "everything that";
+ mes "I requested?";
+ next;
+ if (countitem(.@items[0]) >= .@items[1] && countitem(.@items[2]) >= .@items[3] && countitem(.@items[4]) >= .@items[5] && countitem(.@items[6]) >= .@items[7]) {
mes "[Geschupenschte]";
- mes "^8E6B238 Iron Ore^000000,";
- mes "^8E6B231 Eye Patch^000000,";
- mes "^8E6B232 Blue Gemstone^000000 and";
- mes "^8E6B231 Arbalest^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
+ mes "Wait...";
+ mes "Didn't I tell you";
+ mes "to get 3 Steel?";
next;
mes "[Geschupenschte]";
- mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
+ mes "Oh, I guess it was";
+ mes "two after all. Let's see...";
+ mes "Yeah, you got everything!";
+ mes "Now, just give me a second.";
next;
mes "[Geschupenschte]";
- mes "^8E6B238 Iron Ore^000000,";
- mes "^8E6B231 Eye Patch^000000,";
- mes "^8E6B232 Blue Gemstone^000000 and";
- mes "^8E6B231 Arbalest^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
+ mes "Oh, you should make sure that you are not carrying ^FF0000more than one "+getitemname(.@items[6])+"^000000, you should really only have an "+getitemname(.@items[6])+" that you bought from an NPC shop in your inventory.";
next;
- }
- else {
- set BSMITH_Q,8;
- changequest 2002,2007;
+ if (select("Oh, could you give me a second?:Oh, I brought what you asked for.") == 1) {
+ mes "[Geschupenschte]";
+ mes "Hmmm, it would be";
+ mes "a good idea to put the";
+ mes "rest of your items";
+ mes "in Kafra Storage.";
+ close;
+ }
mes "[Geschupenschte]";
- mes "^8E6B238 Iron^000000";
- mes "^8E6B2320 Green Herb^000000";
- mes "^8E6B232 Animal Skin^000000";
- mes "and ^8E6B231 Ring Pommel Saber^000000, the kind you can buy from an NPC shop.";
+ mes "Okay.";
+ mes "Great~!!";
next;
mes "[Geschupenschte]";
- mes "Collecting these items will be your test. Coincidentally, it's also a bit of a good way for me to save money. I'll repeat what you'll need to bring back to me...";
+ mes "^3355FF*Clang...!*^000000";
next;
mes "[Geschupenschte]";
- mes "^8E6B238 Iron^000000";
- mes "^8E6B2320 Green Herb^000000";
- mes "^8E6B232 Animal Skin^000000";
- mes "and ^8E6B231 Ring Pommel Saber^000000, the kind you can buy from an NPC shop.";
+ mes "^3355FF*Crash Crash!*^000000";
next;
- }
- mes "[Geschupenschte]";
- mes "Okay~";
- mes "Good luck";
- mes "on your first job!";
- close;
- }
- if ((BSMITH_Q > 3) && (BSMITH_Q < 9)) {
- if (BSMITH_Q == 4) {
+ delitem .@items[0],.@items[1];
+ delitem .@items[2],.@items[3];
+ delitem .@items[4],.@items[5];
+ delitem .@items[6],.@items[7];
+ set BSMITH_Q,.@items[8];
mes "[Geschupenschte]";
- mes "Ah, you're back!";
- mes "Did you bring";
- mes "everything that";
- mes "I requested?";
- next;
- if ((countitem(999) > 1) && (countitem(930) > 0) && (countitem(717) > 1) && (countitem(1610) > 0)) {
- mes "[Geschupenschte]";
- mes "Wait...";
- mes "Didn't I tell you";
- mes "to get 3 Steel?";
- next;
- mes "[Geschupenschte]";
- mes "Oh, I guess it was";
- mes "two after all. Let's see...";
- mes "Yeah, you got everything!";
- mes "Now, just give me a second.";
- next;
- mes "[Geschupenschte]";
- mes "Oh, you should make sure that you are not carrying ^FF0000more than one Arc Wand^000000, you should really only have an Arc Wand that you bought from an NPC shop in your inventory.";
- next;
- if (select("Oh, could you give me a second?:Oh, I brought what you asked for.") == 1) {
- mes "[Geschupenschte]";
- mes "Hmmm, it would be";
- mes "a good idea to put the";
- mes "rest of your items";
- mes "in Kafra Storage.";
- close;
- }
- mes "[Geschupenschte]";
- mes "Okay.";
- mes "Great~!!";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Clang...!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Crash Crash!*^000000";
- next;
- delitem 999,2; //Steel
- delitem 930,1; //Rotten_Bandage
- delitem 717,2; //Blue_Gemstone
- delitem 1610,1; //Arc_Wand
- set BSMITH_Q,9;
- changequest 2003,2008;
- mes "[Geschupenschte]";
- mes "Wooooo~~~";
- mes "All done...";
- mes "Okay, now take this to ^8E6B23Baisulist^000000 in Geffen of the Rune-Midgarts Kingdom. Simply deliver it and bring me the receipt.";
+ mes "Wooooo~~~";
+ mes "All done...";
+ switch(BSMITH_Q) {
+ case 9:
+ mes "Okay, now take this to ^8E6B23Baisulist^000000 in Geffen of Rune-Midgarts Kingdom. Simply deliver it and bring me the receipt.";
getitem 1610,1; //Arc_Wand
+ if(checkquest(2003) != -1) {
+ changequest 2003,2008;
+ }
next;
mes "[Geschupenschte]";
mes "Hmm...?";
@@ -892,85 +675,14 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
next;
mes "[Geschupenschte]";
mes "Anyway, take this";
- mes "to ^8E6B23Baisulist^000000 in Geffen of the Rune-Midgarts Kingdom,";
- mes "and don't forget";
- mes "the receipt!";
- close;
- }
- mes "[Geschupenschte]";
- mes "You still haven't";
- mes "brought all the items.";
- mes "Do you need to be reminded";
- mes "or something? Bring me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Steel^000000,";
- mes "^8E6B231 Rotten Bandage^000000,";
- mes "^8E6B232 Blue Gemstone^000000, and";
- mes "^8E6B231 Arc Wand^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Now, be sure to have";
- mes "everything I need when";
- mes "you come back. Remember,";
- mes "this is a test! You can't";
- mes "be a Blacksmith if you";
- mes "slack off!";
- close;
- }
- if (BSMITH_Q == 5) {
- mes "[Geschupenschte]";
- mes "Ah, you're back!";
- mes "Did you bring";
- mes "everything that";
- mes "I requested?";
- next;
- if ((countitem(1001) > 1) && (countitem(932) > 0) && (countitem(912) > 0) && (countitem(1219) > 0)) {
- mes "[Geschupenschte]";
- mes "Wait...";
- mes "Didn't I tell you";
- mes "to get 3 Star Dust?";
- next;
- mes "[Geschupenschte]";
- mes "Oh, I guess it was";
- mes "two after all. Let's see...";
- mes "Yeah, you got everything!";
- mes "Now, just give me a second.";
- next;
- mes "[Geschupenschte]";
- mes "Oh, you should make sure that you are not carrying ^FF0000more than one Gladius^000000, you should really only have an Gladius that you bought from an NPC shop in your inventory.";
- next;
- if (select("Um, would you give me a second?:Oh, I brought what you asked for.") == 1) {
- mes "[Geschupenschte]";
- mes "Hmmm, it would be";
- mes "a good idea to put the";
- mes "rest of your items";
- mes "in Kafra Storage.";
- close;
- }
- mes "[Geschupenschte]";
- mes "Okay.";
- mes "Great~!!";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Clang...!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Crash Crash!*^000000";
- next;
- delitem 1001,2; //Sparkling_Dust
- delitem 932,1; //Skel_Bone
- delitem 912,1; //Zargon
- delitem 1219,1; //Gladius
- set BSMITH_Q,10;
- changequest 2004,2009;
- mes "[Geschupenschte]";
- mes "Wooooo~~~";
- mes "All done...";
- mes "Okay, now take this to ^8E6B23Wickebine^000000 in Morroc of the Rune-Midgarts Kingdom. Simply deliver it and bring me the receipt.";
+ mes "to ^8E6B23Baisulist^000000 in Geffen of Rune-Midgarts Kingdom,";
+ break;
+ case 10:
+ mes "Okay, now take this to ^8E6B23Wickebine^000000 in Morroc of Rune-Midgarts Kingdom. Simply deliver it and bring me the receipt.";
getitem 1219,1; //Gladius
+ if(checkquest(2004) != -1) {
+ changequest 2004,2009;
+ }
next;
mes "[Geschupenschte]";
mes "Hmm...?";
@@ -988,85 +700,14 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
next;
mes "[Geschupenschte]";
mes "Anyway, take this";
- mes "to ^8E6B23Wickebine^000000 in Morroc of the Rune-Midgarts Kingdom,";
- mes "and don't forget";
- mes "the receipt!";
- close;
- }
- mes "[Geschupenschte]";
- mes "You still haven't";
- mes "brought all the items.";
- mes "Do you need to be reminded";
- mes "or something? Bring me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Star Dust^000000,";
- mes "^8E6B231 Skel-bone^000000,";
- mes "^8E6B231 Zargon^000000 and";
- mes "^8E6B231 Gladius^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Now, be sure to have";
- mes "everything I need when";
- mes "you come back. Remember,";
- mes "this is a test! You can't";
- mes "be a Blacksmith if you";
- mes "slack off!";
- close;
- }
- if (BSMITH_Q == 6) {
- mes "[Geschupenschte]";
- mes "Ah, you're back!";
- mes "Did you bring";
- mes "everything that";
- mes "I requested?";
- next;
- if ((countitem(1003) > 1) && (countitem(935) > 1) && (countitem(990) > 1) && (countitem(1119) > 0)) {
- mes "[Geschupenschte]";
- mes "Wait...";
- mes "Didn't I tell you";
- mes "to get 3 Coal?";
- next;
- mes "[Geschupenschte]";
- mes "Oh, I guess it was";
- mes "two after all. Let's see...";
- mes "Yeah, you got everything!";
- mes "Now, just give me a second.";
- next;
- mes "[Geschupenschte]";
- mes "Oh, you should make sure that you are not carrying ^FF0000more than one Tsurugi^000000, you should really only have an Tsurugi that you bought from an NPC shop in your inventory.";
- next;
- if (select("Um, would you give me a second?:Oh, I brought what you asked for.") == 1) {
- mes "[Geschupenschte]";
- mes "Hmmm, it would be";
- mes "a good idea to put the";
- mes "rest of your items";
- mes "in Kafra Storage.";
- close;
- }
- mes "[Geschupenschte]";
- mes "Okay.";
- mes "Great~!!";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Clang...!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Crash Crash!*^000000";
- next;
- delitem 1003,2; //Coal
- delitem 935,2; //Shell
- delitem 990,2; //Boody_Red
- delitem 1119,1; //Tsurugi
- set BSMITH_Q,11;
- changequest 2005,2010;
- mes "[Geschupenschte]";
- mes "Wooooo~~~";
- mes "All done...";
+ mes "to ^8E6B23Wickebine^000000 in Morroc of Rune-Midgarts Kingdom,";
+ break;
+ Case 11:
mes "Okay, now take this to ^8E6B23Krongast^000000 in Lighthalzen. Simply deliver it and bring me the receipt.";
getitem 1119,1; //Tsurugi
+ if(checkquest(2005) != -1) {
+ changequest 2005,2010;
+ }
next;
mes "[Geschupenschte]";
mes "Hmm...?";
@@ -1085,85 +726,14 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
next;
mes "[Geschupenschte]";
mes "Anyway, take this";
- mes "to ^8E6B23Krongast^000000 in Izlude";
- mes "and don't forget";
- mes "the receipt!";
- close;
- }
- mes "[Geschupenschte]";
- mes "You still haven't";
- mes "brought all the items.";
- mes "Do you need to be reminded";
- mes "or something? Bring me...";
- next;
- mes "[Geschupenschte]";
- mes "^8E6B232 Coal^000000,";
- mes "^8E6B232 Shell^000000,";
- mes "^8E6B232 Red Blood^000000 and";
- mes "^8E6B231 Tsurugi^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Now, be sure to have";
- mes "everything I need when";
- mes "you come back. Remember,";
- mes "this is a test! You can't";
- mes "be a Blacksmith if you";
- mes "slack off!";
- close;
- }
- if (BSMITH_Q == 7) {
- mes "[Geschupenschte]";
- mes "Ah, you're back!";
- mes "Did you bring";
- mes "everything that";
- mes "I requested?";
- next;
- if ((countitem(1002) > 7) && (countitem(2212) > 0) && (countitem(717) > 1) && (countitem(1713) > 0)) {
- mes "[Geschupenschte]";
- mes "Wait...";
- mes "Didn't I tell you";
- mes "to get 30 Iron Ore?";
- next;
- mes "[Geschupenschte]";
- mes "Oh, I guess it was";
- mes "eight after all. Let's see...";
- mes "Yeah, you got everything!";
- mes "Now, just give me a second.";
- next;
- mes "[Geschupenschte]";
- mes "Oh, you should make sure that you are not carrying ^FF0000more than one Arbalest^000000, you should really only have an Arbalest that you bought from an NPC shop in your inventory.";
- next;
- if (select("Um, would you give me a second?:Oh, I brought what you asked for.") == 1) {
- mes "[Geschupenschte]";
- mes "Hmmm, it would be";
- mes "a good idea to put the";
- mes "rest of your items";
- mes "in Kafra Storage.";
- close;
- }
- mes "[Geschupenschte]";
- mes "Okay.";
- mes "Great~!!";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Clang...!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Crash Crash!*^000000";
- next;
- delitem 1002,8; //Iron_Ore
- delitem 2212,1; //Eye_Bandage
- delitem 717,2; //Blue_Gemstone
- delitem 1713,1; //Arbalest
- set BSMITH_Q,12;
- changequest 2006,2011;
- mes "[Geschupenschte]";
- mes "Wooooo~~~";
- mes "All done...";
- mes "Okay, now take this to ^8E6B23Talpiz^000000 in Payon of the Rune-Midgarts Kingdom. Simply deliver this and bring me the receipt.";
+ mes "to ^8E6B23Krongast^000000 in Lighthalzen";
+ break;
+ case 12:
+ mes "Okay, now take this to ^8E6B23Talpiz^000000 in Payon of Rune-Midgarts Kingdom. Simply deliver this and bring me the receipt.";
getitem 1713,1; //Arbalest
+ if(checkquest(2006) != -1) {
+ changequest 2006,2011;
+ }
next;
mes "[Geschupenschte]";
mes "Hmm...?";
@@ -1180,85 +750,14 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
next;
mes "[Geschupenschte]";
mes "Anyway, take this";
- mes "to ^8E6B23Talpiz^000000 in Payon of the Rune-Midgarts Kindgom,";
- mes "and don't forget";
- mes "the receipt!";
- close;
- }
- mes "[Geschupenschte]";
- mes "You still haven't";
- mes "brought all the items.";
- mes "Do you need to be reminded";
- mes "or something? Bring me...";
- next;
- mes "^8E6B238 Iron Ore^000000,";
- mes "^8E6B231 Eye Patch^000000,";
- mes "^8E6B232 Blue Gemstone^000000 and";
- mes "^8E6B231 Arbalest^000000, the kind";
- mes "you can buy from";
- mes "an NPC shop.";
- next;
- mes "[Geschupenschte]";
- mes "Now, be sure to have";
- mes "everything I need when";
- mes "you come back. Remember,";
- mes "this is a test! You can't";
- mes "be a Blacksmith if you";
- mes "slack off!";
- close;
- }
- if (BSMITH_Q == 8) {
- mes "[Geschupenschte]";
- mes "Ah, you're back!";
- mes "Did you bring";
- mes "everything that";
- mes "I requested?";
- next;
- if ((countitem(998) > 7) && (countitem(511) > 19) && (countitem(919) > 1) && (countitem(1122) > 0)) {
- mes "[Geschupenschte]";
- mes "Wait...";
- mes "Didn't I tell you";
- mes "to get 40 Iron?";
- next;
- mes "[Geschupenschte]";
- mes "Oh, I guess it was";
- mes "eight after all. Let's see...";
- mes "Yeah, you got everything!";
- mes "Now, just give me a second.";
- next;
- mes "[Geschupenschte]";
- mes "Oh, you should make sure that you are not carrying ^FF0000more than one Ring Pommel Saber^000000. You should really only have just one that you bought from an NPC shop in your inventory.";
- next;
- if (select("Um, would you give me a second?:Oh, I brought what you asked for.") == 1) {
- mes "[Geschupenschte]";
- mes "Hmmm, it would be";
- mes "a good idea to put the";
- mes "rest of your items";
- mes "in Kafra Storage.";
- close;
- }
- mes "[Geschupenschte]";
- mes "Okay.";
- mes "Great~!!";
- next;
- delitem 998,8; //Iron
- delitem 511,20; //Green_Herb
- delitem 919,2; //Animal's_Skin
- delitem 1122,1; //Ring_Pommel_Saber
- set BSMITH_Q, 13;
- changequest 2007,2012;
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Clang...!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "^3355FF*Crash Crash!*^000000";
- next;
- mes "[Geschupenschte]";
- mes "Wooooo~~~";
- mes "All done...";
+ mes "to ^8E6B23Talpiz^000000 in Payon of Rune-Midgarts Kindgom,";
+ break;
+ case 13:
mes "Okay, now take this to ^8E6B23Bismarc^000000 in Hugel. Simply deliver this and bring back the receipt.";
getitem 1122,1; //Ring_Pommel_Saber
+ if(checkquest(2007) != -1) {
+ changequest 2007,2012;
+ }
next;
mes "[Geschupenschte]";
mes "Hmm...?";
@@ -1282,10 +781,12 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "[Geschupenschte]";
mes "Anyway, take this";
mes "to ^8E6B23Bismarc^000000 in Hugel";
- mes "and don't forget";
- mes "the receipt!";
- close;
}
+ mes "and don't forget";
+ mes "the receipt!";
+ close;
+ }
+ else {
mes "[Geschupenschte]";
mes "You still haven't";
mes "brought all the items.";
@@ -1293,10 +794,12 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "or something? Bring me...";
next;
mes "[Geschupenschte]";
- mes "^8E6B238 Iron^000000";
- mes "^8E6B2320 Green Herb^000000";
- mes "^8E6B232 Animal Skin^000000";
- mes "and ^8E6B231 Ring Pommel Saber^000000, the kind you can buy from an NPC shop.";
+ mes "^8E6B23"+.@items[1]+" "+getitemname(.@items[0])+"^000000,";
+ mes "^8E6B23"+.@items[3]+" "+getitemname(.@items[2])+"^000000,";
+ mes "^8E6B23"+.@items[5]+" "+getitemname(.@items[4])+"^000000, and";
+ mes "^8E6B23"+.@items[7]+" "+getitemname(.@items[6])+"^000000, the kind";
+ mes "you can buy from";
+ mes "an NPC shop.";
next;
mes "[Geschupenschte]";
mes "Now, be sure to have";
@@ -1308,7 +811,7 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
close;
}
}
- if ((BSMITH_Q > 8) && (BSMITH_Q < 14)) {
+ else if (BSMITH_Q > 8 && BSMITH_Q < 14) {
mes "[Geschupenschte]";
mes "What are you";
mes "still doing here?";
@@ -1317,31 +820,27 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "Did you forget";
mes "where to go?";
next;
+ mes "[Geschupenschte]";
if (BSMITH_Q == 9) {
- mes "[Geschupenschte]";
mes "In Geffen, at the";
mes "11 o'clock direction from the town center, you will find ^8E6B23Baisulist^000000. And don't forget the receipt.";
}
else if (BSMITH_Q == 10) {
- mes "[Geschupenschte]";
mes "Find the Swordmace";
mes "dealer ^8E6B23Wickebine^000000 in Morroc. And don't forget the receipt.";
}
else if (BSMITH_Q == 11) {
- mes "[Geschupenschte]";
mes "In Lighthalzen, 6 o'clock direction from the town center, you will find ^8E6B23Krongast^000000 near the weapon shop. And don't forget the receipt.";
}
else if (BSMITH_Q == 12) {
- mes "[Geschupenschte]";
mes "In Payon, at the 5 o'clock direction from the town center, you will find ^8E6B23Talpiz^000000. And don't forget the receipt.";
}
else {
- mes "[Geschupenschte]";
mes "In Hugel, at the 1 o'clock direction from the town center, you will find ^8E6B23Bismarc^000000 near the airship. And don't forget the receipt.";
}
close;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
mes "[Geschupenschte]";
mes "Hmmm...?";
mes "Have you";
@@ -1352,12 +851,22 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
if (select("Yes sir, here it is.:Receipt? I, uh, have it somewhere.") == 1) {
if (countitem(1073) > 0) {
set BSMITH_Q,15;
- changequest 2008,2013;
- changequest 2009,2013;
- changequest 2010,2013;
- changequest 2011,2013;
- changequest 2012,2013;
delitem 1073,1; //Merchant_Voucher_1
+ if(checkquest(2008) != -1) {
+ changequest 2008,2013;
+ }
+ else if(checkquest(2009) != -1) {
+ changequest 2009,2013;
+ }
+ else if(checkquest(2010) != -1) {
+ changequest 2010,2013;
+ }
+ else if(checkquest(2011) != -1) {
+ changequest 2011,2013;
+ }
+ else {
+ changequest 2012,2013;
+ }
mes "[Geschupenschte]";
mes "Oh ho ho~";
mes "Great!";
@@ -1396,7 +905,7 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "Right...?";
close;
}
- if (BSMITH_Q == 15) {
+ else if (BSMITH_Q == 15) {
mes "[Geschupenschte]";
mes "Thank you";
mes "very much";
@@ -1413,17 +922,19 @@ ein_in01,201,27,3 script Guildsman#einbech 63,{
mes "need any more help, today.";
close;
}
- mes "[Geschupenschte]";
- mes "Being";
- mes "a Blacksmith";
- mes "is truly great!";
- mes "Don't you think so?";
- mes "Mwahahahahah!!";
- close;
+ else {
+ mes "[Geschupenschte]";
+ mes "Being";
+ mes "a Blacksmith";
+ mes "is truly great!";
+ mes "Don't you think so?";
+ mes "Mwahahahahah!!";
+ close;
+ }
}
geffen,46,164,1 script Baisulist#BLS 69,{
- if ((BSMITH_Q == 9) && (countitem(1610) > 0)) {
+ if (BSMITH_Q == 9 && countitem(1610) > 0) {
mes "[Baisulist]";
mes "Oh, hello!";
mes "Have you come";
@@ -1446,8 +957,7 @@ geffen,46,164,1 script Baisulist#BLS 69,{
mes "[Baisulist]";
mes "You're";
mes "absolutely sure?";
- next;
- set BSMITH_Q, 14;
+ set BSMITH_Q,14;
delitem 1610,1; //Arc_Wand
next;
mes "[Baisulist]";
@@ -1463,42 +973,44 @@ geffen,46,164,1 script Baisulist#BLS 69,{
mes "Here it is.";
mes "Thank you so much!";
mes "Oh, and good luck~";
- mapannounce "geffen","Hey, " + strcharinfo(0) + ", thank you so much for the delivery~",bc_map;
+ mapannounce "geffen","Hey, " +strcharinfo(0)+ ", thank you so much for the delivery~",bc_map;
close;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
mes "[Baisulist]";
mes "Thank you";
mes "so much for";
mes "the delivery~";
close;
}
- mes "[Baisulist]";
- mes "Oh...";
- mes "It's been a while";
- mes "since I've been";
- mes "to Alberta.";
- next;
- mes "[Baisulist]";
- mes "I ordered something";
- mes "from there a while ago,";
- mes "but I haven't received";
- mes "my delivery...";
- next;
- mes "[Baisulist]";
- mes "I wonder...";
- mes "Could the Blacksmith Guild";
- mes "be undermanned? I can't think of any other reason for them to be late...";
- next;
- mes "[Baisulist]";
- mes "When will I get";
- mes "my special Arc Wand?";
- close;
+ else {
+ mes "[Baisulist]";
+ mes "Oh...";
+ mes "It's been a while";
+ mes "since I've been";
+ mes "to Alberta.";
+ next;
+ mes "[Baisulist]";
+ mes "I ordered something";
+ mes "from there a while ago,";
+ mes "but I haven't received";
+ mes "my delivery...";
+ next;
+ mes "[Baisulist]";
+ mes "I wonder...";
+ mes "Could the Blacksmith Guild";
+ mes "be undermanned? I can't think of any other reason for them to be late...";
+ next;
+ mes "[Baisulist]";
+ mes "When will I get";
+ mes "my special Arc Wand?";
+ close;
+ }
}
morocc,27,112,4 script Wickebine#BLS 725,{
- if ((BSMITH_Q == 10) && (countitem(1219) > 0)) {
- cutin "job_black_hucke01",2;
+ if (BSMITH_Q == 10 && countitem(1219) > 0) {
+ cutin "Job_Black_hucke01",2;
mes "[Wickebine]";
mes "...!";
mes "It's here!";
@@ -1508,7 +1020,7 @@ morocc,27,112,4 script Wickebine#BLS 725,{
mes "I don't want any used or old Gladius that you might have!";
next;
if (select("Whoops, not that one.:I guarantee you it is new.") == 1) {
- cutin "job_black_hucke03",2;
+ cutin "Job_Black_hucke03",2;
mes "[Wickebine]";
mes "Oooh...!";
mes "Hurry up";
@@ -1516,10 +1028,10 @@ morocc,27,112,4 script Wickebine#BLS 725,{
next;
mes "- She seems to be upset. -";
close2;
- cutin "",255;
+ cutin "Job_Black_hucke03",255;
end;
}
- cutin "job_black_hucke02",2;
+ cutin "Job_Black_hucke02",2;
mes "[Wickebine]";
mes "Hah hah hah!";
mes "Finally! Now...";
@@ -1528,21 +1040,21 @@ morocc,27,112,4 script Wickebine#BLS 725,{
next;
mes "- She looks very happy. -";
next;
- set BSMITH_Q, 14;
+ set BSMITH_Q,14;
delitem 1219,1; //Gladius
- cutin "job_black_hucke01",2;
+ cutin "Job_Black_hucke01",2;
mes "[Wickebine]";
mes "Are you with the";
mes "Einbroch Blacksmith Guild?";
mes "Give this message to Geschupenschte!";
next;
- cutin "job_black_hucke03",2;
+ cutin "Job_Black_hucke03",2;
mes "[Wickebine]";
mes "'^660000You're late!";
mes "Do you know how long";
mes "I've been waiting?!^000000'";
next;
- cutin "job_black_hucke02",2;
+ cutin "Job_Black_hucke02",2;
mes "[Wickebine]";
mes "But, this is also";
mes "a masterfully crafted item.";
@@ -1554,49 +1066,51 @@ morocc,27,112,4 script Wickebine#BLS 725,{
mes "Here's the receipt.";
mes "I think you did";
mes "a good job.";
- close2;
mapannounce "morocc","Thanks for delivering, " + strcharinfo(0) + "~!",bc_map;
- cutin "",255;
+ close2;
+ cutin "Job_Black_hucke02",255;
end;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
emotion e_lv;
- cutin "job_black_hucke02",2;
+ cutin "Job_Black_hucke02",2;
mes "[Wickebine]";
mes "Thanks for the delivery.";
close2;
- cutin "",255;
+ cutin "Job_Black_hucke02",255;
+ end;
+ }
+ else {
+ cutin "Job_Black_hucke03",2;
+ mes "[Wickebine]";
+ mes "...";
+ next;
+ mes "[Wickemine]";
+ mes "...";
+ mes "......";
+ next;
+ mes "[Wickmine]";
+ mes "They're late.";
+ mes "They're late,";
+ mes "they're late,";
+ mes "they're late~!";
+ next;
+ mes "[Wickebine]";
+ mes "How long does it take for something to ship from Geschupenschte? Usually, the Geffen Blacksmith Guild is pretty prompt...";
+ next;
+ emotion e_lv;
+ mes "[Wickebine]";
+ mes "Ooohh...";
+ mes "This is very";
+ mes "upsetting...";
+ close2;
+ cutin "Job_Black_hucke03",255;
end;
}
- cutin "job_black_hucke03",2;
- mes "[Wickebine]";
- mes "...";
- next;
- mes "[Wickemine]";
- mes "...";
- mes "......";
- next;
- mes "[Wickmine]";
- mes "They're late.";
- mes "They're late,";
- mes "they're late,";
- mes "they're late~!";
- next;
- mes "[Wickebine]";
- mes "How long does it take for something to ship from Geschupenschte? Usually, the Geffen Blacksmith Guild is pretty prompt...";
- next;
- emotion e_lv;
- mes "[Wickebine]";
- mes "Ooohh...";
- mes "This is very";
- mes "upsetting...";
- close2;
- cutin "",255;
- end;
}
lighthalzen,209,80,4 script Krongast#BLS 734,{
- if ((BSMITH_Q == 11) && (countitem(1119) > 0)) {
+ if (BSMITH_Q == 11 && countitem(1119) > 0) {
mes "[Krongast]";
mes "Ohhhhhh~";
mes "Is it here?";
@@ -1620,7 +1134,7 @@ lighthalzen,209,80,4 script Krongast#BLS 734,{
mes "You double checked?";
mes "Alright then, I'll take it!";
next;
- set BSMITH_Q, 14;
+ set BSMITH_Q,14;
delitem 1119,1; //Tsurugi
mes "[Krongast]";
mes "Oh ho...";
@@ -1643,37 +1157,38 @@ lighthalzen,209,80,4 script Krongast#BLS 734,{
mes "your receipt.";
mes "Thank you for";
mes "your business!";
- close2;
- mapannounce "lighthalzen","" + strcharinfo(0) + "... Thank you for the delivery.",bc_map;
- end;
+ mapannounce "lighthalzen",strcharinfo(0)+"... Thank you for the delivery.",bc_map;
+ close;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
mes "[Krongast]";
mes "Thank you";
mes "for the delivery.";
close;
}
- mes "[Krongast]";
- mes "...";
- next;
- mes "[Krongast]";
- mes "...";
- mes "......";
- next;
- mes "[Krongast]";
- mes "When will the sword";
- mes "I ordered finally arrive?";
- mes "I need to try my ultimate skill, ^2F4F4FFine Edge^000000 with it.";
- next;
- mes "[Krongast]";
- mes "Ahhhhhhh!";
- mes "I need to";
- mes "have that sword!";
- close;
+ else {
+ mes "[Krongast]";
+ mes "...";
+ next;
+ mes "[Krongast]";
+ mes "...";
+ mes "......";
+ next;
+ mes "[Krongast]";
+ mes "When will the sword";
+ mes "I ordered finally arrive?";
+ mes "I need to try my ultimate skill, ^2F4F4FFine Edge^000000 with it.";
+ next;
+ mes "[Krongast]";
+ mes "Ahhhhhhh!";
+ mes "I need to";
+ mes "have that sword!";
+ close;
+ }
}
payon,214,79,4 script Talpiz#BLS 59,{
- if ((BSMITH_Q == 12) && (countitem(1713) > 0)) {
+ if (BSMITH_Q == 12 && countitem(1713) > 0) {
mes "[Talpiz]";
mes "Oh~";
mes "Is it finally here?";
@@ -1717,11 +1232,10 @@ payon,214,79,4 script Talpiz#BLS 59,{
mes "your receipt.";
mes "I really appreciate";
mes "your hard work.";
- close2;
- mapannounce "payon","Thanks, " + strcharinfo(0) + ", you really delivered. Everytime I look at this, I love it even more~",bc_map;
- end;
+ mapannounce "payon","Thanks, " +strcharinfo(0)+ ", you really delivered. Everytime I look at this, I love it even more~",bc_map;
+ close;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
mes "[Talpiz]";
mes "Really,";
mes "I can't say it";
@@ -1729,24 +1243,26 @@ payon,214,79,4 script Talpiz#BLS 59,{
mes "top quality work~!";
close;
}
- mes "[Talpiz]";
- mes "Eh...";
- mes "When will my";
- mes "order arrive?";
- next;
- mes "[Talpiz]";
- mes "A custom made Arbalest";
- mes "with a quality case to hold your eye patches. Only one person can make something like that...";
- next;
- mes "[Talpiz]";
- mes "Ahhhhhh...";
- mes "The waiting";
- mes "is unbearable!";
- close;
+ else {
+ mes "[Talpiz]";
+ mes "Eh...";
+ mes "When will my";
+ mes "order arrive?";
+ next;
+ mes "[Talpiz]";
+ mes "A custom made Arbalest";
+ mes "with a quality case to hold your eye patches. Only one person can make something like that...";
+ next;
+ mes "[Talpiz]";
+ mes "Ahhhhhh...";
+ mes "The waiting";
+ mes "is unbearable!";
+ close;
+ }
}
hugel,168,183,1 script Bismarc#BLS 118,{
- if ((BSMITH_Q == 13) && (countitem(1122) > 0)) {
+ if (BSMITH_Q == 13 && countitem(1122) > 0) {
mes "[Bismarc]";
mes "Sweet God...";
mes "Have you sent";
@@ -1812,33 +1328,34 @@ hugel,168,183,1 script Bismarc#BLS 118,{
mes "your receipt.";
mes "T-take it...!";
mes "It's yours!";
- close2;
- mapannounce "hugel","Thanks, " + strcharinfo(0) + ", for the delivery. You saved my life...",bc_map;
- end;
+ mapannounce "hugel","Thanks, " +strcharinfo(0)+ ", for the delivery. You saved my life...",bc_map;
+ close;
}
- if (BSMITH_Q == 14) {
+ else if (BSMITH_Q == 14) {
mes "[Bismarc]";
mes "Thank you.";
mes "You saved";
mes "my life...";
close;
}
- mes "[Bismarc]";
- mes "^666666*Ghyklk*^000000";
- mes "^666666*Huk Hukk*^000000";
- mes "When will my";
- mes "o-order arrive...?";
- next;
- mes "[Bismarc]";
- mes "The poison in";
- mes "my body... the pain...";
- mes "excruciating... L-lord...";
- next;
- mes "[Bismarc]";
- mes "When is the";
- mes "antidote gonna";
- mes "get here?!";
- close;
+ else {
+ mes "[Bismarc]";
+ mes "^666666*Ghyklk*^000000";
+ mes "^666666*Huk Hukk*^000000";
+ mes "When will my";
+ mes "o-order arrive...?";
+ next;
+ mes "[Bismarc]";
+ mes "The poison in";
+ mes "my body... the pain...";
+ mes "excruciating... L-lord...";
+ next;
+ mes "[Bismarc]";
+ mes "When is the";
+ mes "antidote gonna";
+ mes "get here?!";
+ close;
+ }
}
ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
@@ -1847,7 +1364,7 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "[Mitehmaeeuh]";
mes "Oh...so you're the one who wants to be a blacksmith?";
mes "Nice, heh heh.";
- mes "As you've realized from your past tests, you won't be promoted from Merchant to Blacksmith immediately.";
+ mes "As you've realized from your past tests, you won't be promoted from Merchant to Blacksmtih immediately.";
next;
mes "[Mitehmaeeuh]";
mes "How much do you truly understand about smithing? Are you ready for me to ask you some questions?";
@@ -1861,48 +1378,44 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "you fail. And I won't";
mes "tell you what you missed.";
next;
- set .@wizard_m2,rand(1,3);
- set @blackss_te,0;
+ set .@blackss_te,0;
mes "[Mitehmaeeuh]";
mes "Please listen";
mes "and answer carefully...";
next;
- if (.@wizard_m2 == 1) {
+ switch(rand(1,3)) {
+ case 1:
mes "[Mitehmaeeuh]";
mes "1. What ability";
mes "is required to learn";
mes "the ^8E6B23Discount^000000 skill?";
next;
- if (select("Level 3 Push Cart:Item Appraisal:Level 10 Mammonite:Level 3 Enlarge Weight") == 4) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Level 3 Push Cart:Item Appraisal:Level 10 Mammonite:Level 3 Enlarge Weight") == 4)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "2. When you attack";
mes "with ^8E6B23Hammerfall^000000,";
mes "what status effect can";
mes "you inflict on enemies?";
next;
- if (select("Stun:Blindness:Chaos:Silence") == 1) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Stun:Blindness:Chaos:Silence") == 1)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "3. How much Zeny is spent";
mes "when attacking with the";
mes "mastered Mammonite skill?";
mes "(Level 10 Mammonite)";
next;
- if (select("900 Zeny:1000 Zeny:2000 Zeny:100,000 Zeny") == 2) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("900 Zeny:1000 Zeny:2000 Zeny:100,000 Zeny") == 2)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "4. What is the";
mes "discount rate when";
mes "the ^8E6B23Discount^000000";
mes "skill is mastered?";
next;
- if (select("21 % :22 % :23 % :24 % ") == 4) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("21 % :22 % :23 % :24 % ") == 4)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "5. What is the maximum";
mes "percentage that you can";
@@ -1910,35 +1423,31 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "NPCs after mastering the";
mes "^8E6B23Overcharge^000000 skill?";
next;
- if (select("21 % :22 % :23 % :24 % ") == 3) {
- set @blackss_te,@blackss_te + 20;
- next;
- }
- }
- if (.@wizard_m2 == 2) {
+ if (select("21 % :22 % :23 % :24 % ") == 3)
+ set .@blackss_te,.@blackss_te+20;
+ break;
+ case 2:
mes "[Mitehmaeeuh]";
mes "1. Which of the";
mes "following monsters";
mes "drops Steel?";
next;
- if (select("Zerom:Chon Chon:Skel Worker:Requiem") == 3) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Zerom:Chon Chon:Skel Worker:Requiem") == 3)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "2. Which of the following";
mes "stones can be made from";
mes "Red Bloods?";
next;
- if (select("Flame Heart:Rough Wind:Great Nature:Mystic Frozen") == 1) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Flame Heart:Rough Wind:Great Nature:Mystic Frozen") == 1)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "3. Which of the following";
mes "stones do you have the most";
mes "of in your Kafra Storage?";
next;
select("Wind of Verdure:Red Blood:Green Live:Crystal Blue");
- set @blackss_te,@blackss_te + 20;
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "4. In general,";
mes "which of the following";
@@ -1946,31 +1455,29 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "most damage from a Wind";
mes "attribute weapon?";
next;
- if (select("Fire Property:Water Property:Earth Property:Wind Property") == 2) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Fire Property:Water Property:Earth Property:Wind Property") == 2)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "5. How many Iron Ore";
mes "is required to make";
mes "1 Steel?";
next;
- if (select("5 Iron Ore :4 Iron Ore:3 Iron Ore:6 Iron Ore") == 1) {
- set @blackss_te,@blackss_te + 20;
- next;
- }
- } else {
+ if (select("5 Iron Ore :4 Iron Ore:3 Iron Ore:6 Iron Ore") == 1)
+ set .@blackss_te,.@blackss_te+20;
+ break;
+ case 3:
mes "[Mitehmaeeuh]";
mes "1. What do you usually";
mes "do when you meet someone";
mes "randomly on the street?";
next;
- switch (select("Ask them what they need.:Have a brief conversation.:Ignore them.:Give items and run away.")) {
+ switch(select("Ask them what they need.:Have a brief conversation.:Ignore them.:Give items and run away.")) {
case 1:
- set @blackss_te,@blackss_te + 20;
case 2:
- set @blackss_te,@blackss_te + 20;
- case 3:
- case 4:
+ set .@blackss_te,.@blackss_te+20;
+ break;
+ default:
+ break;
}
mes "[Mitehmaeeuh]";
mes "2. In what village";
@@ -1978,34 +1485,30 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "^8E6B23Crazy Uproar^000000 and";
mes "^8E6B23Change Cart^000000 skills?";
next;
- if (select("Al De Baran:Alberta:Morroc:Izlude") == 2) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Al De Baran:Alberta:Morroc:Izlude") == 2)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "3. From the center of Einbroch,";
mes "in which direction is the Blacksmith Guild?";
next;
- if (select("11 o'clock:5 o'clock:7 o'clock:12 o'clock") == 2) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("11 o'clock:5 o'clock:7 o'clock:12 o'clock") == 2)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "4. In which town";
mes "can you find the";
mes "most Blacksmiths?";
next;
- if (select("Prontera:Morroc:Alberta:Einbroch") == 4) {
- set @blackss_te,@blackss_te + 20;
- }
+ if (select("Prontera:Morroc:Alberta:Einbroch") == 4)
+ set .@blackss_te,.@blackss_te+20;
mes "[Mitehmaeeuh]";
mes "5. Which of the";
mes "following statuses";
mes "affect your skill";
mes "as a Blacksmith?";
next;
- if (select("STR :DEX:AGI :VIT ") == 2) {
- set @blackss_te,@blackss_te + 20;
- next;
- }
+ if (select("STR :DEX:AGI :VIT ") == 2)
+ set .@blackss_te,.@blackss_te+20;
+ break;
}
mes "[Mitehmaeeuh]";
mes "Ah...";
@@ -2014,22 +1517,21 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
next;
mes "[Mitehmaeeuh]";
mes "You earned";
- mes "" + @blackss_te + " points...";
- if (@blackss_te > 70) {
+ mes ""+ .@blackss_te +" points...";
+ if (.@blackss_te > 70) {
mes "Very nice!";
mes "Congratulations!";
mes "You just passed!";
next;
mes "[Mitehmaeeuh]";
- mes "However, don't let your early success make you overconfident.";
- mes "A Blacksmith's life isn't a picnic. As proof that you have passed the test, I give you this Hammer of Blacksmith.";
- set BSMITH_Q, 17;
+ mes "However, don't let your early success make you overconfident. A Blacksmith's life isn't a picnic. As proof that you have passed the test, I give you this Hammer of Blacksmith.";
+ set BSMITH_Q,17;
getitem 1005,1; //Hammer_Of_Blacksmith
changequest 2014,2015;
next;
mes "[Mitehmaeeuh]";
mes "Take this Hammer";
- mes "of Blacksmith and go back to the Einbroch Blacksmith Guild. Okay then? I wish you the best of luck!";
+ mes "of Blacksmith and go back to the Altiregen. Okay then? I wish you the best of luck!";
close;
}
mes "You failed! You better study up before coming back here.";
@@ -2045,13 +1547,13 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "when you are ready...";
close;
}
- if (BSMITH_Q == 17) {
+ else if (BSMITH_Q == 17) {
emotion e_hmm;
mes "[Mitehmaeeuh]";
mes "Yeap, you just passed the Blacksmith job test~";
next;
mes "[Mitehmaeeuh]";
- mes "Why don't you go back to Mr.Geschupenschte?";
+ mes "Why don't you go back to Mr.Altiregen?";
next;
mes "[Mitehmaeeuh]";
mes "Don't forget to bring the Hammer of Blacksmith with you!";
@@ -2060,20 +1562,22 @@ ein_in01,24,41,5 script Blacksmith Guildsman#moc 726,{
mes "Oh, also make sure that you have no skill point left before you change your job~";
close;
}
- emotion e_hmm;
- mes "[Mitehmaeeuh]";
- mes "I had to deal with the heat when I was in Morroc,";
- mes "and now I have to deal with the smog in this Einbroch!";
- next;
- mes "[Mitehmaeeuh]";
- mes "But, I must admit that this is the perfect place for Blacksmiths because we have an abundance of crafting material supplies as well as highly developed equipment.";
- next;
- mes "[Mitehmaeeuh]";
- mes "We, Blacksmiths are trying our best to forge the best of the best weapons.";
- next;
- mes "[Mitehmaeeuh]";
- mes "We pledge our honor on that!";
- close;
+ else {
+ emotion e_hmm;
+ mes "[Mitehmaeeuh]";
+ mes "I had to deal with the heat when I was in Morroc,";
+ mes "and now I have to deal with the smog in this Einbroch!";
+ next;
+ mes "[Mitehmaeeuh]";
+ mes "But, I must admit that this is the perfect place for Blacksmiths because we have an abundance of crafting material supplies as well as highly developed equipment.";
+ next;
+ mes "[Mitehmaeeuh]";
+ mes "We, Blacksmiths are trying our best to forge the best of the best weapons.";
+ next;
+ mes "[Mitehmaeeuh]";
+ mes "We pledge our honor on that!";
+ close;
+ }
}
geffen_in,109,170,3 script Blacksmith Guildsman#gef 726,{
@@ -2089,16 +1593,16 @@ geffen_in,109,170,3 script Blacksmith Guildsman#gef 726,{
mes "I can provide you a teleport service to Izlude, where you can use the airship.";
mes "Would you like to move to Izlude immediately?";
next;
- switch (select("How to go to Einbroch:Yes!:No, thanks.")) {
+ switch(select("How to go to Einbroch:Yes!:No, thanks.")) {
case 1:
mes "[Blacksmith Guildsman]";
mes "Oops, haven't you used the airship yet?";
next;
mes "[Blacksmith Guildsman]";
- mes "Unlike the Rune-Midgarts Kingdom, the Schwaltzvalt Republic has 'the airship' instead of teleport services to move between towns.";
+ mes "Unlike Rune-Midgarts Kingdom, Schwalitzvalt Republic has 'the airship' instead of teleport services to move between towns.";
next;
mes "[Blacksmith Guildsman]";
- mes "In ^3131FF'Izlude'^000000, you can use ^3131FF'the international airship'^000000 which travels between ^3131FFIzlude and Juno in the Schwaltzvalt Republic^000000.";
+ mes "In ^3131FF'Izlude'^000000, you can use ^3131FF'the international airship'^000000 which travels between ^3131FFIzlude and Juno in Schwaltzvalt Republic^000000.";
next;
mes "[Blacksmith Guildsman]";
mes "Take the airship, and go to Juno. Then from Juno, you need to take ^3131FFthe domestic airship^000000 to go to Einbroch.";
@@ -2114,7 +1618,7 @@ geffen_in,109,170,3 script Blacksmith Guildsman#gef 726,{
mes "Excuse me, but you do not have enough money.";
close;
}
- set Zeny, Zeny - 600;
+ set zeny,zeny-600;
warp "izlude",94,103;
end;
case 3:
@@ -2122,4 +1626,4 @@ geffen_in,109,170,3 script Blacksmith Guildsman#gef 726,{
mes "Please take care!";
close;
}
-} \ No newline at end of file
+}