Greetings,
while running a quester profile is there a chance to get the number of the free bag space so i can force to vendor if i think there is more room neccessary?
And in second, if i start to go anywhere using this code:
------------------------------
var path = new List<Vector3>() {new Vector3(-8770.368f, 842.1389f, 90.03706f)};
MovementManager.Go(path);
while (MovementManager.InMovement && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) {Thread.Sleep(100);}
MovementManager.StopMove();
------------------------------
The bot tries to run straight to the target - without generating a path and therefore mostly against a wall and is continuing with the next step then.
Is there a way to force a new path generation?
thank you a lot!