Frictional Games Forum (read-only)

Full Version: Custom Sound Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wish to add new sounds to Amnesia, how do I do this? I know that .ogg and .snt are involved, but how?
go to your custom story, and add a folder called "sounds" (Like in the real game)
Then copy any .snt file from the real "sounds", to your "sounds".
Next put the desired .ogg file into your "sounds".
Modify the .snt file after your choice, but remember to change the file names so it plays the correct file.
And there it is!
(11-15-2012, 08:28 AM)beecake Wrote: [ -> ]go to your custom story, and add a folder called "sounds" (Like in the real game)
Then copy any .snt file from the real "sounds", to your "sounds".
Next put the desired .ogg file into your "sounds".
Modify the .snt file after your choice, but remember to change the file names so it plays the correct file.
And there it is!
It worked! Thanks pal! I did try to replace the "player_darkness" sound in the game.cfg file with a new sound, but it didn't work.

Also, it's been a while since I did keys, how do I get one to unlock a door?
OnStart()
{
AddUseItemCallback("", "KEYNAME", "DOORNAME", "UnlockDoor_1", true);

}

void UnlockDoor_1(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("DOORNAME", false, true);
PlaySoundAtEntity("", "unlock_door", "DOORNAME", 0.0f, false);

RemoveItem(asItem);
}