(07-25-2011, 09:44 PM)Kyle Wrote: (07-25-2011, 09:29 PM)zecuro Wrote: thanks you so much last little question when i start the game i got a message like this
fatal error:could not load script file
custom stories/priest/maps/ch00/third test.hps'!
main (1, 1):unexpected token'('
link to the scrpt:http://www.mediafire.com/?f8wn3jxbze7ygz3
Please just copy your script and paste it right here in the reply box.
It's much more easier to look at that doesn't include any sort of download.
void OnStart()
{
FadeOut(0);
FadeIn(20);
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220);
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true);
AddTimer("trig1", 7.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);
}