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
#10
RE: Big Problem: OH PLEASSE HELP ME OH GOD!!! Script Related

(11-27-2010, 08:22 PM)LoneWolf Wrote: i dont see any problems. im not sure but i do this.




////////////////////////////
// Run first time starting map
void OnStart()
{
wakeUp();
}
void wakeUp ()
{
FadeOut(0);
FadeIn(20);
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220);
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true);
AddTimer("trig1", 11.0f, "beginStory");
}
void beginStory(string &in asTimer)
{
ChangePlayerStateToNormal();
SetPlayerActive(true);
FadePlayerRollTo(0, 33, 33);
FadeRadialBlurTo(0.0, 1);
FadeSepiaColorTo(0, 4);
SetPlayerCrouching(false);
FadeImageTrailTo(0,1);
}
////////////////////////////
// Run when entering map
void OnEnter()
{
}
////////////////////////////
// Run when leaving map
void OnLeave()
{
}






copy paste mine.

That worked.

Thank you, alot.

Is there something wrong with how I configured my .hps file? It looks different from yours.
11-27-2010, 08:26 PM
Find


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



Users browsing this thread: 1 Guest(s)