Hello,
I am trying to command my allies to move to specific position by saying
for(var friend in friendArr)
{
this.say(friendArr[friend].id +" move to: " + position);
friendArr[friend].target = null;
friendArr[friend].targetPos = position;
}
But it doesn’t seem that effect anything.
Is there any suggestions?
Thanks