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
Amensia Script Error Expected '(' or ','
Loquendostrogg Offline
Junior Member

Posts: 4
Threads: 1
Joined: Apr 2012
Reputation: 0
#1
Amensia Script Error Expected '(' or ','

Hey guys at frictional games Forums. After seeing the millions of possibilities of the amensia's level editor and playing lots of custom stories; I decided to make my own Custom. I got excelent with the level editor, I got perfect with the .lang file. What causes me trouble is the scripting, it's not really hard, but, when I try to put the callback scripts, it gives me this error: Expected ')' or ','. So if you could help me I will be very grateful.

Here's the script:

//===========================================
// Starter's Script File!
//===========================================

//===========================================
// This runs when the map first starts


void TimerDoneLookAt(string &in asTimer)
{
StopPlayerLookAt();
}

////////////////////////////
// Run first time starting map
void OnStart()
{
AddEntityCollideCallback("Player", "scareArea1", "func_slam", true, 1);

StartPlayerLookAt("LookArea1", 2, 2, "");


AddTimer("donelook", 2.5f, "TimerDoneLookAt");
}

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

PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);

PlaySoundAtEntity("", "react_scare", "Player", 0, false); PlaySoundAtEntity("", "close_door.snt", "Player", 0, false);

GiveSanityDamage(5.0f, true);



AddEntityCollideCallback("Player","ScriptArea_1","function1" true, 1);
}


////////// Callback Functions!!!

void function1(string &in asParent, string &in asChild, int alState)
{
SetPlayerSanity(true "100");
}
////////////////////////////
// Run when map is loaded
void OnEnter()
{

}

////////////////////////////
// Run when leaving map
void OnLeave()
{
SetupLoadScreen("Loading", "", 1, "Loading_Level_Picture.jpg");
}
04-13-2012, 08:12 PM
Find


Messages In This Thread
Amensia Script Error Expected '(' or ',' - by Loquendostrogg - 04-13-2012, 08:12 PM



Users browsing this thread: 3 Guest(s)