not sure what the titles line in your script does, but my wizard just gave me this for your sounds:
class CfgSounds
{
// List of sounds (.ogg files without the .ogg extension)
sounds[] = {klik, musiec};
// Class definition needed for each sound
class klik
{
// Name to display in mission editor
name = "klik";
// Sound path, volume, pitch
sound[] = {\sound\klik.ogg, db + 0, 1.0};
// Sound title text (set to no text)
titles[] = {0, ""};
};
class musiec
{
// Name to display in mission editor
name = "musiec";
// Sound path, volume, pitch
sound[] = {\sound\musiec.ogg, db + 0, 1.0};
// Sound title text (set to no text)
titles[] = {0, ""};
};
};
Does that help?