Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
void main()
{
object oTarget;
effect eVFX;
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Unlock and open "nerkdr2".
oTarget = GetObjectByTag("nerkdr2");
SetLocked(oTarget, FALSE);
AssignCommand(oTarget, ActionOpenDoor(oTarget));
// Destroy objects (not fully effective until this script ends).
eVFX = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1);
oTarget = GetObjectByTag("Nerkaox");
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oTarget);
DestroyObject(oTarget, 3.0);
oTarget = GetObjectByTag("Inrikox");
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oTarget);
DestroyObject(oTarget, 3.0);
DelayCommand(3.1, DestroyObject(GetObjectByTag("Nerka22")));
DelayCommand(3.1, DestroyObject(GetObjectByTag("Inrik2zx")));
}