Jump to content
Sign in to follow this  
ruger392

How to show black ins and black outs globally?

Recommended Posts

I have created a mission in the ArmA 3 alpha editor that uses cutText for black-ins and black-outs, however the cutText function is never played globally - just locally (meaning only the person that clicked, in my case, the "Set up camp" action can see the black-ins, black-outs and text). Is there any way to make this happen globally?

Share this post


Link to post
Share on other sites

You can use BIS_fnc_MP for that.

Example:

Init.sqf

btk_fnc_MPcutText = { cutText [(_this select 0), (_this select 1), (_this select 2)]; };

Usage

[["I'm global!", "BLACK OUT", 2], "btk_fnc_MPcutText"] call BIS_fnc_mp;
[["Me too!", "BLACK IN", 3], "btk_fnc_MPcutText"] call BIS_fnc_mp;

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  

×