First Off, Kyle, and the team, I must say that I have wished for something of the sort in my dreams! I used to be scared of being a DM, but not with your program! Keep on the good fight!
Snapshot wrote:
The Regex:
_ClassRegexString = "(";
foreach (Rule rule in Rule.Rules.Where(a => (a.Type == "Classes"||a.Type =="Races")))
{
//remove plural from race name - this is for SLA {Dwarven may be incorrect} may need fixed if dwarves ever get a racial SLA
if (rule.Type == "Races")
{
rule.Name = rule.Name.TrimEnd('s');
}
if (!first)
{
_ClassRegexString += "|";
}
first = false;
_ClassRegexString += rule.Name;
}
//Wizard Specialist "as class names"
_ClassRegexString += "|Abjurer|Conjurer|Diviner|Enchanter|Evoker|Illusionist|Necromancer|Transmu ter";
// special SLA names
_ClassRegexString += "|Domain" + "|Bloodline" + "|Arcane School";
_ClassRegexString += ")";
Now, reading this, I saw in the regex (ref post made on the Jul 5, 2014, 08:50 PM), there seems to be a place for wizard specialty school, but also priest domains. When looking into the formatting, I can't seem to have the domain appear like in the NPC's (For reference, in the Death Priest, spells Prepared).
I'd like to be able to add that to my PC'S, same thing for the specialist.
Any tips?