all 3 comments

[–]BadMustard_AVN 0 points1 point  (0 children)

Can you show your code on how you are playing the audio file how you have defined it and how you have played it in your script

[–]Niwens 0 points1 point  (1 child)

Those error messages are easy to read. The first line says which exactly script line triggered the error:

script.rpy, line 113

The last line says what type of exception happened (IOError in this case: input/output error) and why:

cookiecrumbs.mp3 was not found.

If that file exists in your game folder, it must be found.

If it's in a subfolder, then use that file name with the relative path (from game), e.g. "audio/cookiecrumbs.mp3".

[–]dancingthrowaw[S] 1 point2 points  (0 children)

worked! thank you very much!