![]() |
Help with Amnesia Level Editor - 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: Help with Amnesia Level Editor (/thread-21285.html) |
RE: Help with Amnesia Level Editor - Daemian - 04-27-2013 GiveSanityDamage( float 10.0f, bool true ); RE: Help with Amnesia Level Editor - Natsu - 04-27-2013 With that code now says (7, 26). Now I'm confused. RE: Help with Amnesia Level Editor - PutraenusAlivius - 04-27-2013 (04-27-2013, 05:07 AM)Natsu Wrote: It gives me this error on the Sanity line: PHP Code: GiveSanityDamage(10.0f, true); RE: Help with Amnesia Level Editor - Natsu - 04-27-2013 (04-27-2013, 05:31 AM)JustAnotherPlayer Wrote:(04-27-2013, 05:07 AM)Natsu Wrote: It gives me this error on the Sanity line: ![]() RE: Help with Amnesia Level Editor - PutraenusAlivius - 04-27-2013 (04-27-2013, 05:34 AM)Natsu Wrote:(04-27-2013, 05:31 AM)JustAnotherPlayer Wrote:(04-27-2013, 05:07 AM)Natsu Wrote: It gives me this error on the Sanity line: PlaySoundAtEntity("", "amb_idle01.snt", "Player", 0.1f, false); RE: Help with Amnesia Level Editor - Natsu - 04-27-2013 Thanks it worked, but the sound doesn't play. RE: Help with Amnesia Level Editor - Daemian - 04-27-2013 PlaySoundAtEntity("", "amb_idle01.snt", "Player", 0.1f, false); For ambient music i use PlayMusic() Try this line instead PHP Code: PlayMusic ( "21_event_pit.ogg", false, 1, 2, 1, false ); if this works for you, change the sound file. Btw, we kinda need like a real time chat in this forum. That would be cool. RE: Help with Amnesia Level Editor - PutraenusAlivius - 04-27-2013 (04-27-2013, 07:07 AM)Amn Wrote: PlaySoundAtEntity("", "amb_idle01.snt", "Player", 0.1f, false); *points to the IRC button on the top-right corner of every page* RE: Help with Amnesia Level Editor - Daemian - 04-27-2013 Oooh. Nice. Hello button! Other forums taught me to never expect anything good up there (like banners&spam) Am i the only one? lol. RE: Help with Amnesia Level Editor - Natsu - 04-27-2013 I managedto find the problem, the volume for the sound was way lower than the music and I couldn't hear it. I just used another sound. Now, what I want to know is how can I make a wall move and open a passage. Like the moving library at the Original Amnesia. |