EN6_PRC8/_module/nss/en5_pm_summon.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

22 lines
499 B
Plaintext

void main()
{
talent tFeat;
if (GetHasFeat(FEAT_SUMMON_GREATER_UNDEAD))
// tFeat = TalentFeat(FEAT_SUMMON_GREATER_UNDEAD);
{
ClearAllActions();
ActionUseFeat(FEAT_SUMMON_GREATER_UNDEAD,OBJECT_SELF);
}
else if (GetHasFeat(FEAT_SUMMON_UNDEAD))
tFeat = TalentFeat(FEAT_SUMMON_UNDEAD);
else if (GetHasFeat(FEAT_ANIMATE_DEAD))
tFeat = TalentFeat(FEAT_ANIMATE_DEAD);
SetLocalInt(OBJECT_SELF,"ANIMATE_DEAD",1);
ClearAllActions();
ActionUseTalentAtLocation(tFeat,GetLocation(OBJECT_SELF));
}