Jump to content
Sign in to follow this  
Aculaud

Need a script made!

Recommended Posts

its a camera script. Heres what i want it to do.

First, it needs to go from one place to the next, focusing on a certain unit.

Then, it needs to shift imediately to another camera that goes from there to another point while focusing on another unit.

then, it needs to go pretty fast to another point focusing on a third unit.

The rest, i can do myself. Thanks.

Share this post


Link to post
Share on other sites

What is the hard part of that actually? confused.gif

Maybe I don't understand the question fully..

If you want camera to move to a certain spot, and be aimed at somebody

all the time: Set that "somebody" as cam's target, and then fiddle with

the "setrelpos" command..

Could you be a little more specific, so I can see if I can help?

Share this post


Link to post
Share on other sites

Just use something like :

</span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">

_camera = "camera" camCreate [0,0,0]

_camera cameraEffect ["internal","back"]

_camera camsettarget target1

_camera camsetrelpos [1,12,1.5]

_camera camcommit 0

_camera camsettarget target1

_camera camsetrelpos [2,10,2]

_camera camcommit 5

~5

_camera camsettarget target2

_camera camsetrelpos [2,10,2]

_camera camcommit 0

_camera camsettarget target2

_camera camsetrelpos [5,13,3]

_camera camcommit 5

~5

_camera camsettarget target3

_camera camsetrelpos [5,13,3]

_camera camcommit 3

~3

_camera cameraEffect ["terminate","back"]

camDestroy _camera

exit

<span id='postcolor'>

This is not exactly what you want but just play around with it.

RED

Share this post


Link to post
Share on other sites

alright, i'll see what i can do. Thanks, RED

Share this post


Link to post
Share on other sites

ok, this is good. I need to know one last thing. How do i add a string that makes the camera point at something else while its at "target 3" and zoom out slowly?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×