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


Thread Rating:
  • 3 Vote(s) - 2.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Big Problem: OH PLEASSE HELP ME OH GOD!!! Script Related
kewl Offline
Junior Member

Posts: 12
Threads: 3
Joined: Sep 2010
Reputation: 0
#8
RE: Big Problem: OH PLEASSE HELP ME OH GOD!!! Script Related

(11-27-2010, 08:14 PM)LoneWolf Wrote: does map work at all? post your full hps. you will have a small mistake... maybe missing/extra { or } (token). happened to me, i had two { in my hps and effected all scripts.

void onStart()
{
wakeUp();
}
void wakeUp () {
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
AddTimer("trig1", 11.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}

void beginStory(string &in asTimer){
ChangePlayerStateToNormal();
SetPlayerActive(true);
FadePlayerRollTo(0, 33, 33); // Change all settings to defaults
FadeRadialBlurTo(0.0, 1);
FadeSepiaColorTo(0, 4);
SetPlayerCrouching(false);
FadeImageTrailTo(0,1);
}
void OnEnter()
{

}

void OnLeave()
{

}
11-27-2010, 08:16 PM
Find


Messages In This Thread
RE: Big Problem: OH PLEASSE HELP ME OH GOD!!! Script Related - by kewl - 11-27-2010, 08:16 PM



Users browsing this thread: 1 Guest(s)