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

Help disabling Archon's melee...

Benchmark

New Member
Joined
Nov 26, 2012
Messages
37
Reaction score
0
Does anyone know how to disable the bot from using the melee function? I'd rather it just beam all the way. I've died countless times trying to melee elites when there are tons of other mobs still around attacking me...
 
I did a ghetto bandaid fix while I was trying to get my wiz setup

Code:
                        // Arcane Strike (Arcane Strike) Rapid Spam at close-range only
                        if (!bOOCBuff && !playerStatus.bIsIncapacitated && targetCurrent.fRadiusDistance <= 13f && !PowerManager.CanCast(SNOPower.Wizard_Archon_DisintegrationWave) &&
                            (targetCurrent.bThisEliteRareUnique || targetCurrent.bThisBoss))
                        {
                            return new GilesPower(SNOPower.Wizard_Archon_ArcaneStrike, 11f, vNullLocation, -1, targetCurrent.iThisACDGUID, 1, 1, USE_SLOWLY);
                        }

as you can see I just added the !PowerManager.CanCast Disintegrationwave and since you can always cast it, it choses that.
 
I did a ghetto bandaid fix while I was trying to get my wiz setup

Code:
                        // Arcane Strike (Arcane Strike) Rapid Spam at close-range only
                        if (!bOOCBuff && !playerStatus.bIsIncapacitated && targetCurrent.fRadiusDistance <= 13f && !PowerManager.CanCast(SNOPower.Wizard_Archon_DisintegrationWave) &&
                            (targetCurrent.bThisEliteRareUnique || targetCurrent.bThisBoss))
                        {
                            return new GilesPower(SNOPower.Wizard_Archon_ArcaneStrike, 11f, vNullLocation, -1, targetCurrent.iThisACDGUID, 1, 1, USE_SLOWLY);
                        }

as you can see I just added the !PowerManager.CanCast Disintegrationwave and since you can always cast it, it choses that.



So where do I change this? I could use this aswell!
 
I disable melee a differnt way.

No I have trouble keep archon form up. Anyone have any tips?
 
Back
Top