Frictional Games Forum (read-only)

Full Version: What's wrong?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
main (10,1) : ERR Expected "," or ";"

////////////////////////////
// Run first time starting map
void OnStart()
{
AddEntityCollideCallback("Player", "Area6", "CaeHumano", true, 0);
AddEntityCollideCallback("Player", "Area6", "CaeHumano2", true, 0);
}

void CaeHumano(string &in asParent, string &in asChild, int alState)
void llave_cara(string &in asEntity)
{
SetEntityActive("Humano", true);
SetEntityActive("Humano2", true);
SetEntityActive("head", true);
PlaySoundAtEntity("", "24_iron_maiden.snt", "Player", 0, false);
}

////////////////////////////
// Run when entering map
void OnEnter()
{


}
////////////////////////////
// Run when leaving map
void OnLeave()
{

}
Doing this alone will stop any errors:


////////////////////////////
// Run first time starting map
void OnStart()
{
AddEntityCollideCallback("Player", "Area6", "CaeHumano", true, 0);
AddEntityCollideCallback("Player", "Area6", "CaeHumano2", true, 0);
}

void CaeHumano(string &in asParent, string &in asChild, int alState)
{

}

void llave_cara(string &in asEntity)
{
SetEntityActive("Humano", true);
SetEntityActive("Humano2", true);
SetEntityActive("head", true);
PlaySoundAtEntity("", "24_iron_maiden.snt", "Player", 0, false);
}

////////////////////////////
// Run when entering map
void OnEnter()
{


}
////////////////////////////
// Run when leaving map
void OnLeave()
{

}

But your script doesn't seem correct, it's hard to tell what you're trying to accomplish with it. My Spanish is a bit rusty, but llave_cara seems like the name for a key, not one of the functions you set up in a callback (although it's likely you used the level editor method for setting up the callback). Also, you have two different functions set up from your callbacks (CaeHumano and CaeHumano2), both of which are triggered by the player colliding with the same area (Area6), that could be problematic in the future.

I'll need some specific information before I can be of further help.
(08-02-2012, 07:22 PM)andyrockin123 Wrote: [ -> ]Doing this alone will stop any errors:


////////////////////////////
// Run first time starting map
void OnStart()
{
AddEntityCollideCallback("Player", "Area6", "CaeHumano", true, 0);
AddEntityCollideCallback("Player", "Area6", "CaeHumano2", true, 0);
}

void CaeHumano(string &in asParent, string &in asChild, int alState)
{

}

void llave_cara(string &in asEntity)
{
SetEntityActive("Humano", true);
SetEntityActive("Humano2", true);
SetEntityActive("head", true);
PlaySoundAtEntity("", "24_iron_maiden.snt", "Player", 0, false);
}

////////////////////////////
// Run when entering map
void OnEnter()
{


}
////////////////////////////
// Run when leaving map
void OnLeave()
{

}

But your script doesn't seem correct, it's hard to tell what you're trying to accomplish with it. My Spanish is a bit rusty, but llave_cara seems like the name for a key, not one of the functions you set up in a callback (although it's likely you used the level editor method for setting up the callback). Also, you have two different functions set up from your callbacks (CaeHumano and CaeHumano2), both of which are triggered by the player colliding with the same area (Area6), that could be problematic in the future.

I'll need some specific information before I can be of further help.
THANKS!!!!