Home   Help Search Login Register  

Author Topic: Movie making question  (Read 1842 times)

0 Members and 1 Guest are viewing this topic.

Offline trooper543

  • Members
  • *
Movie making question
« 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

Offline Wolfrug

  • Addons Depot
  • Former Staff
  • ****
  • Official OFPEC Old Timer
Re: Movie making question
« Reply #1 on: 08 Dec 2007, 00:04:45 »
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.
"When 900 years YOU reach, look as good you will not!"

Offline Surdus Priest

  • Members
  • *
  • Only I can Forgive You!
Re: Movie making question
« Reply #2 on: 08 Dec 2007, 03:03:35 »
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.

Campaigns are hard, I'll stick with scripting for now!

Offline trooper543

  • Members
  • *
Re: Movie making question
« Reply #3 on: 08 Dec 2007, 10:47:39 »
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


Offline Surdus Priest

  • Members
  • *
  • Only I can Forgive You!
Re: Movie making question
« Reply #4 on: 08 Dec 2007, 20:13:09 »
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.
Campaigns are hard, I'll stick with scripting for now!

Offline JasonO

  • OFPEC Patron
  • ****
  • Oh no...
    • The New Life RPG
Re: Movie making question
« Reply #5 on: 09 Dec 2007, 17:11:44 »
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:
Code: [Select]
IsServer
b) you could also make it so only players with your player name can use it:

Condition:
Code: [Select]
name player == YourPlayerName
Replacing YourPlayerName with your actuall ingame name.

Then, the activation would simply be
Code: [Select]
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).