gonemental
Member
- Joined
- Nov 14, 2010
- Messages
- 295
- Reaction score
- 11
Yes. AutomaticFormSelection in the Settings.
Fixedworks well with grindbot, much better than any other for guardian atleast. However it pulls in travelform then casts 3X faire fire in humanform before going bear
Spells.CastBuff("Travel Form", Me, ret => DruidSettings.Instance.AutomaticFormSelection && Me.Shapeshift != ShapeshiftForm.Travel && (TimerFinished(FormSwitch, "Form Switch") && (!Me.Mounted && !Me.Combat && !Me.IsCasting) || Me.MovementInfo.CurrentSpeed < 161)),
Spells.CastBuff("Travel Form", Me, ret => DruidSettings.Instance.AutomaticFormSelection && Me.Shapeshift != ShapeshiftForm.Travel && (TimerFinished(FormSwitch, "Form Switch") && (!Me.Mounted && !Me.Combat && !Me.IsCasting) || Me.MovementInfo.CurrentSpeed < 161)[B] && !Me.Mounted[/B]),
HonnorBuddy\Routines\Guardian\Guardian\Classes\Guardian.cs
@Line117
Code:Spells.CastBuff("Travel Form", Me, ret => DruidSettings.Instance.AutomaticFormSelection && Me.Shapeshift != ShapeshiftForm.Travel && (TimerFinished(FormSwitch, "Form Switch") && (!Me.Mounted && !Me.Combat && !Me.IsCasting) || Me.MovementInfo.CurrentSpeed < 161)),
change to
Code:Spells.CastBuff("Travel Form", Me, ret => DruidSettings.Instance.AutomaticFormSelection && Me.Shapeshift != ShapeshiftForm.Travel && (TimerFinished(FormSwitch, "Form Switch") && (!Me.Mounted && !Me.Combat && !Me.IsCasting) || Me.MovementInfo.CurrentSpeed < 161)[B] && !Me.Mounted[/B]),
or somehow...
is there anyway to turn off self healing, i mean out of form using healing touch etc? also ''Will Target and Taunt Any Hostile NPC that is targeting a party member'' can you add an option to turn off the use of growl
Simple enough. I added both options.
Spells.CastBuff("Frenzied Regeneration", Me as WoWUnit, ret => DruidSettings.Instance.FrenziedRegeneration && Me.HealthPercent < 90 && Me.RagePercent > 60),
For grinding though, FR > SD. it just helps more an means less down time, if we can have a option to turn off SD. It'd be nice![]()
i dont understand this, its not doing anything in an instance yet outside its working fine
Spells.CastBuff("Frenzied Regeneration", Me as WoWUnit, ret => DruidSettings.Instance.FrenziedRegeneration && Me.RagePercent > 60),
if you can't figure it out pm me and I'll help you via skype or something.
I am looking into it.Hey awesome bear guardian profile, best one I've seen yet. It really does a lot and is very fluid but I had a couple problems. I knot this is for lazy raider but b/c of how fluid it is I use it for grinding & prefer frenzied regen over savage defense (which is fine when you have heals but not for solo grinding) considering they share the rage pool. So I disabled savage defense & noticed that for some reason it was ignoring the second half of the && statement about having >60 rage leaving it spamming frenzied regen w/o rage and ignoring almost all other abilities. This caused me to die upwards of 11 deaths/hr. What I did was remove the health and just have it cast frenzied regen everytime it gained >60 rage in both the multiple target and single target. I've yet to die it with it!
This is what I changed it to: