Frictional Games Forum (read-only)
How do i fix this? - 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: How do i fix this? (/thread-13202.html)



How do i fix this? - oscar1007 - 02-09-2012

When the player starts the custom story a text shows up and the screen goes black. Then the player does some stuff and gets to another map and after that he is going back to the first map but at another spawn point. Now the text shows up again and i dont want it to.

Here is my script:


void OnStart()
{
AddTimer("", 4, "intro1");
FadeOut(0);
}


void intro1(string &in asTimer)
{
SetMessage("introtextcat1", "introtext1", 5);
AddTimer("", 6, "intro2");
}

void intro2(string &in asTimer)
{
SetMessage("introtextcat2", "introtext2", 5);
AddTimer("", 6, "intro3");
}

void intro3(string &in asTimer)
{
FadeIn(2);
}

I don't want this text (and fadeout) to show up when the player enters the .map file the second time (AT ANOTHER SPAWN POINT).

Can someone help me?


RE: How do i fix this? - flamez3 - 02-09-2012

I would use void OnEnter(). But I wouldn't know if this stops doing it after 1 use. Also; make sure "Fullgamesave" is checked on the door that leads to the next map.


RE: How do i fix this? - oscar1007 - 02-09-2012

(02-09-2012, 05:21 PM)flamez3 Wrote: I would use void OnEnter(). But I wouldn't know if this stops doing it after 1 use. Also; make sure "Fullgamesave" is checked on the door that leads to the next map.
Thank you! Fixed it! Smile Checked the fullgamesave box! Smile