Ok, trying to get back into scripting for this game for a Uni Project and went onto this tutorial;
http://www.youtube.com/watch?v=M5x_taEkP...ata_player
Did it all but I keep getting this error and I have no idea why
FATAL ERROR: Could not load script file
'custom_stories/ExampleStory/maps/01_Scripting_Tutorial.hps'"
main (7, 28): ERR : Expected '('
main (13, 22) ERR: Expected '('
Here is the script;
void OnStart()
{
{
AddEntityCollideCallback("Player", "RoomTwoArea_01", "CollideRoomTwo", true, 1);
}
void CollideRoomTwo(string &in asParent, string &in asChild, int alState);
{
SetSwingDoorClosed("castle_arched01_1", true, true);
StartPlayerLookAt("castle_arched01_1", 10.0, 10.0, "");
AddTimer("", 1.0, "StopLook");
}
void StopLook(string &in asTimer);
{
StopPlayerLookAt();
}
}
I've tried all I can, I keep looking through it and searched online but can't find a solution :/ Halp?
Thanks.