Amon_PRC8/_module/nss/kryxdies.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

18 lines
813 B
Plaintext

void main()
{
SetLocalInt(OBJECT_SELF, "SayOnce", 1);
location lTarget = GetLocation(OBJECT_SELF);
object oTarget = (GetWaypointByTag("KryxPoint"));
effect eEffect1 = EffectVisualEffect(VFX_IMP_TORNADO);
effect eEffect2 = EffectVisualEffect(VFX_FNF_SCREEN_SHAKE);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect1, lTarget);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect2, lTarget);
DelayCommand(1.0, ExecuteScript("kryxexplosions", OBJECT_SELF));
DelayCommand(2.0, ExecuteScript("kryxexplosions", OBJECT_SELF));
DelayCommand(3.0, ExecuteScript("kryxexplosions", OBJECT_SELF));
DelayCommand(4.0, ExecuteScript("kryxexplosions", OBJECT_SELF));
DelayCommand(5.0, ExecuteScript("kryxexplosions", OBJECT_SELF));
DelayCommand(6.0, ExecuteScript("kryxkillself", OBJECT_SELF));
}