Frictional Games Forum (read-only)
Please check the troubleshooting guides before posting! - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: Please check the troubleshooting guides before posting! (/thread-22202.html)



Please check the troubleshooting guides before posting! - ServantBrute - 07-22-2013

Hey guys i'm just checking to see if my Level3.hps file has any errors becuase when i enter a level door it says Fatal error cannot reach Level3.hps.

Here it is.

void OnStart()
{
AddEntityCollideCallback("Player", "AreaCollide", "EventCollide", true, 1);

void EventCollide(string &in asParent, string &in asChild, int alState)

SetEntityActive("Grunt", true);

AddEnemyPatrolNode("Grunt", "Path_1", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_2", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_3", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_4", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_5", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_6", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_7", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_8", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_9", 0.001f, "");
AddEnemyPatrolNode("Grunt", "Path_10", 0.001f, "");
}
AddUseItemCallback("", "Key3", "DOOR", "UseKeyOnDoor", true);

void UseKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked(asEntity, false, true);
PlaySoundAtEntity("", "unlock_door.snt", asEntity, 0, false);
RemoveItem(asItem);
}


RE: Please check the troubleshooting guides before posting! - PutraenusAlivius - 07-22-2013

Code:
void OnStart()

{

        AddEntityCollideCallback("Player", "AreaCollide", "EventCollide", true, 1);    

AddUseItemCallback("", "Key3", "DOOR", "UseKeyOnDoor", true);
}


void EventCollide(string &in asParent, string &in asChild, int alState)
{

        SetEntityActive("Grunt", true);

     AddEnemyPatrolNode("Grunt", "Path_1", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_2", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_3", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_4", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_5", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_6", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_7", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_8", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_9", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_10", 0.001f, "");

}

    
void UseKeyOnDoor(string &in asItem, string &in asEntity)

{

    SetSwingDoorLocked(asEntity, false, true);

    PlaySoundAtEntity("", "unlock_door.snt", asEntity, 0, false);

    RemoveItem(asItem);    

}

Fixed. The errors are because void OnStart() have no closing brace, void EventCollide have no opening brace, and AddUseItemCallback is not defined in a function.

Also, this is the wrong section.


RE: Please check the troubleshooting guides before posting! - ServantBrute - 08-12-2013

(07-22-2013, 07:46 AM)JustAnotherPlayer Wrote:
Code:
void OnStart()

{

        AddEntityCollideCallback("Player", "AreaCollide", "EventCollide", true, 1);    

AddUseItemCallback("", "Key3", "DOOR", "UseKeyOnDoor", true);
}


void EventCollide(string &in asParent, string &in asChild, int alState)
{

        SetEntityActive("Grunt", true);

     AddEnemyPatrolNode("Grunt", "Path_1", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_2", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_3", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_4", 0.001f, "");

        AddEnemyPatrolNode("Grunt", "Path_5", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_6", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_7", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_8", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_9", 0.001f, "");

    AddEnemyPatrolNode("Grunt", "Path_10", 0.001f, "");

}

    
void UseKeyOnDoor(string &in asItem, string &in asEntity)

{

    SetSwingDoorLocked(asEntity, false, true);

    PlaySoundAtEntity("", "unlock_door.snt", asEntity, 0, false);

    RemoveItem(asItem);    

}

Fixed. The errors are because void OnStart() have no closing brace, void EventCollide have no opening brace, and AddUseItemCallback is not defined in a function.

Also, this is the wrong section.
I knew this was the wrong section, i was just rushing. And thanks for the help bro!