Frictional Games Forum (read-only)

Full Version: Flying Jesus Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I've been looking for a flying Jesus script. I couldn't find one that wasn't combined with something else. I tried on my own and it says there's an unexpected token on line 6,1

void OnStart()
{
AddEntityCollideCallback("Player", "TNG1", "FUNCTION", true 1);
}
void FUNCTION( string &in asParent, string &in asChild, int alState);
{
SetEntityActive("Teleporter", true);
AddPropForce(Teleporter, float 0, float 0, float -30000, string& asCoordSystem);
}
I think from now on, we should encourage people making flying jesuses (jesii?) to fend for themselves.
(12-03-2012, 01:11 AM)Damascus Wrote: [ -> ]I think from now on, we should encourage people making flying jesuses (jesii?) to fend for themselves.
screw off
(12-03-2012, 01:11 AM)Damascus Wrote: [ -> ]I think from now on, we should encourage people making flying jesuses (jesii?) to fend for themselves.
T'would be a shame to not encourage such.. creativity.
I see an error in your script. Can you see it?
(12-03-2012, 01:23 AM)Acies Wrote: [ -> ]I see an error in your script. Can you see it?
Shoot, I didn't see that. Thanks
Couldn't you just copy-paste from any of the custom stories that do this "thing"? They usually just copy paste.
Nope, he's got to be "original."
We've all got to start somewhere. I guess.
Oh boy... Well, here's your error.

void FUNCTION( string &in asParent, string &in asChild, int alState);

Try

void FUNCTION(string &in asParent, string &in asChild, int alState)
Pages: 1 2