Frictional Games Forum (read-only)

Full Version: Enemy Patrol
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I cant get the enemy to patrol the path I made, he just stands there after he spawns..

In the editor I used pathnode from the monster to the end..

The scripting is..

void OnStart()
{

AddEntityCollideCallback("Player", "EnemyTrigger", "CollideEnemyTrigger", true, 0);

AddEntityCollideCallback("Infected", "EnemyEnd", "GruntEndMusic", true, 1);

}

void OnEnter()
{
}

void CollideEnemyTrigger(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("Infected", true);
GiveSanityDamage(0, true);
}

void EnemyFunction(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("Infected", true);
AddEnemyPatrolNode("Infected", "PathNodeArea_1", 0.0f, "");
AddEnemyPatrolNode("Infected", "PathNodeArea_123", 0.0f, "");
}

void OnLeave()
{
}


So what Im I doing wrong? Plz help.
Thx
You didn't call 'EnemyFunction' anywhere in your script.
And this is the technical issues forum, you should post your questions in Custom Stories forum.
Yes I have it under OnEnter.

aah sorry.. I will put it up there instade