Jump to content
Sign in to follow this  
yourry

Stance command and SetStance

Recommended Posts

I wanted to know if there was a way to apply the position on a player who used the stance command.

SetStance the command does not exist.

I tried the following:

_stance = "CROUCH";
//player playMove _stance; //--- Not working !
_anim 	= (_stance call BIS_fnc_ambientAnimGetParams) select 0;
player switchMove _anim; 

But I have this error :

["Animation set not recognized!",_unit,_animset] call BIS_fnc_error;

The function seems not suitable for my case I not use it correctly.

Do you clench how I can do?

Thank you

Share this post


Link to post
Share on other sites
player playAction "PlayerStand";
player playAction "PlayerCrouch";
player playAction "PlayerProne";

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  

×