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

Earthquake and Battle shout

Yohaiw

Member
Joined
Aug 13, 2012
Messages
143
Reaction score
4
I hope im posting this in the right place but
I use trinity 1.8.22 (didnt update since it seems the next one is abit buggy)
and run ghom profile

My barb constantly spams battle shout and totaly ignores earthquake

how do i solve this?
 
public static bool ShouldWaitForEarthquake
{
get
{
return
Hotbar.Contains(SNOPower.Barbarian_Earthquake) &&
!UseOOCBuff &&
!IsCurrentlyAvoiding &&
!CanCast(SNOPower.Barbarian_Earthquake) &&
TargetUtil.AnyElitesInRange(25) &&
!GetHasBuff(SNOPower.Barbarian_Earthquake) &&
Player.PrimaryResource <= 5; ;
}
}
public static bool CanCastEarthquake
{
get
{
return
!UseOOCBuff &&
!IsCurrentlyAvoiding &&
!Player.IsIncapacitated &&
CanCast(SNOPower.Barbarian_Earthquake) &&
!GetHasBuff(SNOPower.Barbarian_Earthquake) &&
TargetUtil.IsEliteTargetInRange(6f) &&
Player.PrimaryResource > 5;
 
db folder \Plugins\Trinity\Combat\Abilities\ -> BarbarianCombat.cs

open with a text editor (notepad++ or just windows default notepad)
search (ctrl+f) for i.e. ShouldWaitForEarthquake

and replace the code (haven´t done it with this one but thats what you usally have to do).
 
ahh now i see what it wrong "Player.PrimaryResource > 5;"

in my it says "Player.PrimaryResource <= 50;" wich means that it will cast earthquake if warth is less or equal to 50, now i change it to > 5 "more than 5"

thanks lets see if it works :D
 
got some issues with overpower aswell tho, it does it in the very very end for some reason, trying to look in the code if i can find it myself... IM ON A ADVENTURE :o
 
aw... still didnt do earthquake, what a let down :-{

doesnt do volcano or earthquake and it waits to do overpower until ghom is at like 5-10% hp
 
What is battle shout? :)

Earthquake is fixed in next push
 
What is battle shout? :)

Earthquake is fixed in next push

i think he is refeering to battle rage, i had same problem, and i switch some things around in trinity interface > barbarian, not sure what really actually did the trick but in this version all of a sudden it started spamming battle rage at ghom, didnt do dat before :0
 
Back
Top