Frictional Games Forum (read-only)
[CHAOS] Arched Castle Door and End Credits - 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: [CHAOS] Arched Castle Door and End Credits (/thread-20252.html)

Pages: 1 2 3


RE: Chairs. - No Author - 02-09-2013

And if that doesn't work. Then I have no idea what's wrong with the chairs.


RE: Chairs. - PutraenusAlivius - 02-09-2013

YAY! It now works! I just remove the extra seats. And presto! It work! Now, where are the f**king plates?!


RE: Chairs. - No Author - 02-09-2013

In the kitchen entity. I think.


RE: Chairs. - PutraenusAlivius - 02-09-2013

(02-09-2013, 12:28 PM)The chaser Wrote: Use

void OnEnter()
{

PlayMusic("09_amb_safe.snt", true, 1.0f, 0.0f, 0, false);
}
It does loop, but whenever i enter a new map, it still plays. Anyway to stop this?


RE: Chairs. - MulleDK19 - 02-09-2013

(02-09-2013, 03:42 PM)JustAnotherPlayer Wrote:
(02-09-2013, 12:28 PM)The chaser Wrote: Use

void OnEnter()
{

PlayMusic("09_amb_safe.snt", true, 1.0f, 0.0f, 0, false);
}
It does loop, but whenever i enter a new map, it still plays. Anyway to stop this?

PHP Code:
void OnLeave()
{
    
StopMusic(0.0f0);




RE: Chairs. - PutraenusAlivius - 02-09-2013

(02-09-2013, 03:43 PM)MulleDK19 Wrote:
(02-09-2013, 03:42 PM)JustAnotherPlayer Wrote:
(02-09-2013, 12:28 PM)The chaser Wrote: Use

void OnEnter()
{

PlayMusic("09_amb_safe.snt", true, 1.0f, 0.0f, 0, false);
}
It does loop, but whenever i enter a new map, it still plays. Anyway to stop this?

PHP Code:
void OnLeave()
{
    
StopMusic(0.0f0);

Thanks. Cheers for you, man!