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


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Could not load script file: The same names and parameters! HELP
ooadrianoo Offline
Member

Posts: 82
Threads: 29
Joined: Apr 2012
Reputation: 0
#1
Could not load script file: The same names and parameters! HELP

I am new at scripting and in HPL. Can anyone tell me, where the same names and parameters are?

void OnStart()
{
AddEntityCollideCallback("Player", "Scary_Area_1", "Scary_1", true, 1);
AddEntityCollideCallback("Player", "Scary_Area_2", "Scary_2", true, 1);
}

void Scary1(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("1", true);
SetEntityActive("2", true);
SetEntityActive("3", true);
SetEntityActive("4", true);
SetEntityActive("5", true);
SetEntityActive("6", true);
SetEntityActive("7", true);
SetEntityActive("8", true);
SetEntityActive("9", true);
SetEntityActive("10", true);
SetEntityActive("11", true);
SetEntityActive("12", true);
GiveSanityDamage(5.0f, true);
}

void Scary1(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("corpse_male_4", false);
AddTimer("", 3.8f, "Timer_1");    
}

void Timer_1(string &in asTimer)
{
    SetEntityActive("corpse_male_4", true);
     AddPropImpulse("corpse_male_4", 0, 0, -10, "world");
     GiveSanityDamage(5.0f, true);
}















////////////////////////////
// Run when leaving map
void OnLeave()
{
07-07-2012, 05:30 PM
Find
Adny Offline
Posting Freak

Posts: 1,766
Threads: 6
Joined: Mar 2012
Reputation: 173
#2
RE: Could not load script file: The same names and parameters! HELP

You wrote the name of the functions incorrectly; they didn't match the functions you made in the callback:


void OnStart()
{
AddEntityCollideCallback("Player", "Scary_Area_1", "Scary_1", true, 1);
AddEntityCollideCallback("Player", "Scary_Area_2", "Scary_2", true, 1);
}

void Scary_1(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("1", true);
SetEntityActive("2", true);
SetEntityActive("3", true);
SetEntityActive("4", true);
SetEntityActive("5", true);
SetEntityActive("6", true);
SetEntityActive("7", true);
SetEntityActive("8", true);
SetEntityActive("9", true);
SetEntityActive("10", true);
SetEntityActive("11", true);
SetEntityActive("12", true);
GiveSanityDamage(5.0f, true);
}

void Scary_2(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("corpse_male_4", false);
AddTimer("", 3.8f, "Timer_1");
}

void Timer_1(string &in asTimer)
{
SetEntityActive("corpse_male_4", true);
AddPropImpulse("corpse_male_4", 0, 0, -10, "world");
GiveSanityDamage(5.0f, true);
}

void OnEnter()
{

}

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

}

I rate it 3 memes.
07-07-2012, 05:39 PM
Find
ooadrianoo Offline
Member

Posts: 82
Threads: 29
Joined: Apr 2012
Reputation: 0
#3
RE: Could not load script file: The same names and parameters! HELP

Thank you Smile
07-07-2012, 06:15 PM
Find




Users browsing this thread: 1 Guest(s)