I have tried other profiles, even created my own. What is happening is the bot will change classes and spam "Truth of Mountains" or "Truth of Forests" over and over until it thinks it gets it right, then moves to the next spot. I have even tried a spell cast code chunk if Aura has either Truth spell to force casting it, but it is the bot that is spamming the Truth spells, so I can not manage how it works. I have also used MoveTo tags to see if inching them forward prevents spamming that ability. Please view the attached log. View attachment 5684 2015-03-04 06.47.txt Code chunk used to attempt to fix issue: Code: <CodeChunk Name="UseMINBuff"> <![CDATA[ SpellData data; if (!Core.Me.HasAura("Truth of Mountains") && Actionmanager.CurrentActions.TryGetValue("Truth of Mountains", out data) && Actionmanager.CanCast(data, Core.Me)) { await Buddy.Coroutines.Coroutine.Sleep(1000); Actionmanager.DoAction("Truth of Mountains", Core.Me); await Buddy.Coroutines.Coroutine.Sleep(1000); } ]]> </CodeChunk> <CodeChunk Name="UseBTNBuff"> <![CDATA[ SpellData data; if (!Core.Me.HasAura("Truth of Forests") && Actionmanager.CurrentActions.TryGetValue("Truth of Forests", out data) && Actionmanager.CanCast(data, Core.Me)) { await Buddy.Coroutines.Coroutine.Sleep(1000); Actionmanager.DoAction("Truth of Forests", Core.Me); await Buddy.Coroutines.Coroutine.Sleep(1000); } ]]> </CodeChunk> edit: I have also tried this on a clean install with same results.
If it helps, here is another log where i am switching BTN and MIN and the Truth spells spam before the bot feels it has it correct and continues on. View attachment 2028 2015-03-06 07.28.txt I am able to bot, although it looks like I am at times when the truth spells spam. This is the profile I have created and pieced together using other peoples xml code. View attachment BotanyMining_AllQuestItems.xml