Alex116 1 Posted December 24, 2012 (edited) I'd like to have some lines of text come up into the screen at the startt of the mission. I tried achieving itt with sidechat etc. No luck, since the sidechat pops up instantly. I need it to roll up and add a sound effect to it. Just as in the above video, after 7 seconds you see the text I'd like to have. Is this possible? Im not sure but I believe I saw this in a mission somewhere. Edited December 24, 2012 by Alex116 Share this post Link to post Share on other sites
Gunter Severloh 4071 Posted December 24, 2012 (edited) Hi, I used something like this in some of my missions for coop: Intro.sqf // Loadingtext sleep 10; // Info text [str("Oct 12th") , str("04:30hrs")] spawn BIS_fnc_infoText; sleep 10; [str("SpecOPs Team inserted")] spawn BIS_fnc_infoText; sleep 10; [str("Factory infiltrate") , str("Created By") , str("Gunter Severloh")] spawn BIS_fnc_infoText; adding the sleep 10 will give the text a delay, but if I remember correctly its been several months the info text has a sound to it. Edited December 26, 2012 by Gnter Severloh Share this post Link to post Share on other sites