Aura

budlight

Member
Joined
Oct 5, 2007
Messages
81
Reaction score
1
Points
8
With the current aura problems for many macro's how would the following be changed so I can cut and paste.. I am not real literate with coding but I know how to find the line in macro when it tells me.

/doevents
/if (${Me.Aura[1].Equal[${auraSong}]} || ${Me.Aura[2].Equal[${auraSong}]} || ${Me.Aura[1].Equal[${auraText}]} || ${Me.Aura[2].Equal[${auraText}]}) {
| Work around for MQ2 aura bug
} else {
/if (${auraSong.NotEqual[NULL]} && ${auraGem} && (${castWhileInvis} || !${Me.Invis})) /call CastSong "${auraSong}" ${auraGem}
}


The macro does read of an .ini with aura names.

Thanks
 
Last edited:
Changed mac to:

/if (${Me.Aura[1].Equal[${auraSong}]ID.} || ${Me.Aura[2].Equal[${auraSong}]ID.} || ${Me.Aura[1].Equal[${auraText}]ID.} || ${Me.Aura[2].Equal[${auraText}]ID.}) {
| Work around for MQ2 aura bug
} else {
/if (${auraSong.NotEqual[NULL]} && ${auraGem} && (${castWhileInvis} || !${Me.Invis})) /call CastSong "${auraSong}" ${auraGem}
}

Just wants to cast over and over.
 
That for me? What you pasted is in no way what I said...


For that 1st line, try:

Code:
/if (${Me.Aura[${auraSong}].ID} ||  ${Me.Aura[${auraText}].ID}) {

htw
 
Last edited: