Amon_PRC8/_module/nss/henchusespells.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

17 lines
364 B
Plaintext

int StartingConditional()
{
int nCategory;
for (nCategory = 1; nCategory <= 16; nCategory++)
{
if (GetIsTalentValid(GetCreatureTalentBest(nCategory, 20)))
{
return TRUE;
}
}
if (GetIsTalentValid(GetCreatureTalentBest(TALENT_CATEGORY_DRAGONS_BREATH, 20)))
{
return TRUE;
}
return FALSE;
}