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

Barbarian botting HOTA build?

SeaNanners

Member
Joined
Aug 16, 2012
Messages
270
Reaction score
1
I'm new to botting and I think HOTA is better than WW build for botting? quote me if im wrong. Im watching my BOT and it rarely uses the skill HOTA. Can someone help me here :( Anyway, i'M using HOTA build and im not sure if i set everythign right here 9b21601997863fafb680f5d6f0b38592.png
im most be just farming legendaries in mp5 and below. Thank you really apprecaited if you can help thanks :D
 
Last edited:
what is your set of skills, the problem will be in there somewhere
plus for an effective hota build you will need the full IK set as minimum requirement. the bot is not very good at handling hybrid builds to my experience.
 
i need help also... need to use hota more often.....and i dont know what to do...
 
Same problem here. i was wondering if there was a way to set skills for the Char. ?
or is the bot for WW ?
 
Plugins/GilesTriniry/Abillities/Barbarian.cs

Code:
            // Hammer of the ancients spam-attacks - never use if waiting for special
            if (!UseOOCBuff && !IsCurrentlyAvoiding && !PlayerStatus.IsIncapacitated && !IsWaitingForSpecial && Hotbar.Contains(SNOPower.Barbarian_HammerOfTheAncients) &&
                PlayerStatus.PrimaryResource >= 20)
            {
                //return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, CurrentTarget.ACDGuid, 2, 2, USE_SLOWLY);
                return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 18f, CurrentTarget.Position, CurrentWorldDynamicId, -1, 2, 2, WAIT_FOR_ANIM);
            }

try chagning it to

Code:
            // Hammer of the ancients spam-attacks
            if (!UseOOCBuff && !IsCurrentlyAvoiding &&  Hotbar.Contains(SNOPower.Barbarian_HammerOfTheAncients) &&
                PlayerStatus.PrimaryResource >= 20)
            {
                //return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, CurrentTarget.ACDGuid, 2, 2, USE_SLOWLY);
                return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 10f, vNullLocation, -1, CurrentTarget.ACDGuid, 0, 0, NO_WAIT_ANIM);
            }

also if you have any gear that lowers the resource cost of HOTA change the value from 20 to what it costs for you.

Please let me and others know if its working, i can't try it out ATM :)
 
Plugins/GilesTriniry/Abillities/Barbarian.cs

Code:
            // Hammer of the ancients spam-attacks - never use if waiting for special
            if (!UseOOCBuff && !IsCurrentlyAvoiding && !PlayerStatus.IsIncapacitated && !IsWaitingForSpecial && Hotbar.Contains(SNOPower.Barbarian_HammerOfTheAncients) &&
                PlayerStatus.PrimaryResource >= 20)
            {
                //return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, CurrentTarget.ACDGuid, 2, 2, USE_SLOWLY);
                return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 18f, CurrentTarget.Position, CurrentWorldDynamicId, -1, 2, 2, WAIT_FOR_ANIM);
            }

try chagning it to

Code:
            // Hammer of the ancients spam-attacks
            if (!UseOOCBuff && !IsCurrentlyAvoiding &&  Hotbar.Contains(SNOPower.Barbarian_HammerOfTheAncients) &&
                PlayerStatus.PrimaryResource >= 20)
            {
                //return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, CurrentTarget.ACDGuid, 2, 2, USE_SLOWLY);
                return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 10f, vNullLocation, -1, CurrentTarget.ACDGuid, 0, 0, NO_WAIT_ANIM);
            }

also if you have any gear that lowers the resource cost of HOTA change the value from 20 to what it costs for you.

Please let me and others know if its working, i can't try it out ATM :)

Hi,i try this edit and use this build Barbarian - Game Guide - Diablo III
WORK PERFECT !! :-))
 
Code:
            // Hammer of the ancients spam-attacks - elites only
            if (!UseOOCBuff && !IsCurrentlyAvoiding &&  Hotbar.Contains(SNOPower.Barbarian_HammerOfTheAncients) && TargetUtil.IsEliteTargetInRange(18f) &&
                PlayerStatus.PrimaryResource >= 20)
            {
                //return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, CurrentTarget.ACDGuid, 2, 2, USE_SLOWLY);
                return new TrinityPower(SNOPower.Barbarian_HammerOfTheAncients, 10f, vNullLocation, -1, CurrentTarget.ACDGuid, 0, 0, NO_WAIT_ANIM);
            }

Try this for HOTA elites only, let me know if its working ;)
 
Sometimes it helps to put the skill you want to use mainly on RMB :D
 
Back
Top