Forum

> > Stranded II > Scripts > Camera sequence script!
Forums overviewStranded II overview Scripts overviewLog in to reply

English Camera sequence script!

2 replies
To the start Previous 1 Next To the start

old Camera sequence script!

Stranded_Guy2910
User Off Offline

Quote
I'm using this script:
on:trigger {
                    seqstart;
                    movecam 0,2500,2;
                    movecam 2500,5000,3;
                    movecam 5000,7500,4;
                    seqend 7500;
}

But it's not working, when the sequence start it just go to the camera with the id2, and then nothing happend.

old Re: Camera sequence script!

uyuyuy99
User Off Offline

Quote
I know this is kinda late, but in case you still want an answer: the problem is that it's repeatedly starting the sequence over again, so you need to do this:

1
2
3
4
5
6
7
8
9
10
11
12
13
on:start {
                    local $triggered=0;
}
on:trigger {
	if ($triggered==0) {
                    $triggered=1;
                    seqstart;
                    movecam 0,2500,2;
                    movecam 2500,5000,3;
                    movecam 5000,7500,4;
                    seqend 7500;
	}
}
edited 2×, last 19.11.11 02:28:52 am
To the start Previous 1 Next To the start
Log in to reply Scripts overviewStranded II overviewForums overview