Nicous 10 Posted April 29, 2013 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
loyalguard 15 Posted April 29, 2013 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