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
Unearthlybrutal Offline
Posting Freak

Posts: 775
Threads: 12
Joined: May 2011
Reputation: 26
#2
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");
}




Smile Replace the red part with: SetPlayerSanity(100);

When Life No Longer Exists
Full-conversion mod
04-13-2012, 08:20 PM
Website Find
Loquendostrogg Offline
Junior Member

Posts: 4
Threads: 1
Joined: Apr 2012
Reputation: 0
#3
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
Find
Cranky Old Man Offline
Posting Freak

Posts: 986
Threads: 20
Joined: Apr 2012
Reputation: 38
#4
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 ERROR
Yes, obviously. Check the line yourself and you'll spot the missing comma.


Noob scripting tutorial: From Noob to Pro

04-13-2012, 09:42 PM
Find
Loquendostrogg Offline
Junior Member

Posts: 4
Threads: 1
Joined: Apr 2012
Reputation: 0
#5
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
Find




Users browsing this thread: 1 Guest(s)