• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • HB ARCHIVES: TheBrodieman's Profile Compendium--DO NOT DELETE

    Discussion in 'Archives' started by chinajade, Dec 23, 2012.

    1. tumbum

      tumbum Active Member

      Joined:
      Mar 17, 2011
      Messages:
      3,341
      Likes Received:
      13
      Trophy Points:
      38
      works much better, run my toon today for some hours there and now he still hit the mobs while he stays with his shield. thank you.
       
    2. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      Yes. Instructions on page 1.
       
    3. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      I take it this means it is working?
       
    4. nightl2

      nightl2 New Member

      Joined:
      Dec 25, 2013
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      Still bugged
       
    5. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      Does said NPC have quests available to you?
       
    6. HSBen

      HSBen Member

      Joined:
      Sep 16, 2010
      Messages:
      97
      Likes Received:
      0
      Trophy Points:
      6
      All of a sudden today this keeps crashing my wow. I have no addons being used etc
       
    7. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      As said multiple times in the last 48 hours...
      If by crashing you mean "WoW seems to lock up until I close/stop HB" then just turn off Framelock
       
    8. snt76

      snt76 Member

      Joined:
      Aug 27, 2012
      Messages:
      105
      Likes Received:
      0
      Trophy Points:
      16
      That is not true, I am using questing botbase (and your profiles) through ***** server because I live in germany. It is always working perfectly.
       
    9. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      Ok yeah. Probably not a good idea to post what you are doing to circumvent the court ordered disallowed use of HB's questing bot.

      It's not condoned. I don't support the use of servers like this. Sorry.
       
    10. tumbum

      tumbum Active Member

      Joined:
      Mar 17, 2011
      Messages:
      3,341
      Likes Received:
      13
      Trophy Points:
      38
      yes it works! thank you
       
    11. KrenKO

      KrenKO New Member

      Joined:
      Jan 17, 2014
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Error: Unable to run [Brodies Plugin] update process
       

      Attached Files:

    12. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      Missing files.
      Make sure you installed to the correct path.
      Drag and drop the folder from the zip directly into the plugins folder. Do not rename. Do not create additional folders.
       
    13. myrgy

      myrgy Member

      Joined:
      Dec 19, 2013
      Messages:
      384
      Likes Received:
      2
      Trophy Points:
      18
      Is there some way to figure out which Timeless Isle chests are not opened in the profile so I can do them manually?
       
    14. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      One underwater in the ship.
      One where archerius of flame spawns (I believe)
      The two you need to fly to get to
      And the one you need the legendary cloak for.
       
    15. Raidynxbl

      Raidynxbl New Member

      Joined:
      Nov 21, 2012
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
      For some reason the file keeps downloading as an html file instead of being a zipped file. Any help on this?
       
    16. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      I have the same issue on here. I have to use firefox to fix this. IE gives me this issue.
       
    17. MaiN

      MaiN Moderator Staff Member Moderator Buddy Core Dev

      Joined:
      Jan 15, 2010
      Messages:
      1,017
      Likes Received:
      35
      Trophy Points:
      48
      There is an issue in SpellAvoidance that causes WoW to freeze permanently.
      Spell.cs line 275 - 302 as of today:
      Code:
      /// <summary>
      /// this behavior will move the bot StrafeRight/StrafeLeft only if enemy is casting and we needed to move!
      /// Credits to BarryDurex.
      /// </summary>
      /// <param name="EnemyAttackRadius">EnemyAttackRadius or 0 for move Behind</param>
      public static void AvoidEnemyCast(WoWUnit Unit, float EnemyAttackRadius, float SaveDistance)
      {
      	if (!StyxWoW.Me.IsFacing(Unit))
      	{ Unit.Face(); }
      
      	float BehemothRotation = getPositive(Unit.RotationDegrees);
      	float invertEnemyRotation = getInvert(BehemothRotation);
      
      	WoWMovement.MovementDirection move = WoWMovement.MovementDirection.None;
      
      	if (getPositive(StyxWoW.Me.RotationDegrees) > invertEnemyRotation)
      	{ move = WoWMovement.MovementDirection.StrafeRight; }
      	else
      	{ move = WoWMovement.MovementDirection.StrafeLeft; }
      
      	while (Unit.Distance2D <= SaveDistance && Unit.IsCasting && ((EnemyAttackRadius == 0 && !StyxWoW.Me.IsSafelyBehind(Unit)) ||
      		(EnemyAttackRadius != 0 && Unit.IsSafelyFacing(StyxWoW.Me, EnemyAttackRadius)) || Unit.Distance2D <= 2 ))
      	{
      		WoWMovement.Move(move);
      		Unit.Face();		   
      	}
      	WoWMovement.MoveStop();
      }
      
      When run during framelock, the while loop will run infinitely because the distance will never update.
      An easy fix is to enclose the while loop with a ReleaseFrame call:

      Code:
      /// <summary>
      /// this behavior will move the bot StrafeRight/StrafeLeft only if enemy is casting and we needed to move!
      /// Credits to BarryDurex.
      /// </summary>
      /// <param name="EnemyAttackRadius">EnemyAttackRadius or 0 for move Behind</param>
      public static void AvoidEnemyCast(WoWUnit Unit, float EnemyAttackRadius, float SaveDistance)
      {
      	if (!StyxWoW.Me.IsFacing(Unit))
      	{ Unit.Face(); }
      
      	float BehemothRotation = getPositive(Unit.RotationDegrees);
      	float invertEnemyRotation = getInvert(BehemothRotation);
      
      	WoWMovement.MovementDirection move = WoWMovement.MovementDirection.None;
      
      	if (getPositive(StyxWoW.Me.RotationDegrees) > invertEnemyRotation)
      	{ move = WoWMovement.MovementDirection.StrafeRight; }
      	else
      	{ move = WoWMovement.MovementDirection.StrafeLeft; }
      
      	using (StyxWoW.Memory.ReleaseFrame(true))
      	{
      		while (Unit.Distance2D <= SaveDistance && Unit.IsCasting && ((EnemyAttackRadius == 0 && !StyxWoW.Me.IsSafelyBehind(Unit)) ||
      				                                                        (EnemyAttackRadius != 0 && Unit.IsSafelyFacing(StyxWoW.Me, EnemyAttackRadius)) || Unit.Distance2D <= 2))
      		{
      			WoWMovement.Move(move);
      			Unit.Face();
      		}
      	}
      	WoWMovement.MoveStop();
      }
      
      However, this will still hog HB's tick time. Consider revising it to use a behavior tree (or coroutine).
       
    18. Aevitas

      Aevitas Well-Known Member Staff Member Buddy Core Dev

      Joined:
      Mar 2, 2010
      Messages:
      2,307
      Likes Received:
      36
      Trophy Points:
      48
      Always using those opportunities to sneak a coroutine in!
       
    19. thebrodieman

      thebrodieman Well-Known Member Buddy Store Developer

      Joined:
      Sep 11, 2011
      Messages:
      6,015
      Likes Received:
      81
      Trophy Points:
      48
      Stormchasing brought this to my attention today too, about utilizing a BT. My fear is that if I convert to BT, I'm going to need to do it to the ENTIRE plugin. And...my experience with that kind of conversion is small scale (QBs only) so an entire plugin...oh boy...
       
    20. mrgundel

      mrgundel New Member

      Joined:
      Apr 9, 2012
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      1
      My bot keeps wanting to recall :/ it did two sets of dailies and then proceeded to recall again, not doing the rest :(
       

    Share This Page