Frictional Games Forum (read-only)
How do you make a wake up intro? - 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 you make a wake up intro? (/thread-16225.html)



How do you make a wake up intro? - nathanmcb - 06-17-2012

I want a basic wake up intro, just a simple wake up, blink and then get up. please Smile


RE: How do you make a wake up intro? - Adny - 06-17-2012

I feel this is extremely relevant:

http://www.youtube.com/watch?v=WWLgrSIbxYU&list=PLD326789BC99530C8&index=18


If you can find the time to sit through it, you'll learn everything you need, and then some!


RE: How do you make a wake up intro? - nathanmcb - 06-17-2012

(06-17-2012, 07:31 AM)andyrockin123 Wrote: I feel this is extremely relevant:

http://www.youtube.com/watch?v=WWLgrSIbxYU&list=PLD326789BC99530C8&index=18


If you can find the time to sit through it, you'll learn everything you need, and then some!
I tried that and I came up with so many errors..... I just want a really basic one Sad


RE: How do you make a wake up intro? - DaAinGame - 06-17-2012

FadePlayerRollTo(70, 220, 220);
Simulates lying down.

FadePlayerRollTo(0.0, 33.0, 33.0);
Resets to Default.

Those are the two basic commands for setting it up. I suggest adding some FadeIn() or FadeOut() however for a more cinematic feel. If you need/want anymore help, feel free to contact me. I'm always willing to help to the best of my abilities.


RE: How do you make a wake up intro? - Rownbear - 06-17-2012

void OnStart()
{
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(20); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
PlayMusic("13_eee.ogg", true, 1, 2, 1, true);
AddTimer("trig1", 11.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}


RE: How do you make a wake up intro? - Adny - 06-17-2012

(06-17-2012, 02:48 PM)Rownbear Wrote: void OnStart()
{
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(20); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
PlayMusic("13_eee.ogg", true, 1, 2, 1, true);
AddTimer("trig1", 11.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}
Is it bad that I know that is the intro script for Abduction D:


RE: How do you make a wake up intro? - nathanmcb - 06-20-2012

(06-17-2012, 03:03 PM)andyrockin123 Wrote:
(06-17-2012, 02:48 PM)Rownbear Wrote: void OnStart()
{
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(20); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
PlayMusic("13_eee.ogg", true, 1, 2, 1, true);
AddTimer("trig1", 11.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}
Is it bad that I know that is the intro script for Abduction D:
is it bad the Ive played that one like 4 times and didn't know that lol


RE: How do you make a wake up intro? - MaZiCUT - 06-20-2012

You just need to film when you wake up for the wake up intro, then cut a black frame and then make it slice in half to open like an eye would, then you have your wakeup intro.


[Image: 89.png]