Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
//checks to see if hench has prerequisites for assasin prestige class
//written by kookoo 8-13-8
int StartingConditional()
{
object oHench = OBJECT_SELF;
//must be evil
if (GetAlignmentGoodEvil(oHench) == ALIGNMENT_EVIL)
{
//must have 8 ranks of hide skill
if (GetSkillRank(SKILL_HIDE, oHench) >= 8)
{
//must have 8 ranks of move silently skill
if (GetSkillRank(SKILL_MOVE_SILENTLY, oHench) >= 8)
{
return TRUE;
}
}
}
return FALSE;
}