void main() {
if ((GetIsPC(GetEnteringObject()) == 1))
{
location lJump = Location(Vector(244.0, 55.1, 8.99), 0.0);
int iIndex = 0;
object oTarget = GetPartyMemberByIndex(iIndex);
while(GetIsObjectValid(oTarget) == 1)
{
AssignCommand(oTarget, ActionJumpToLocation(lJump));
iIndex++;
oTarget = GetPartyMemberByindex(iIndex);
}
AssignCommand(GetFirstPC(), ActionStartConversation(GetObjectByTag("DarthMalak"), "scene_06", 0, 0, 1, "", "", "", "", "", ""));
PlayRoomAnimation("StuntRoom40d", 1);
}
}