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

Superbad - Mage CC

Is it randomly casting timewarp, seems to cast it at all the wrong places,
 
AW: Superbad - Mage CC

Im currently reworking the druid bugs.
Afterwards i will fix all issues here. :)
 
Reworked frost rotation completely!
Should work now really good. :]

Next will be arcane!
 
Could you share with us how to deactivate the crazy usage of Time Warp, until you have an option for it in the settings, please? :)
 
AW: Superbad - Mage CC

Could you share with us how to deactivate the crazy usage of Time Warp, until you have an option for it in the settings, please? :)

Okay... :D

Go into Mageattacks. Cs.
Search for

time_warp (string explain)
{

Add the following line just behind the "{" :
return false;
 
You may need to be more specific :P All I can find is:

Code:
private static bool time_warp()
	return false;
        {
            if (StyxWoW.Me.CurrentTarget == null)
                return false;
            if (StyxWoW.Me.IsInInstance && !target.IsBoss(StyxWoW.Me.CurrentTarget) &&
                !target.IsTrainingDummy(StyxWoW.Me.CurrentTarget))
                return false;
            if (!SpellManager.HasSpell("Time Warp"))
                return false;
            if (SpellManager.Spells["Time Warp"].CooldownTimeLeft.TotalSeconds >
                SpellManager.GlobalCooldownLeft.TotalSeconds)
                return false;
            if (StyxWoW.Me.HasAura("Temporal Displacement") || StyxWoW.Me.HasAura("Exhaustion"))
                return false;
            SpellManager.Cast("Time Warp");
            Logging.Write(LogLevel.Normal, "Time Warp");
            return true;
        }
 
I'm currently struggeling with getting this to work with BGBuddy.
It seems like that the bot needs to be helped with mounting each time after combat.
Current setup is BGBuddy - Superbad with Ultimate PvP Suite.
The CC works fine once I actually mount my character.
 
The rotation for Arcane mage never use Arcane Barrage, always must have 6 charges up
 
Happens for me sometimes aswell, the mount problem. And oddly enough only with this CC haha..

And it also just zones out sometimes and like sits there for until it DC's due to away, dont know what the problem is..
 
AW: Superbad - Mage CC

I will look into the mounting issues tomorrow :)
 
waiting for custom ui to be finished. I hope this will be as good as your cat cc, awesome work sir.
 
Whatever you did in the last update, you did magic!

Works perfect again, and its REALLY good in BG's :-)
 
Back
Top