.bev files are .fev files (used by the FMOD software) that contains sound event definitions, you can uncompress them in the same way you uncompress bsb, there is just an additional header to remove

sounds that are used in files are referencing an event that is defined in the FMOD project for example a sound for a fire elemental:
you'll find an event /Creatures/FireElement/hitcritical in the fev file definition

it is defined to call sound data from the fsb sound bank:



sounds that are used in files are referencing an event that is defined in the FMOD project for example a sound for a fire elemental:
XML:
<Item>
<animation href="/Creatures/FireElemental/Animations/FireElemental.HitCritical.(SkeletalAnimation).xdb#xpointer(/SkeletalAnimation)" />
<objects />
<sound>
<name>/Creatures/FireElemental/hitcritical</name>
<project href="/SFX/Creatures/Creatures.(FMODProject).xdb#xpointer(/FMODProject)" />
</sound>
</Item>
you'll find an event /Creatures/FireElement/hitcritical in the fev file definition

it is defined to call sound data from the fsb sound bank:

