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

how do u make cm wiz spam meteor??

kryg89

New Member
Joined
Jun 26, 2012
Messages
4
Reaction score
0
it only uses it upon encountering more than one enemies
and casting intervals are quite large.
I tried to use the guide to alter spell activation but i am having a hard time.
any pros out there who can lend me a hand? :)
 
Last edited:
Code:
                        // Meteor
                        if (!bOOCBuff && !playerStatus.bIsIncapacitated && hashPowerHotbarAbilities.Contains(SNOPower.Wizard_Meteor) &&
                            (iElitesWithinRange[RANGE_25] > 0 || iAnythingWithinRange[RANGE_25] > 1 || targetCurrent.bThisEliteRareUnique || targetCurrent.bThisBoss || targetCurrent.bThisTreasureGoblin) &&
                            playerStatus.dCurrentEnergy >= 50 && PowerManager.CanCast(SNOPower.Wizard_Meteor))
                        {
                            return new GilesPower(SNOPower.Wizard_Meteor, 21f, new Vector3(targetCurrent.vThisPosition.X, targetCurrent.vThisPosition.Y, targetCurrent.vThisPosition.Z), iCurrentWorldID, -1, 0, 0, USE_SLOWLY);
                        }
 
Back
Top