I am attempting to create a multiclass henchman using the guide created by Huntsman. As instructed, I am editing the x0_i0_henchman script by adding the following line of code (in bold--this is just part of the much larger script):
if ( sTag == "x0_hen_xan" )
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_BARBARIAN, 2);
}
else if (sTag == "x0_hen_dor")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_CLERIC, 20);
}
else if (sTag == "henchman_etaro")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_ROGUE, 20);
} else if (sTag == "x0_hen_dee")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_ROGUE, 0);
}
else if (sTag == "garey")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_CLERIC, 20);
}
else if (sTag == "olisha")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_BARD, 20);
}
else if (sTag == "hench_elvalith")
{
LevelHenchmanUpTo(oAssociate, nLevel, CLASS_TYPE_CLERIC, 20);
}
else
{
LevelHenchmanUpTo(oAssociate, nLevel);
}
I am positive I am doing everything correctly. The henchman with that tag is currently a level 1 Ranger. I want him to level up as a Ranger/Rogue. However, he is only leveling up a single-class Ranger.
I'm absolutely stumped. Barring some stupid typo or careless error, I have no idea what could possibly be going wrong. This happens with other multiclass henchmen I am attempting to make, also.
Suggestions?
Modifié par dr. b, 12 août 2013 - 06:12 .