mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
8f3b06f0f4
Zombies: fixed issue with multiple targets moved CfgSounds and CfgSay3Dhandler to mission file added new mission config (CfgSwitchMovehandler) for EPOCH_server_handle_switchMove function minor cleanup to EPOCH_server_handle_say3D usages.
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
/*
|
|
Author: Aaron Clark - EpochMod.com
|
|
|
|
Contributors:
|
|
|
|
Description:
|
|
CfgSounds
|
|
|
|
Licence:
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
Github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgSounds.hpp
|
|
*/
|
|
class CfgSounds
|
|
{
|
|
class dog_bark
|
|
{
|
|
sound[] = { "@A3\Sounds_F\ambient\animals\dog1", 0.6, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class dog_cry
|
|
{
|
|
sound[] = { "@A3\Sounds_F\ambient\animals\dog4", 0.6, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class hed_cluck0
|
|
{
|
|
sound[] = { "@A3\Sounds_F\ambient\animals\hen1", 0.3, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class hed_cluck1
|
|
{
|
|
sound[] = { "@A3\Sounds_F\ambient\animals\hen2", 0.3, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class hed_cluck2
|
|
{
|
|
sound[] = { "@A3\Sounds_F\ambient\animals\hen3", 0.3, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class cultist_talk
|
|
{
|
|
sound[] = { "@x\addons\a3_epoch_assets\sounds\cloak\cultist_banter1", 0.7, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class cultist_death
|
|
{
|
|
sound[] = { "@x\addons\a3_epoch_assets\sounds\cloak\cultist_death", 0.7, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class cultist_laugh
|
|
{
|
|
sound[] = { "@x\addons\a3_epoch_assets\sounds\cloak\cultist_laugh", 0.7, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class cultist_nearby
|
|
{
|
|
sound[] = { "@x\addons\a3_epoch_assets\sounds\cloak\cultist_nearby", 0.7, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
class cultist_taunt
|
|
{
|
|
sound[] = { "@x\addons\a3_epoch_assets\sounds\cloak\cultist_taunt", 0.7, 1.0 };
|
|
titles[] = {};
|
|
};
|
|
};
|