Re: Cutscene script problem
Looks to me like you're missing a right parenthesis somewhere, but I'm no coding guy.
Re: Cutscene script problem
It tells you in the error.
Code:
02.07.10 21:58:14 this left parenthesis is unmatched.: (script startup cutscene
means that you're missing a ")" to match "(script startup"
Re: Cutscene script problem
You have two left parenthesis' at the top of your script "((script" there should only be one.
Also, i'm pretty sure you don't need to have everything in a begin statement.
E: and "(sleep 100" is missing a right parenthesis.
Re: Cutscene script problem
Code:
(script startup cutscene
(cinematic_start)
(camera_control 1)
(camera_set cut1 100)
(sleep 50)
(camera_set cut2 100)
(sleep 50)
(camera_set cut3 100)
(sleep 50)
(camera_set cut4 100)
(sleep 50)
(camera_set cut5 100)
(sleep 50)
(camera_set cut6 100)
(sleep 50)
(camera_set cut7 100)
(sleep 50)
(camera_set cut8 100)
(sleep 50)
(camera_set cut9 100)
(sleep 50)
(camera_set cut10 100)
(sleep 50)
(camera_set cut11 100)
(sleep 50)
(camera_set cut12 100)
(sleep 50)
(camera_set cut13 100)
(sleep 50)
(camera_set cut14 100)
(sleep 50)
(camera_set cut15 100)
(sleep 50)
(camera_set cut16 100)
(sleep 50)
(camera_set cut17 100)
(sleep 50)
(camera_set cut18 100)
(sleep 100)
(camera_control 0)
(sleep 75)
(cinematic_stop)
)
FTFY
Re: Cutscene script problem
((script startup cutscene
Lol.
Re: Cutscene script problem