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

Wizard botting cuztomization help

Alexen

New Member
Joined
Nov 3, 2012
Messages
29
Reaction score
0
Hey.

Im botting as a archon wizard and im curious if I can somehow configurate my bot to use only "beam" while in archon, because it tends to walk into melee range and use melee attacks which in some occasions means death against certain packs with fire chains / molten / freeze etc.

Somehow I doubt my request is possible, but if it is I would be very grateful for any input :)
 
Open gilestrinity.cs.

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

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

Enjoy.
 
Back
Top