Hello! Hogyan tudnám megoldani , hogy ezt mindenki hallja a szerveren?
function PDGarageAlarm ()
local x, y, z = getElementPosition(source)
PDAlarm = playSound3D(\"alarm.wav\",xyz, true)
setTimer(stopPDAlarm, 60000, 1, client)
setSoundVolume(PDAlarm, 3)
setSoundMaxDistance(PDAlarm, 100)
end
addCommandHandler(\"alarm\", PDGarageAlarm)
function stopPDAlarm ()
stopSound (PDAlarm)
end