Frictional Games Forum (read-only)
I can't make my sound work - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: I can't make my sound work (/thread-13836.html)



I can't make my sound work - ingedoom - 03-07-2012

Hi forum

I have the problem that i can't make my sound work.

I put my MP3 in audacity and exported it as .ogg(vorbis) to the "sounds" folder in my CSfolder where i also made a .snt file with the same name.


Here is what my .snt contains:


to play the sound i use:

PlaySoundAtEntity("clock", "clock.snt", "clock_grandfather_1", 2, false);


and i am 100% it is called since since it shows the message that is in the same callback.

Can any of you help me please?


RE: I can't make my sound work - JenniferOrange - 03-08-2012

(03-07-2012, 10:51 PM)pingo2 Wrote: Hi forum

I have the problem that i can't make my sound work.

I put my MP3 in audacity and exported it as .ogg(vorbis) to the "sounds" folder in my CSfolder where i also made a .snt file with the same name.


Here is what my .snt contains:
Code:
<SOUNDENTITY>  <SOUNDS>      <Main>          <Sound File="clock" />      </Main>  </SOUNDS>  <PROPERTIES Volume="1" MinDistance="1" MaxDistance="13" Random="1" Interval="0" FadeEnd="False" FadeStart="False" Stream="false" Loop="false" Use3D="false" Blockable="false" BlockVolumeMul="0.5" Priority="0" /></SOUNDENTITY>


to play the sound i use:

PlaySoundAtEntity("clock", "clock.snt", "clock_grandfather_1", 2, false);


and i am 100% it is called since since it shows the message that is in the same callback.

Can any of you help me please?
Code:
<SOUNDENTITY>  <SOUNDS>      <Main>          <Sound File="clock.ogg" />      </Main>  </SOUNDS>  <PROPERTIES Volume="1" MinDistance="1" MaxDistance="13" Random="1" Interval="0" FadeEnd="False" FadeStart="False" Stream="false" Loop="false" Use3D="false" Blockable="false" BlockVolumeMul="0.5" Priority="0" /></SOUNDENTITY>


Keep both the .ogg and .snt in your custom stories' name folder, then in a new folder called music. I know it may not be needed but I do anyway, so I don't accidentally delete it.





RE: I can't make my sound work - Strembitsky - 03-08-2012

There is a high chance your .snt is set up incorrectly. What is in your .snt?


RE: I can't make my sound work - ingedoom - 03-08-2012

(03-08-2012, 01:56 AM)Strembitsky Wrote: There is a high chance your .snt is set up incorrectly. What is in your .snt?
I wrote it in the OP, if you eyes slipped by, please look again adove.


RE: I can't make my sound work - Your Computer - 03-08-2012

As JenniferOrange shows, "clock" != "clock.ogg"


RE: I can't make my sound work - ingedoom - 03-08-2012

So i put my .ogg and .snt into amnesia/csname/ and into
amnesia/csname/music/??
No other custom stories i've seen does that.. Did i understand what u said right? If not; can you then be more specific?
(03-08-2012, 08:21 AM)Your Computer Wrote: As JenniferOrange shows, "clock" != "clock.ogg"
What do you mean by this? Jennifer does not say that.


RE: I can't make my sound work - ingedoom - 03-08-2012

Well, i made it work by copying a working .snt file from another custom story and just put in the name of my file instead and then changed my script to the same which was used in the cs i took it from. This is a way to do it, but i have not learned much tho... Time to experiment! I suggest others having troubles do the samething.

Thx to the maker of La Caza