I just finished his cutscene the other day and the rest of it works fine. The problem is that the "CutCreatePCCopy"(created by adding in the '#include "x2_inc_cutscene"' statement) function seems to be making a copy of all the characters in the scene, who just stand there while the PC Copy goes thorough the motions. I tried replacing the PC Copy with the real PC, but it always makes the PC invisible, and I tried removing the effect but it does not work.
From my script:
location LocPCCopy = GetLocation(GetWaypointByTag("WP_PC_COPY"));
object oCopy = CutCreatePCCopy(oPlayer, LocPCCopy, "PreludePCCopy");
(oPlayer is oPC)
From Official HotU Campaign:
location lLoc = GetLocation(GetWaypointByTag("wp_cut20_pccopy_start"));
object oCopy = CutCreatePCCopy(oPC, lLoc, "PreludePCCopy");
I dont see what I did wrong here, if anyone can enlighten me I would be very grateful