Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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));
}