wiz raiddruid help ..

Phoenix

New member
Joined
Jul 17, 2008
Messages
5
Reaction score
0
Points
0
anyone know how i make my wiz cast big nuke after GoAERM proc ??

here is my nuke stuff on wiz ini :

[NukeStuff]
NukeTotal=3
DoNukes=1
NukeDelay=0
WhichNuke=1

Nuke1=Wildmagic Blast Rk. II
NukeGem1=gem4
NukeSpellSet1=xp
NukeStartHPs1=95
NukeStopHPs1=0
NukeMaxMana1=100
NukeMinMana1=30
GoMNuke1=FALSE

Nuke2=Chaos Combustion Rk. II
NukeGem2=gem7
NukeSpellSet2=xp
NukeStartHPs2=95
NukeStopHPs2=0
NukeMaxMana2=100
NukeMinMana2=30
GoMNuke2=FALSE

Nuke3=Ethereal Combustion Rk. II
NukeGem3=gem5
NukeSpellSet3=xp
NukeStartHPs3=95
NukeStopHPs3=0
NukeMaxMana3=100
NukeMinMana3=30
GoMNuke3=1


=======================================


the GoM nuke seems never work =/
 
read in raiddruid thread that that particular mac does not have support for gift of magic line

consider looking for wiz specific macro there is one that does support gom etc
 
/if (${Me.Song[Gift of Exquisite Radiant Mana].ID} /cast "Big f'ing Nuke"
 
I tweaked Dev's magebot to work for my alt wiz for when i get bored... here is part of my .ini settings I use for him that work just fine:

Fires Mana Weave until I get the nuke focus and then fires Corona Flare

Fires Mana Weave (or Corona Flare depending on prev proc) until I get my GoM and then fires the mana intensive Ether Flame

Value=6
SpellName1=Ether Flame
SpellSlot1=gem3
SpellMaxMobs1=100
SpellMinMobs1=1
SpellMaxMobHPs1=60
SpellMinMobHPs1=20
SpellMinMana1=10
SpellRecastDelay1=6s
SpellCondition1=Me.Song[Gift of Mana].ID
SpellType1=NULL

SpellName2=Corona Flare
SpellSlot2=gem2
SpellMaxMobs2=100
SpellMinMobs2=1
SpellMaxMobHPs2=60
SpellMinMobHPs2=20
SpellMinMana2=20
SpellRecastDelay2=6s
SpellCondition2=Me.Song[Weave of Power].ID

SpellName3=Mana Weave
SpellSlot3=gem1
SpellMaxMobs3=100
SpellMinMobs3=1
SpellMaxMobHPs3=65
SpellMinMobHPs3=35
SpellMinMana3=20
SpellRecastDelay3=6s

Would just want to change - SpellCondition1=Me.Song[Gift of Mana].ID to SpellCondition1=Me.Song[Gift of Exquisite Radiant Mana].ID
 
I went a little bit different route and actually modified el_nene's Autobot to use an .ini entry based on the level of GoM purchased/level of the spell you're casting.

Character .ini in the [NukeStuff] section
Code:
GOMLevel=Gift of Amazing Exquisite Radiant Mana

In the .mac file itself I added a couple lines.

In the NukeIt Sub
Code:
/if (!${RDPause} && (${NukeSpellSet${i}}==${WhichNuke} || !${NukeSpellSet${i}}) && (((${Me.SpellReady[${Nuke${i}}]} || (!${Me.Gem[${Nuke${i}}]} && ${Me.Book[${Nuke${i}}]})) || ${Me.AltAbilityReady[${Nuke${i}}]} || ${NukeGem${i}.Equal[item]})) && ${Target.PctHPs}>${NukeStopHPs${i}} && ${Target.PctHPs}<${NukeStartHPs${i}} && ((${Me.PctMana}<=${NukeMaxMana${i}} && ${Me.PctMana}>=${NukeMinMana${i}}) || (${GoMNuke${i}} && ${Me.Song[${GomLevel}].ID})) && (!${SitTimer} || ${Me.Gem[${Nuke${i}}]} || ${Me.Mount.ID}) && ${Target.ID}==${MATarget} && ${Target.LineOfSight} && ${Target.Distance}<${Int[${Spell[${NukeID[${i}]}].MyRange}]} && ${Target.Type.Equal[NPC]} && ((${GoMNuke${i}} && ${Me.Song[${GOMLevel}].ID}) || !${Me.Song[${GOMLevel}].ID} || !${GoMFlag})) { {
and (to not waste GoM on Concussion)
Code:
/if (${castReturn.Equal[CAST_SUCCESS]} && ${DoConcussion} && !${Me.Song[${GOMLevel}].ID} && ((!${SitTimer} || ${Me.Gem[${ConcussionSpell}]} || ${Me.Mount.ID}) || ${Select[${ConcussionGem},item,alt]})) /call Cast "${ConcussionSpell}" ${ConcussionGem} 5s Check4Pad

In the /call LoadVar section:

Code:
/call LoadVar NukeStuff GOMLevel "Put your Gift of Mana AA Name Here" GOMLevel "${MyIni}" ${Function} string