Jump to content
Sign in to follow this  
Ryousuke

Forcing first person?

Recommended Posts

Recently got back into editing and I can't quite seem to remember how I would go about forcing first person for every unit in a mission, both on the opfor and blufor sides. And the effect is to be permanent. Any ideas? (Apologies if this has been asked before, I didn't find anything while searching.)

Share this post


Link to post
Share on other sites

Set your server to a specific difficulty to not allow 3 rd person.

Share this post


Link to post
Share on other sites

for singleplayer missions this may help:

no external camera without vehicle:

[] spawn {
	while {(true)} do { 
		if (cameraView == "EXTERNAL") then 
		{ 
			if ((vehicle player) == player) then 
			{ 
				//hintSilent "Hey Cheater!";
				player switchCamera "INTERNAL"; 
			}; 
		}; 
		sleep 0.5; 
	}; 
};

  • Like 1

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  

×