ANZAC dayz Custom sound

mankeysocks

New Member
hay guys ive been looking around the forums trying to trigger / set sound to play at dawn service on anzac day this year hope someone can point me in right direction as all the post i have read are not really what were after [there is 1 sound to trigger at set time of 6amish server time]

thanks in advanced hope we can get this working loveing your work guys keep it up

CSM.MankeySocks.ANZAC.5th

all welcome on australian ANZAC dawn service

http://anzacgamers.net/mybb/index.php {whitelisting app}
 
You can do this with script - something with an

if (time == _somevalue) then {
playSound "soundname";
};

where _somevalue is time of dawn...you'll have to look into this because I'm not sure how you'd call the script at dawn, this will run the script and play the sound if time is the value - so assuming you can figure out what time will equal at dawn you can do this. Run the script in a loop, eg while (true)

You could use a waitUntil (//put code here that determines when dawn is//) as well, start the script and it will wait until true to execute the rest. For a onetime thing, assuming you have multiple dawns per restart.
 
Back
Top