upgraded a spell to rk2 now it wont use the downflag can someone peek

Dealings

Well-known member
Joined
Jul 14, 2006
Messages
3,148
Reaction score
113
Points
63
all I did was add Rk. II i thought and now it doesnt want to fire the downflag any idea what i did wrong?

Code:
/if (${Spell[Livio's Covenant Rk. II].Stacks} && !${Me.Buff[Livio's Covenant Rk. II].ID}) /casting  "Livio's Covenant Rk. II" gem12

i can mem it and cast it myself np
 
is your downflagX=1?
 
yea its number 8 and it is set to=1 (the only change i maded was adding the Rk. II, I made sure to paste the spell also from alla in case there was some goofy space or something but not sure why the downflag died
 
looks like you have a double space after /casting
 
The best way to troubleshoot this type of issue is to echo the if statement when you think it should cast, but isn't.

/echo (${Spell[Livio's Covenant Rk. II].Stacks} && !${Me.Buff[Livio's Covenant Rk. II].ID})

If they both evaluate to TRUE, then the problem is with the /casting statement. If either of them are FALSE or NULL, then the problem is with the if statement.