Ancordia_PRC8/_module/nss/henchusespells.nss

17 lines
364 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
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;
}