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

Make Barb Stop using WW all the time waste/IK set

Mr Gumby

Member
Joined
Nov 23, 2013
Messages
119
Reaction score
1
Is there a way to stop barb from using whirlwind all the time for movement? I know this was changed in the last trinity for the wastes set, but unless you are using a BK set as well there is no point to it. I am using a 6 set wastes and 4 set IK and I frequently am running out of fury where there are not enough mobs around. A checkbox for for use WW all the time would be nice.
 
Yes I know, but I am using sprint for movement so that won't work for me.

x:\Demonbuddy\Plugins\Trinity\Movement\PlayerMover.cs

search:
Code:
(Sets.BulKathossOath.IsFullyEquipped || Sets.WrathOfTheWastes.IsFullyEquipped)

Modify to
Code:
(!CacheData.Hotbar.ActivePowers.Contains(SNOPower.Barbarian_Sprint) && (Sets.BulKathossOath.IsFullyEquipped || Sets.WrathOfTheWastes.IsFullyEquipped))

Save

restart db
 
Last edited:
Barbarian - removed using WW for movement for WotW set when BK's oath is not detected (WotW alone can't keep the fury up)
Should be in the next official release. Thanks for reporting this.
 
x:\Demonbuddy\Plugins\Trinity\Movement\PlayerMover.cs

search:
Code:
(Sets.BulKathossOath.IsFullyEquipped || Sets.WrathOfTheWastes.IsFullyEquipped)

Modify to
Code:
(!CacheData.Hotbar.ActivePowers.Contains(SNOPower.Barbarian_Sprint) && (Sets.BulKathossOath.IsFullyEquipped || Sets.WrathOfTheWastes.IsFullyEquipped))

Save

restart db

This did not work for me, however it did point me in the right direction...

Simply changing this:
Code:
(Sets.BulKathossOath.IsFullyEquipped || Sets.WrathOfTheWastes.IsFullyEquipped)

To this:
Code:
(Sets.BulKathossOath.IsFullyEquipped && Sets.WrathOfTheWastes.IsFullyEquipped)

And that did the trick.
 
just as a stupid question... how can i move in WW like trinity by myself? for real, i am unable to find anything about it on google, etc..^^
 
just as a stupid question... how can i move in WW like trinity by myself? for real, i am unable to find anything about it on google, etc..^^

you mean with WW as your left mouse button? hold shift while clicking.
 
man... after more than 3 years i finally know how to move my barb^^ thanks (i had not assigned the key and couldnt imagine how "Force stand still" can have the wanted effect) thx
 
Back
Top