• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Gathering has issues casting Truth Of Spell

    Discussion in 'Rebornbuddy Support' started by becto, Mar 4, 2015.

    1. becto

      becto Member

      Joined:
      Mar 14, 2014
      Messages:
      104
      Likes Received:
      5
      Trophy Points:
      18
      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.
       
    2. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,343
      Likes Received:
      383
      Trophy Points:
      83
      Thanks for the report. I'll look into it.
       
    3. becto

      becto Member

      Joined:
      Mar 14, 2014
      Messages:
      104
      Likes Received:
      5
      Trophy Points:
      18
    4. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,343
      Likes Received:
      383
      Trophy Points:
      83
      Already fixed for the next version.
       

    Share This Page