I'm needing to create a walk path for NPC that theoretically needs to span across 8 rooms. Would it be possible to do this globally or would I have to code each path in each room? For the coding, am I on the right track by using:
Code: AGS
Thanks!
-j
cChar1.Walk (100,100, eNoBlock); //start him walking
cChar1A.AddWayPoint(230, 150); //add some more waypoints to his path
cChar1.AddWayPoint(20, 120);
Thanks!
-j