Frictional Games Forum (read-only)
Wake Up Script - 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: Wake Up Script (/thread-18805.html)



Wake Up Script - 4WalledKid - 10-15-2012

Hello there! Can someone please tell me how I can make a "wake up" effect? Like moving the camera and stuff. Thanks!


RE: Wake Up Script - Curse of Hope - 10-16-2012

void OnStart()
{
FadeOut(0.0f);
SetPlayerActive(false);
FadePlayerRollTo(50, 150, 150);
SetPlayerCrouching(true);
AddTimer("Wakeup", 10.0, "Wakeup");
}
void Wakeup(string &in asTimer)
{
SetPlayerActive(true);
FadeIn(3.0f);
FadePlayerRollTo(0, 33, 33);
SetPlayerCrouching(false);
PlaySoundAtEntity("", "player_cough.snt", "Player", 0, false);
}


There are other ways to do it, but this is the most basic one in my oppinion.
The cough sound effect is not needed, but it sounds and looks better. (:
If you dont understand what's happening here, this is an explanation:
When the map starts, the screen will be faded out, the player will crouch and the
screen will be twisted sideways which gives you the feeling that your laying down.
The timer is set on 10 seconds, and when it goes off it will trigger the timer function
below which fades and twists the screen back to normal. The Player is also not
active during this process, so wont be able to walk away during the time the script
is active.
Hope this helped you out // Joakim


RE: Wake Up Script - Steve - 10-16-2012

there already is an tutorial for this: http://www.frictionalgames.com/forum/thread-4626.html


RE: Wake Up Script - 4WalledKid - 10-16-2012

(10-16-2012, 07:20 AM)Steve Wrote: there already is an tutorial for this: http://www.frictionalgames.com/forum/thread-4626.html

Thank you very much! Smile BTW, do you know how to move the player from a start point to another?


RE: Wake Up Script - The chaser - 10-16-2012

By teleporting him. Just fade out, teleport, fade in.


RE: Wake Up Script - 4WalledKid - 10-16-2012

(10-16-2012, 12:54 PM)The chaser Wrote: By teleporting him. Just fade out, teleport, fade in.

What I want to do is make the player move or walk from a start point to another. To simulate he is actually getting off the bed.


RE: Wake Up Script - FlawlessHappiness - 10-16-2012

http://www.frictionalgames.com/forum/thread-12456.html?highlight=walk


Search!!!


RE: Wake Up Script - 4WalledKid - 10-16-2012

(10-16-2012, 03:29 PM)beecake Wrote: http://www.frictionalgames.com/forum/thread-12456.html?highlight=walk


Search!!!
That's what I was looking for! Thank You Smile


RE: Wake Up Script - FlawlessHappiness - 10-16-2012

I searched: Walk...