Smart Games 76 Posted October 22, 2019 I would like to create a Startscreen with black background like this: Mission Name //text given by first variable Made by Me //text given by second variable But I am not able to create two titletexts at the same time. So i tried to use titletext with structured text: titleText [_var1 <br/>_var2,"PLAIN",-1,false,true]; //not working Any Ideas? Share this post Link to post Share on other sites
killzone_kid 1329 Posted October 22, 2019 Does example on biki not work for you? https://community.bistudio.com/wiki/titleText Share this post Link to post Share on other sites
Smart Games 76 Posted October 22, 2019 I tried something like that: _var1 = "HI"; _var2 = "You"; titleText [_var1<br/>_var2, "PLAIN", -1, true, true]; It's not working Share this post Link to post Share on other sites
pierremgi 4830 Posted October 22, 2019 titleText [format ["%1<br/>%2",_var1,_var2], "PLAIN",-1, true, true]; 1 1 Share this post Link to post Share on other sites
wogz187 1086 Posted October 22, 2019 Soon man, MMF_fnc_intro: this function plays a customizable intro sequence example: [0, "Mission Maker Framework", "Version 0002", "DEMO", 0] call MMF_fnc_intro; _playIntro determine type of intro _missionName "anything" _missionAuthor "anything" _missionVersion "anything" _duration 0-10 see function Can open the arsenal, black screen with text, text over screen, etc. 1 Share this post Link to post Share on other sites
Twiznak 57 Posted May 1, 2021 On 10/22/2019 at 12:02 PM, pierremgi said: titleText [format ["%1<br/>%2",_var1,_var2], "PLAIN",-1, true, true]; You are my hero! Works like a charm, for anyone who is interested in knowing the resolution of this Question. Thank you PierreMGI. Share this post Link to post Share on other sites