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

(Barb) - Chilanik's Chain

lghaze

Member
Joined
Oct 24, 2012
Messages
91
Reaction score
0
Is there a way to add / modify the code to use Warcry OOC? I have this awesome belt and want to keep the buff up as much as possible.
 
You just wear the belt and check sprint use "anytime" and it will auto use it ooc and sprint along with it to make you run super fast.
 
i have use sprint set to anytime. but i am not goign to use sprint, i want to use War Cry. It only uses it when the buff falls off.
 
just figured out what to do myself, mind you this may not be 100% the best way

go into trinity > variables

open trinity variable configuration

Barbarian.Warcry.Maxfury set this to 200
SpellsDelay.Barbarian_warcry i have mine set to 17000 but you could work out your cooldown for warcry in millisecs(after cd reduction) and enter that

after this the bot seems to spam it, hopefully this helps
 
public static bool CanUseWarCry
{
get
{
return
CanCast(SNOPower.X1_Barbarian_WarCry_v2, CanCastFlags.NoTimer) &&
!Player.IsIncapacitated && true;
//(Player.PrimaryResource <= V.F("Barbarian.WarCry.MaxFury") || !GetHasBuff(SNOPower.X1_Barbarian_WarCry_v2));
}
}
 
Back
Top