Files
DayZ-Epoch/SQF/dayz_code/compile/player_music.sqf
icomrade e54b9983dd Replace forEach with Count
Use count where you do not need _forEachIndex variable, it's quicker
than forEach.
2014-05-27 15:37:57 -04:00

11 lines
340 B
Plaintext

private ["_sound","_num","_length","_pause"];
while {!r_player_dead} do {
_num = floor(random 36);
_sound = "z_suspense_" + str(_num);
_length = getNumber(configFile >> "cfgMusic" >> _sound >> "Duration");
_pause = ((random 5) + 2) + _length;
if (!r_player_unconscious && !r_pitchWhine) then {
playMusic _sound;
};
sleep _pause;
};