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
ERROR: Expected '('
drujeful Offline
Junior Member

Posts: 4
Threads: 2
Joined: Jul 2012
Reputation: 0
#1
ERROR: Expected '('

I tried searching all over for this problem and though many threads were similar, none helped me with my problem.

Here's my error:


FATAL ERROR: Could not load script file 'custom_stories/Collin/maps/firstfloor.hps'!
main (54, 7) : ERR : Expected '('

Here's my code:



void OnStart()
{
AddUseItemCallback("", "basekey_1", "stairdoor", "KeyOnDoor", true);

SetEntityPlayerInteractCallback("basekey_1", "ActivateMonster", true);

SetPlayerLampOil(50.0f);

AddEntityCollideCallback("Player", "script_slam", "func_slam", true, 1);


}



void KeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("stairdoor", false, true);
PlaySoundAtEntity("", "unlock_door", "stairdoor", 0.0f, false);
RemoveItem("basekey_1");
}

void ActivateMonster(string &in item)
{
SetEntityActive("servant_grunt_1", true);
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_1", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_2", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_3", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_4", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_5", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_6", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_7", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_8", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_9", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_10", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_11", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_12", 0, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_13", 0, "");

}

void DoorLockedPlayer(string &in entity)


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

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

}


void func_slam (string &in asParent, string &in asChild, int alState)
{
SetSwingDoorClosed("kitchendoor", true, true);

PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0.0f, false);
PlaySoundAtEntity("", "react_scare", "Player", 0.0f, false);
PlaySoundAtEntity("", "close_door.snt", "Player", 0.0f, false);

GiveSanityDamage(5.0f, true);
}
}
void OnEnter()
{
}
void OnLeave()
{
}


I am trying to make an instance where the player steps into an area and a door (kitchendoor) slams shut, startling the player. I really appreciate all you guys do to help us newbies out. I've found most of my problems here, but just can't seem to figure this one out. Thanks.
(This post was last modified: 07-24-2012, 11:09 PM by drujeful.)
07-24-2012, 10:56 PM
Find


Messages In This Thread
ERROR: Expected '(' - by drujeful - 07-24-2012, 10:56 PM
RE: ERROR: Expected '(' - by Adny - 07-24-2012, 11:04 PM
RE: ERROR: Expected '(' - by Steve - 07-24-2012, 11:04 PM
RE: ERROR: Expected '(' - by drunkmonk - 07-24-2012, 11:05 PM
RE: ERROR: Expected '(' - by drujeful - 07-24-2012, 11:08 PM



Users browsing this thread: 1 Guest(s)