OFPEC Forum
Editors Depot - Mission Editing and Scripting => ArmA - Editing/Scripting Multiplayer => Topic started by: trooper543 on 07 Dec 2007, 23:16:40
-
Hi there chaps
what i am trying to do at present is to create a movie in arma but using muliplayer as i have two people that will carry out the acting side to acheive what i want. How do i get the camera. sqs to only apply to me and not effect the other players?
any help would be much appreciated
-
This probably belongs in the MP side, but...
AFAIK, camera.sqs is Local? As is all kinds of camera-scripty things. Otherwise everytime someone new logged into Evolution they'd get the little Evolution video + music, eh? :D
But, err, MP scripting makes no sense to me anyway.
Wolfrug out.
-
you will need to apply a third party script into the game from your game folder.
the only time i have seen this done is with the TKC cheatpack, but im sure everyone knows that lol.
an addon may be required.
-
Surdus Priest
Mate once again thanks for the help could you please explain where i can find such an addon or how do i go about setting this up
thanks
-
place this in the camera mans (your unit) init field:
this exec "camera.sqs"
then tell your friends to press "V".
this should abort them from the script, and leave you to use the camera.
-
You could also have a trigger with one of the following conditions
a) if your the server (hosting the mission) you could use this:
Condition:
IsServer
b) you could also make it so only players with your player name can use it:
Condition:
name player == YourPlayerName
Replacing YourPlayerName with your actuall ingame name.
Then, the activation would simply be
player exec "camera.sqs"
A bit more advanced, but what Surdus Priest said will work - this is just incase you have a reason why they can't press V.. (for some reason).