The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
Expected ')' or ',' error
lolboy9797 Offline
Junior Member

Posts: 29
Threads: 8
Joined: May 2012
Reputation: 1
#1
Expected ')' or ',' error

hi,
i get this error on my script, saying "Expected ) or ," any help?
line 8, 73

code:

void OnStart()
{
AddEntityCollideCallback("Player", "KillTheLights", "LightsOut", true, 1);
AddEntityCollideCallback("Player", "ScriptArea_4", "scare2", true, 1);
AddUseItemCallback("", "ITEM", "DOOR", "FUNCTION", true);
AddUseItemCallback("", "ITEM2", "DOOR2", "FUNCTION2", true);
AddEntityCollideCallback("Player", "Message_1", "Message1", true,
AddEntityCollideCallback("Player", "stascare_01", "armorscare", true, 1);
}


void Message1(string &in asChild, string &in asParent, int alState)
{
SetMessage("Messages", "Popup2", 2);
}

void scare2(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("mrscare1", true);
AddPropForce("mrscare1", -20000, 0, 0, "world");
PlaySoundAtEntity("mrscare1", "scare_slam_door", "mrscare1", 0, false);
}


void FUNCTION(string &in item, string &in door)
{
SetSwingDoorLocked(door, false, true);
PlaySoundAtEntity("", "unlock_door", door, 0, false);
RemoveItem(item);
}

void DoorLockedPlayer(string &in entity)


{
if(GetSwingDoorLocked("EXAMPLE_DOOR") == true)
{

SetMessage("Messages", "msgname", 0);

}
}

void doorl2(string &in entity)


{
if(GetSwingDoorLocked("locked_door1") == true)
{

SetMessage("Messages", "msgname1", 2);

}
}

void doorl1(string &in entity)


{
if(GetSwingDoorLocked("DOOR") == true)
{

SetMessage("Messages", "door_lockedmsg", 2);

}
}

void LightsOut(string &in asParent, string &in asChild, int alState)
{
SetLampLit("lamp_1", false, true);
AddTimer("", 1, "Out2");
GiveSanityDamage(2, true);
SetMessage("Messages", "Popup1", 2);
}


void Out2(string &in asTimer)
{
SetLampLit("lamp_2", false, true);
AddTimer("", 1, "Out3");


}


void Out3(string &in asTimer)
{
SetLampLit("lamp_3", false, true);
AddTimer("", 0.5, "Out4");

}


void Out4(string &in asTimer)
{
SetLampLit("lamp_4", false, true);
AddTimer("", 1, "Out5");

}


void Out5(string &in asTimer)
{
SetLampLit("lamp_5", false, true);
AddTimer("", 1, "Out6");


}


void Out6(string &in asTimer)
{
SetLampLit("lamp_6", false, true);

}



void tinderfunc1(string &in asEnity, string &in Type)
{
SetPropHealth("vase01_1",0);
StartPlayerLookAt("vase01_1", 20, 20, "");
AddTimer("timer1", 1, "timer1");
}

void timer1(string &in asTimer)
{
StopPlayerLookAt();

}

void armorscare(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("armour_02", true);
SetEntityActive("armour_03", true);
SetEntityActive("armour_04", true);
SetEntityActive("armour_05", true);
GiveSanityDamage(2, true);
}
05-15-2012, 05:59 PM
Find


Messages In This Thread
Expected ')' or ',' error - by lolboy9797 - 05-15-2012, 05:59 PM
RE: Expected ')' or ',' error - by Traggey - 05-15-2012, 06:04 PM
RE: Expected ')' or ',' error - by Stepper321 - 05-15-2012, 06:11 PM
RE: Expected ')' or ',' error - by lolboy9797 - 05-15-2012, 06:15 PM
RE: Expected ')' or ',' error - by Stepper321 - 05-15-2012, 06:16 PM
RE: Expected ')' or ',' error - by lolboy9797 - 05-15-2012, 06:22 PM
RE: Expected ')' or ',' error - by Cranky Old Man - 05-15-2012, 06:26 PM
RE: Expected ')' or ',' error - by lolboy9797 - 05-15-2012, 08:43 PM
RE: Expected ')' or ',' error - by Cranky Old Man - 05-15-2012, 06:24 PM
RE: Expected ')' or ',' error - by lolboy9797 - 05-15-2012, 06:26 PM
RE: Expected ')' or ',' error - by Stepper321 - 05-15-2012, 06:30 PM
RE: Expected ')' or ',' error - by Mine Turtle - 05-15-2012, 08:39 PM
RE: Expected ')' or ',' error - by Stepper321 - 05-15-2012, 09:05 PM



Users browsing this thread: 1 Guest(s)