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,36 @@
//Put this script OnClick or OnFailToOpen
void main()
{
object oTarget;
location lTarget;
object oPC = GetClickingObject();
// Cutscene functions:
BlackScreen(oPC);
if (!GetIsPC(oPC)) return;
oTarget = GetWaypointByTag("WP_crbthm0_1");
lTarget = GetLocation(oTarget);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
oTarget=GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(oTarget))
{
AssignCommand(oTarget, ClearAllActions());
AssignCommand(oTarget, ActionJumpToLocation(lTarget));
oTarget=GetNextFactionMember(oPC, FALSE);
}
// Cutscene functions:
DelayCommand(0.1, FadeFromBlack(oPC));
}