(11-14-2015, 09:55 PM)Seneth Wrote: Can you tell me why my pathnodes still arghhh.
All enemy just stay in his spawn (entityactive) and walk only if they spot me
You are calling the Pathfinder functions in the wrong order. You want to add the nodes with Pathfinder_Track_Add, and then run Pathfinder_Track_Start. (It's also generally a good idea to call Pathfinder_Track_Clear at the start of everything as well.)
Pathfinder_Track_Clear("entity_name");
Pathfinder_Track_Add("entity_name", "Path_Node_1");
Pathfinder_Track_Add("entity_name", "Path_Node_2");
Pathfinder_Track_Add("entity_name", "Path_Node_3");
Pathfinder_Track_Start("entity_name", true, 1.0, "");