Scary ambient sounds ingame, that cannot be disabled.

Ganseki

New Member
Scary ambient sounds ingame, that cannot be disabled.

I've starter working on such script, on the beginign im trying to use woman scream from dayz_sfx.pbo/gore

to make this sound play randomly for every player only

ive started with smth like this but this doesnt work at all,


init.sqf:
Code:
null = [] execVM "scream.sqf";


scream.sqf
Code:
scream = {
playsound "\z\addons\dayz_sfx\gore\scream_woman_4";
sleep (0.01 + random 0.01);
while {true} do {
player spawn scream;
sleep (160 + random 120);
};


im noob with scripts so please help
 
Back
Top