Files
DayZ-Epoch/SQF/dayz_code/compile/player_music.sqf
2016-03-21 17:58:23 -04:00

10 lines
296 B
Plaintext

while {!r_player_dead} do {
_num = round(random 37);
_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;
};
uiSleep _pause;
};