Files
HeroesStone_PRC8/_module/nss/airlessaura2.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

19 lines
380 B
Plaintext

#include "nw_i0_spells"
#include "inc_suffocate"
void main()
{
//Declare major variables
object oCaster = GetAreaOfEffectCreator();
object oTarget = GetFirstInPersistentObject();
while(GetIsObjectValid(oTarget))
{
if(GetIsEnemy(oTarget, oCaster))
{
Suffocate(oTarget);
}
oTarget = GetNextInPersistentObject();
}
}