Jump to content
Sign in to follow this  
hidden sniper

pauses in sidechat

Recommended Posts

Hi

Im trying to make a simple script in which two squads have a conversation in sidechat. The problem is that when the script is activated all the sidechat text all appears at once and goes before it can be read. So I was wondering if it is possible to put pauses inbetween the sidechat messages so that they appear one at a time.

At the moment my script looks sought of like this but longer

man1 sidchat "blblblablablabla";

man2 sidechat "blablablabla";

Share this post


Link to post
Share on other sites

SQS script:

man1 sideChat "First line"
~5
man2 sideChat "5 seconds later..."

SQF script:

man1 sideChat "First line";
sleep 5;
man2 sideChat "5 seconds later...";

Share this post


Link to post
Share on other sites

Yes of course ; if you are using sqs filetype, use ~3 (for 3s) ; for sqf use sleep 3;

here you are ! ;)

Edit : beaten !

Edited by Lou Montana

Share this post


Link to post
Share on other sites

Thanks alot guys for the fast replies i have got it to work now in game so i can carry on making my mission now. :)

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
Sign in to follow this  

×