Initial Commit

Initial Commit [v1.01]
This commit is contained in:
Jaysyn904
2025-04-03 19:00:46 -04:00
parent 9c53be196a
commit c5cffc37af
15285 changed files with 13371551 additions and 2 deletions

12
_module/nss/kennydies.nss Normal file
View File

@@ -0,0 +1,12 @@
void main()
{
int pdam = 1984;
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(pdam, DAMAGE_TYPE_PIERCING), GetLastKiller(), 0.0f);
location lTarget = GetLocation(OBJECT_SELF);
object oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE);
while (GetIsObjectValid(oTarget))
{
AssignCommand(oTarget, ActionSpeakString("YOU KILLED KENNY! YOU BASTARD!."));
oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_HUGE, lTarget, TRUE, OBJECT_TYPE_CREATURE);
}
}