diff --git a/arma/client/addons/common/CfgSounds.hpp b/arma/client/addons/common/CfgSounds.hpp new file mode 100644 index 0000000..b3e080e --- /dev/null +++ b/arma/client/addons/common/CfgSounds.hpp @@ -0,0 +1,23 @@ +class CfgSounds { + sounds[] = {}; + class FORGE_timerBeep { + name = "FORGE_timerBeep"; + sound[] = {QUOTE(PATHTOF(sounds\timerClick.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_timerBeepShort { + name = "FORGE_timerBeepShort"; + sound[] = {QUOTE(PATHTOF(sounds\timerClickShort.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_timerEnd { + name = "FORGE_timerEnd"; + sound[] = {QUOTE(PATHTOF(sounds\timerEnd.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_defused { + name = "FORGE_defused"; + sound[] = {QUOTE(PATHTOF(sounds\defused.wav)), 1, 3}; + titles[] = {}; + }; +}; diff --git a/arma/client/addons/common/config.cpp b/arma/client/addons/common/config.cpp index 2ae3066..68199a3 100644 --- a/arma/client/addons/common/config.cpp +++ b/arma/client/addons/common/config.cpp @@ -17,4 +17,5 @@ class CfgPatches { }; #include "CfgEventHandlers.hpp" +#include "CfgSounds.hpp" #include "CfgVehicles.hpp" diff --git a/arma/client/addons/common/sounds/defused.wav b/arma/client/addons/common/sounds/defused.wav new file mode 100644 index 0000000..a3d067f Binary files /dev/null and b/arma/client/addons/common/sounds/defused.wav differ diff --git a/arma/client/addons/common/sounds/timerClick.wav b/arma/client/addons/common/sounds/timerClick.wav new file mode 100644 index 0000000..4dcbbeb Binary files /dev/null and b/arma/client/addons/common/sounds/timerClick.wav differ diff --git a/arma/client/addons/common/sounds/timerClickShort.wav b/arma/client/addons/common/sounds/timerClickShort.wav new file mode 100644 index 0000000..8216e58 Binary files /dev/null and b/arma/client/addons/common/sounds/timerClickShort.wav differ diff --git a/arma/client/addons/common/sounds/timerEnd.wav b/arma/client/addons/common/sounds/timerEnd.wav new file mode 100644 index 0000000..1297da8 Binary files /dev/null and b/arma/client/addons/common/sounds/timerEnd.wav differ diff --git a/arma/server/addons/common/CfgSounds.hpp b/arma/server/addons/common/CfgSounds.hpp new file mode 100644 index 0000000..b3e080e --- /dev/null +++ b/arma/server/addons/common/CfgSounds.hpp @@ -0,0 +1,23 @@ +class CfgSounds { + sounds[] = {}; + class FORGE_timerBeep { + name = "FORGE_timerBeep"; + sound[] = {QUOTE(PATHTOF(sounds\timerClick.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_timerBeepShort { + name = "FORGE_timerBeepShort"; + sound[] = {QUOTE(PATHTOF(sounds\timerClickShort.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_timerEnd { + name = "FORGE_timerEnd"; + sound[] = {QUOTE(PATHTOF(sounds\timerEnd.wav)), 1, 3}; + titles[] = {}; + }; + class FORGE_defused { + name = "FORGE_defused"; + sound[] = {QUOTE(PATHTOF(sounds\defused.wav)), 1, 3}; + titles[] = {}; + }; +}; diff --git a/arma/server/addons/common/config.cpp b/arma/server/addons/common/config.cpp index 95a8f61..af40e08 100644 --- a/arma/server/addons/common/config.cpp +++ b/arma/server/addons/common/config.cpp @@ -17,4 +17,5 @@ class CfgPatches { }; #include "CfgEventHandlers.hpp" +#include "CfgSounds.hpp" #include "CfgVehicles.hpp" diff --git a/arma/server/addons/common/sounds/defused.wav b/arma/server/addons/common/sounds/defused.wav new file mode 100644 index 0000000..a3d067f Binary files /dev/null and b/arma/server/addons/common/sounds/defused.wav differ diff --git a/arma/server/addons/common/sounds/timerClick.wav b/arma/server/addons/common/sounds/timerClick.wav new file mode 100644 index 0000000..4dcbbeb Binary files /dev/null and b/arma/server/addons/common/sounds/timerClick.wav differ diff --git a/arma/server/addons/common/sounds/timerClickShort.wav b/arma/server/addons/common/sounds/timerClickShort.wav new file mode 100644 index 0000000..8216e58 Binary files /dev/null and b/arma/server/addons/common/sounds/timerClickShort.wav differ diff --git a/arma/server/addons/common/sounds/timerEnd.wav b/arma/server/addons/common/sounds/timerEnd.wav new file mode 100644 index 0000000..1297da8 Binary files /dev/null and b/arma/server/addons/common/sounds/timerEnd.wav differ