What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Gathering has issues casting Truth Of Spell

becto

Member
Joined
Mar 14, 2014
Messages
104
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.
 
Back
Top