This is my first cog, tell me if it is right please!!!!!
# Jedi Knight Cog Script
#
# cutscene.COG
#
# Description
#
#
# This Cog is Not supported by LucasArts Entertainment Co
symbols
thing player
thing jerec
thing door
thing Camera
thing Camera2
float speed
float speed
message killed
end
# ========================================================================================
code
killed:
jkBeginCutscene();
StopThing(player);
SetCameraFocus(0, Camera);
MoveToFrame(door, 1, speed);
MoveToFrame(Camera, 1, speed1);
SetCameraFocus(0, Camera2);
Sleep(4);
jkEndCutscene();
SetCameraFocus(0, player);
# ........................................................................................
end
# Jedi Knight Cog Script
#
# cutscene.COG
#
# Description
#
#
# This Cog is Not supported by LucasArts Entertainment Co
symbols
thing player
thing jerec
thing door
thing Camera
thing Camera2
float speed
float speed
message killed
end
# ========================================================================================
code
killed:
jkBeginCutscene();
StopThing(player);
SetCameraFocus(0, Camera);
MoveToFrame(door, 1, speed);
MoveToFrame(Camera, 1, speed1);
SetCameraFocus(0, Camera2);
Sleep(4);
jkEndCutscene();
SetCameraFocus(0, player);
# ........................................................................................
end