You can also try this:
void OnStart()
{
AddEntityCollideCallback("Player", "ScriptArea_1", "ActivateMonster", true, 1);
}
void ActivateMonster(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("Monster", true);
int x = RandInt(0, 5);
for (int i = 1; i > 0 && i < 6; i++)
{
AddEnemyPatrolNode("Monster", "Path_"+i, x, "");
}
}
That would add a random time effect to 5 path nodes the monster could walk on.
Also by the way, the thread's title should read: "Path Nodes"
:p