Jump to content
Sign in to follow this  
Nicous

Radio trigger question

Recommended Posts

Hi all!

i have a simple question, I know how to do a radio trigger, but, i want to set a time to this radio to become available...

after 10 min, this radio became available...

thx ppl ! <3

Share this post


Link to post
Share on other sites

You can use the setRadioMsg command to make it invisible until you are ready for it to appear.

Put this in your init.sqf:

1 setRadioMsg "NULL";
_nul = [] execVM "tenMinTimer.sqf";

Create a script callled tenMinTimer.sqf (or whatever you want to call it) and put this in it:

sleep 600; // Wait 600 secs (10 mins)
1 setRadioMsg "Put Whatever You Want Here";

Good luck!

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  

×