Loquendostrogg
Junior Member
Posts: 4
Threads: 1
Joined: Apr 2012
Reputation:
0
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
Unearthlybrutal
Posting Freak
Posts: 775
Threads: 12
Joined: May 2011
Reputation:
26
RE: Amensia Script Error Expected '(' or ','
Spoiler below!
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");
}
Replace the red part with: SetPlayerSanity(100);
04-13-2012, 08:20 PM
Loquendostrogg
Junior Member
Posts: 4
Threads: 1
Joined: Apr 2012
Reputation:
0
RE: Amensia Script Error Expected '(' or ','
thnaks, you fixed me a problem, but in the AddEntityCollideCallback("Player","ScriptArea_1","function1" true, 1); it still gives me Expected ')' and ',' FATAL ERROR
04-13-2012, 09:38 PM
Cranky Old Man
Posting Freak
Posts: 986
Threads: 20
Joined: Apr 2012
Reputation:
38
RE: Amensia Script Error Expected '(' or ','
(04-13-2012, 09:38 PM) Loquendostrogg Wrote: thnaks, you fixed me a problem, but in the AddEntityCollideCallback("Player","ScriptArea_1","function1" true, 1); it still gives me Expected ')' and ',' FATAL ERRORYes, obviously. Check the line yourself and you'll spot the missing comma.
04-13-2012, 09:42 PM
Loquendostrogg
Junior Member
Posts: 4
Threads: 1
Joined: Apr 2012
Reputation:
0
RE: Amensia Script Error Expected '(' or ','
(04-13-2012, 09:42 PM) Cranky Old Man Wrote: Yes, obviously. Check the line yourself and you'll spot the missing comma.
IT WORKS!!! IT WORKS!!!! THNKS, THANK YOU!!!! THANK YOU!!!!! :'D
04-13-2012, 10:46 PM