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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

anoying polymorph spam..

Mayakashi

New Member
Joined
Jan 22, 2012
Messages
4
as the title says.. if there are more than 2 humanoids in the pack that the tank pulls in an isntance the idiot just burns half mana spaming polymorph...
even if the tank is aoe ing and braking it ( why shouldnt he on 2 mobs ) he just re-casts it...
i've been kicked out of dungeon groups a lot of times cuzz of this...
its easy 2 notice that only a bot would do this..
plz help
 
as the title says.. if there are more than 2 humanoids in the pack that the tank pulls in an isntance the idiot just burns half mana spaming polymorph...
even if the tank is aoe ing and braking it ( why shouldnt he on 2 mobs ) he just re-casts it...
i've been kicked out of dungeon groups a lot of times cuzz of this...
its easy 2 notice that only a bot would do this..
plz help

First: Hi! Welcome to the forums

2nd: You might want to get yourself another CC than the one that comes with HB as i feel there's a lot of problems with those.
 
tx for both of u guys :)
actualy i just got it yesterdays so i have no idea how to do that or what it is :S
 
i did... but havent found anything in which is it written to how to get it working =/
 
as the title says.. if there are more than 2 humanoids in the pack that the tank pulls in an isntance the idiot just burns half mana spaming polymorph...
even if the tank is aoe ing and braking it ( why shouldnt he on 2 mobs ) he just re-casts it...
i've been kicked out of dungeon groups a lot of times cuzz of this...
its easy 2 notice that only a bot would do this..
plz help


Hey mate I'll help you out on how to get a current cc that will not spam poly..

First thing you'll want to do is go here and download a CC for your Mage. Mage
I can not tell you which CC to use for a Mage, you'll need to find what's best by reading comments and so on..

After you have download the CC extract the CC to Gatherbuddy\CustomClasses.

Now if you have installed the CC correctly you'll want to open Gatherbuddy, login like usual and load your profile. If you have Enhanced Mode enabled Click Class Configurations and make sure you choose the CC name you downloaded and from there out is rather easy to understand and setup.

If you have any other questions feel free to PM me.
 
Hey,

I had the same problem with the standart singular CC that comes with honorbuddy.. I solved it by removing some parts out of the *.cs files.. I'm using another CC now, but if you still want to use Singular CC, this is how to remove polymorph.

go to "\CustomClasses\Singular\ClassSpecific\Mage" and open common.cs with notepad (or better notepad++). Find and delete this part at the bottom of the file:

Code:
public static Composite CreateMagePolymorphOnAddBehavior()
        {
            return 
                new PrioritySelector(
                    ctx => Unit.NearbyUnfriendlyUnits.OrderByDescending(u => u.CurrentHealth).FirstOrDefault(IsViableForPolymorph),
                    new Decorator(
                        ret => ret != null && Unit.NearbyUnfriendlyUnits.All(u => !u.HasMyAura("Polymorph")),
                        new PrioritySelector(
                            Spell.PreventDoubleCast(ret => (WoWUnit)ret, "Polymorph"),
                            Spell.Buff("Polymorph", ret => (WoWUnit)ret))));
        }

        private static bool IsViableForPolymorph(WoWUnit unit)
        {
            if (unit.IsCrowdControlled())
                return false;

            if (unit.CreatureType != WoWCreatureType.Beast && unit.CreatureType != WoWCreatureType.Humanoid)
                return false;

            if (StyxWoW.Me.CurrentTarget != null && StyxWoW.Me.CurrentTarget == unit)
                return false;

            if (!unit.Combat)
                return false;

            if (!unit.IsTargetingMeOrPet && !unit.IsTargetingMyPartyMember)
                return false;

            if (StyxWoW.Me.IsInParty && StyxWoW.Me.PartyMembers.Any(p => p.CurrentTarget != null && p.CurrentTarget == unit))
                return false;

            return true;
        }
    }
}

Now open any other .cs file in the mage folder and search for the line:

Code:
                Common.CreateMagePolymorphOnAddBehavior(),

Just delete it from any .cs and you wont have your toon polymorphing stuff anymore.
I dont know if its allowed, but i could upload my modified files if you dont know where and how to do this..
 
Back
Top