Files
DayZ-Epoch/SQF/dayz_code/compile/player_music.sqf
icomrade b96cd2d971 Update compiles - 2 more files to do
fn_selfActions.sqf
player_updateGui.sqf
2016-02-29 00:26:12 -05:00

11 lines
342 B
Plaintext

private ["_sound","_num","_length","_pause"];
while {!r_player_dead} do {
_num = floor(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;
};