mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
12 lines
342 B
Plaintext
12 lines
342 B
Plaintext
private["_num","_sound","_length","_pause"];
|
|
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;
|
|
};
|