ruger392 14 Posted March 14, 2013 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
sxp2high 23 Posted March 14, 2013 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