I produced a second logfile in another Instanz.
In short what happend:
Bot startet and he sets the right Leader--> my Husbands Mage
[20:04:12.864 D] Aktivit?t: Leader choosen by name: xxPlayersnamexx
accepting invate to Instance and porting there:
[20:09:41.467 N] Not in game
On this Point I forced him to choose my husband as leader on event PartyChanged, changed Sourcecode you find below
[20:09:43.166 D] Activity: Leader choosen by name: xxPlayersnamexx
This was correct but he was not able to move in the Instance.
Beside this he trys to open gro?e mithrilbeschlagene Truhe = Large Mithril Bound Chest (
Large Mithril Bound Chest - Object - World of Warcraft) because he thoughts this is a Questobject within 10ft Range (I personally set the Range from 30 to 10 in your Sourcecode as Test)
[20:10:08.510 N] [FCB] Quest object is visible: Gro?e mithrilbeschlagene Truhe
I turned off collecting Quest Objects in last Tab, this fixes this. But then he will collect no Questobjects.
Now our group was fighting through the Instance I moved the toon manually.
He also could not generate Paths to lootable Objects, I had to move to them manually.
I tryed to change the Leader several times to Tank and back to my Husband --> no movement
Then cames the amazing event: Our whole group dies in a Bossfight.
[20:31:32.401 V] [Singular] [WoWRedError] Ihr seid tot
So I moved back to the Instance :
[20:32:00.379 N] Not in game
and as I entered the Instance the Bot trys to heal everybody. So I stopped the Bot to avoid Healspamming:
[20:32:07.523 D] Stop called!
Then back inside I startet again
[20:33:17.556 N] Bot wird gestartet!
...
[20:33:18.257 D] Aktivit?t: Leader choosen by name: xxPlayersnamexx
and now he was able to create movement and follows my husband.
From then on he works fine

heals, moves, was looting ...
Till the end because in this Instance there is a unvisible Wall before the Endboss, there he had some Navigation issues again
[20:46:26.679 D] Could not generate full path from {-0.8951263, 789.3035, -33.06169} to {2.329728, 787.4966, -32.02345} (time used: 0 milliseconds)
But these issue is understandable.
What I don't understand is, why surprisingly was able to navigate after the bot restarted
Here is my changed Sourcecode to avoid a new Leader if Party changed and you are porting to a instance:
Code:
private void HandlePartyMembersChanged(object sender, LuaEventArgs args)
{
//Ge?ndert
Thread.Sleep(1000);
WoWPlayer MyHusbandsChar = ObjectManager.GetObjectsOfType<WoWPlayer>(false, false).FirstOrDefault(p => p.Name == Setting.Instance.FollowLeader);
if (MyHusbandsChar != null)
{
TreeRoot.StatusText = "Leader choosen by name: " + MyHusbandsChar.Name;
//_followLeaderName = MyHusbandsChar.Name;
RaFHelper.SetLeader(MyHusbandsChar.Guid);
_leader = MyHusbandsChar;
}
//else
// _leader = null;
}