Page MenuHomeFeedback Tracker

[Feature Request] BIS_fnc_showSubtitle optional parameter-duration (easy change)
New, NormalPublic

Description

BIS_fnc_showSubtitle is currently only shown for 10 seconds.
With longer text it isn´t enough to read it and we have to split the text in smaller texts.
With optional parameter it could be easy to override duration.

["General Kenobi", "Hello there !",FALSE,20] spawn BIS_fnc_showSubtitle;
parameters:
[
 STRING,//Name of the person speaking.
 STRING,//Contents of the subtitle.
 BOOLEAN,//optional use TitleRsc <default FALSE> (already implemented)
 NUMBER//optional duration <default 10>
]

Details

Severity
Feature
Resolution
Open
Reproducibility
N/A
Operating System
Windows 10 x64
Category
Scripting
Additional Information

add optional parameter duration and modify the sleep from 10 to _duration.

["_duration",10,[0]]//added parameter
//later in script
sleep _duration;

Should be easy enough and it won´t affect anything.

Event Timeline