11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
void main()
|
|
{
|
|
object wpPC = GetWaypointByTag("Solomak");
|
|
object oPC = GetPCSpeaker();
|
|
FadeToBlack(oPC);
|
|
DelayCommand(2.0, BlackScreen(oPC));
|
|
DelayCommand(2.8, AssignCommand(oPC, ActionJumpToObject(wpPC)));
|
|
DelayCommand(4.0, FadeFromBlack(oPC));
|
|
}
|
|
|