Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

Hello, my friend. Just one stupid question.

In achievement_backend.rpy, line 457:

ACHIEVEMENT_SOUND = "audio/interface/ach.ogg"

I got the right path and there's no problem with this sound, but in-game granting going without any sound. I really don't know, why, mb I need to change smth, not the only one line?

Sound channel is also correct

btw sry my english is bad and im drunk a little

You're meant to change the sound with your own define statement, not in the backend file! For example,

define myconfig.ACHIEVEMENT_SOUND = "audio/interface/ach.ogg"

The achievements.rpy file has examples of that. If you're only changing it in the backend, then the redeclaration in achievements.rpy will be overwriting it with None. The backend file has an early initialization order so it can be set up early before it's used and modified with a regular define statement.

So, in short, change it in achievements.rpy not in the backend file :) Hope that helps!

My gosh it helps I feel so stupid rn. Thanks, brother