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:
edit: I have also tried this on a clean install with same results.
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.