Jump to content
iV - Ghost

BIS_fnc_showSubtitle broken?

Recommended Posts

Is the function BIS_fnc_showSubtitle broken?

Can't use it and I don't know why it won't work.

Testet without Mods or cDLC's.

 

 

Text in console:

["CROSSROAD", "Mission is a go, I repeat, mission is a go, Crossroad, out."] spawn BIS_fnc_showSubtitle;

 

Share this post


Link to post
Share on other sites

Hi, it works on my end. Try to check ingame options if you have subtitles turned on. Options->Game->Subtitles->Enabled. Or run command getSubtitleOptions in the console, that should return [true,true]. If you have it enabled, try to check what is returned by running this script in debug console.

_scriptHandle = ["CROSSROAD", "Mission is a go, I repeat, mission is a go, Crossroad, out."] call BIS_fnc_showSubtitle;
if (isNull _scriptHandle) exitWith {
if (getSubtitleOptions select 0) then {"Function ran into some problem, deeper check needed"} else {"Enable subtitles in game options"};};
"Script ran witout issue";

 

Share this post


Link to post
Share on other sites

Hey,

 

thanks a lot. The game option "subtitle" was the problem.

I don't knew that. Now it works fine!

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

×