$$ACTION AI Send AI object [o:Object] on path [h:Path]; Flags = [g:AIGoalFlags=4352:32706959], GoalID = [e:GoalID=-1], Priority = [e:GoalPriority=3] aAIGoalFollowPathSimple Send AI object on path Instructs an AI object to follow a path Parameters: Object - the object who is send to the room Path - the path to follow Flags - the flags for this goal GoalID - an ID for this goal Priority -
| 3643 | $$END |
| 3644 | */ |
| 3645 | void aAIGoalFollowPathSimple(int objhandle, int pathid, int flags, int goalid, int priority = 0) { |
| 3646 | //!!GoalID not used yet |
| 3647 | |
| 3648 | if (pathid != -1) |
| 3649 | AI_GoalFollowPathSimple(objhandle, pathid, goalid, flags, priority); |
| 3650 | } |
| 3651 | |
| 3652 | /* |
| 3653 | $$ACTION |
no test coverage detected