Blacksmith rework.

Contributed by Stayway.
This commit is contained in:
MobiusDev
2017-08-01 03:32:28 +00:00
parent 8b083e4437
commit bcec9a99f2
148 changed files with 1447 additions and 120 deletions

View File

@@ -1,4 +1,5 @@
<html><body>Head Blacksmith Bronk:<br>
I am Head Blacksmith Bronk of the Black Anvil Guild. The Black Anvil Guild is a proud guild that trains Dwarven Fighters and Artisans. You didn't come because you thought I could teach you, did you? Not just anyone can learn the skills that have been handed down in our race for 2,000 years. Now that you know, you can go back to waving your sword around and hunting poor monsters.<br>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
To change profession means that you have attained a certain degree of ability and experience, and may be promoted to a higher-level profession. You cannot chnage profession here, however I can give you some information. If you are a Dwarven Fighter, you can change profession to become an <color font="LEVEL">Artisan</font> or a <font color="LEVEL">Scavenger</font>. Which profession do you want to know about?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h_Quest FirstClassTransferTalk 30525_no1.html">"Artisan"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h_Quest FirstClassTransferTalk 30525_no2.html">"Scavenger"</Button>
</body></html>

View File

@@ -0,0 +1,5 @@
<html><body>Head Blacksmith Bronk:<br>
To change profession means that you have attained a certain degree of ability and experience, and may be promoted to a higher-level profession. You cannot chnage profession here, however I can give you some information. If you are a Dwarven Fighter, you can change profession to become an <color font="LEVEL">Artisan</font> or a <font color="LEVEL">Scavenger</font>. Which profession do you want to know about?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h_Quest FirstClassTransferTalk 30525_no1a.html">"Artisan"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h_Quest FirstClassTransferTalk 30525_no2b.html">"Scavenger"</Button>
</body></html>

View File

@@ -0,0 +1,6 @@
<html><body>Head Blacksmith Bronk:<br>
The funsamental characteristics of Scavengers and <color font="LEVEL">Artisans</font> are that the Scavenger collects rare materials and the Artisan makes something valuable from those materials. In combat, Artisans use the golems that they construct instead of risking their own bodies. They can actually produce items during combat, and therefore are invaluable during battles.<br>
Among Artisans, the best are selected to be <color font="LEVEL">Warsmiths</font>. Warsmith is an exalted profession with manufacturing skills of the highest level -- they can even make siege golems.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h_Quest FirstClassTransferTalk 30525_no1ab.html">"How can I become an Artisan>?"</Button>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h_Quest FirstClassTransferTalk 30525_no1.html">"Back"</Button>
</body></html>

View File

@@ -0,0 +1,6 @@
<html><body>Head Blacksmith Bronk:<br>
To qualify to become an Artisan, your level must be at least be 20 and you must pass the Test of the Artisan..<br>
However, even if you earn these qualifications, I cannot change your profession. This is because only those who have experienced Human society and understand the great world beyond the Spine Mountains are qualified to change profession. A Dwarf must have a full understanding of the outside world's economy.<br>
To take the Test of the Artisan, go to <color font="LEVEL">Blacksmith Silvera</font>. She will give you detailed instructions. If you pass the test and earn your qualification, go to the <color font="LEVEL">town of Gludio</font> and meet <color font="LEVEL">Head Blacksmith Tapoy</font> in the blacksmith's there. If you have met the qualifications, he will change your profession to Artisan.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h_Quest FirstClassTransferTalk 30525_no1.html">"Back"</Button>
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Head Blacksmith Bronk:<br>
I teach Artisans. If you want to be a <color font="LEVEL">Scavenger</font>, then go to <color font="LEVEL">Warehouse Chief Reed</font> in the warehouse. He will provide you with information.<br>
<Button ALIGN=LEFT ICON="RETURN" action="bypass -h_Quest FirstClassTransferTalk 30525_no2.html">"Back"</Button>
</body></html>

View File

@@ -64,7 +64,21 @@ public final class FirstClassTransferTalk extends AbstractNpcAI
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
return event;
String htmltext = null;
switch (event)
{
case "30525_no1.html":
case "30525_no1a.html":
case "30525_no1b.html":
case "30525_no2.html":
case "30525_no2a.html":
{
htmltext = event;
break;
}
}
return htmltext;
}
@Override