Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help I would very much like some help please!
Radical Batz Offline
Posting Freak

Posts: 953
Threads: 145
Joined: Dec 2013
Reputation: 25
#2
RE: Wtf ??? Never srsly never see this :O

Try This

PHP Code: (Select All)
void OnStart()
{
FadeOut(0);
FadePlayerRollTo(652020);
MovePlayerHeadPos(-1, -0.45, -1.1201);
AddTimer("ActivatePlayer"3"FadeIn");
SetLightVisible("BoxLight_1"false);
FadeImageTrailTo(31);
FadeRadialBlurTo(11);


PHP Code: (Select All)
void WakeUp(string &in timer_name)
{
FadeIn(4);
if(
timer_name == "Start")
{
SetLightVisible("BoxLight_1"true);
AddTimer("MoveHead"1"WakeUp");
}

else if (
timer_name == "MoveHead")
{
FadeImageTrailTo(01);
FadeRadialBlurTo(11);
MovePlayerHeadPos(-0.5, -0.2, -1.122);
FadePlayerRollTo(01.7500);
AddTimer("ActivatePlayer"2"WakeUp");
}

else if (
timer_name == "ActivatePlayer")
{
MovePlayerHeadPos(00022);
SetPlayerActive(true);
}


You forgot to add in a fade in, if it works then why not give me reputation! If you want

(This post was last modified: 03-23-2014, 08:15 PM by Radical Batz.)
03-23-2014, 08:11 PM
Find


Messages In This Thread
RE: Wtf ??? Never srsly never see this :O - by Radical Batz - 03-23-2014, 08:11 PM



Users browsing this thread: 1 Guest(s)