Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

16
_module/nss/yin_death.nss Normal file
View File

@@ -0,0 +1,16 @@
#include "nw_i0_generic"
//Put this OnDeath
void main()
{
object oPC = GetLastKiller();
location lTarget = GetLocation(oPC);
object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "yang", lTarget);
SetIsTemporaryEnemy(oPC, oSpawn);
AssignCommand(oSpawn, ActionAttack(oPC));
AssignCommand(oSpawn, DetermineCombatRound(oPC));
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_WAIL_O_BANSHEES),lTarget);
}