Sounds not becoming "de-active" - 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 (https://www.frictionalgames.com/forum/forum-35.html) +--- Thread: Sounds not becoming "de-active" (/thread-7863.html) |
Sounds not becoming "de-active" - Dominic0904 - 05-07-2011 Basically I want to disable the sounds so I can set them to "active" when I script the events ((player walks into a script area, sound is triggered)). But everytime I uncheck the "active" box and reload the map, the sound still plays. I have tried this with three different sounds and still the same result. Is this something I need to do in the script itself? Cause I haven't started it yet, I just want to put down all the sounds before I script them. Thank you. RE: Sounds not becoming "de-active" - Khyrpa - 05-07-2011 you have to use: StopSound(string& asSoundName, float afFadeTime); then use this to Play it: FadeInSound(string& asSoundName, float afFadeTime, bool abPlayStart); RE: Sounds not becoming "de-active" - Dominic0904 - 05-07-2011 (05-07-2011, 06:35 PM)Khyrpa Wrote: you have to use: StopSound(string& asSoundName, float afFadeTime); Just to confirm, say i wanted to stop "guardian_scream1" I would write it as: StopSound(string& asguardian_scream1, float afFadeTime); right? or am I doing that wrong? RE: Sounds not becoming "de-active" - Roenlond - 05-07-2011 (05-07-2011, 06:45 PM)Dominic0904 Wrote:(05-07-2011, 06:35 PM)Khyrpa Wrote: you have to use: StopSound(string& asSoundName, float afFadeTime); strings need to be in quotes, and a float is a number with a decimal StopSound("guardian_scream1", 2.0f); RE: Sounds not becoming "de-active" - Dominic0904 - 05-07-2011 (05-07-2011, 06:52 PM)Roenlond Wrote:(05-07-2011, 06:45 PM)Dominic0904 Wrote:(05-07-2011, 06:35 PM)Khyrpa Wrote: you have to use: StopSound(string& asSoundName, float afFadeTime); Aha I knew the quotes thing, but since I am still quite new to this scripting business, I just wanted to confirm. I always learn better through simple examples or a YouTube video, I find it hard to learn from books and such. I am a "visual learner" as they call it Thanks though! |