ClassMaster support for new classes.

This commit is contained in:
MobiusDevelopment
2021-11-17 22:42:10 +00:00
parent 2d353a635c
commit 9e39c83dfe
11 changed files with 65 additions and 0 deletions

View File

@@ -563,6 +563,11 @@ public class ClassMaster extends AbstractNpcAI implements IXmlReader
htmltext = "test_server_helper026k.html";
break;
}
case DEATH_SOLDIER:
{
htmltext = "test_server_helper026l.html";
break;
}
}
}
}
@@ -618,6 +623,16 @@ public class ClassMaster extends AbstractNpcAI implements IXmlReader
htmltext = "test_server_helper012c.html";
break;
}
case DEATH_SOLDIER:
{
htmltext = "test_server_helper012d.html";
break;
}
case DEATH_WARRIOR:
{
htmltext = "test_server_helper012e.html";
break;
}
case MAGE:
{
htmltext = "test_server_helper013.html";

View File

@@ -0,0 +1,5 @@
<html><body>Test Server Helper:<br>
Which class do you want to transfer to?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ClassMaster setclass 213">"Death Warrior!"</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ClassMaster setclass 214">"Death Berserker!"</Button>
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Test Server Helper:<br>
Which class do you want to transfer to?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ClassMaster setclass 214">"Death Berserker!"</Button>
</body></html>

View File

@@ -0,0 +1,4 @@
<html><body>Test Server Helper:<br>
To which class do you want to change?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest ClassMaster setclass 213">"Death Warrior."</Button>
</body></html>