pally code.

unknownerrors

New member
Joined
May 16, 2007
Messages
202
Reaction score
5
Points
0
Location
Las Veags NV, USA
Website
unknownerrors.net
having a problem with this code here, the aa ability fires fine but the spell stun never casts. even tho the spell is loaded and ready.

Code:
/declare   Spellstuna       outer    "Sacred Force Rk.II"

Sub Stun

/echo the stuna starts.
/if (${Divinestun}&&${Me.AltAbilityReady[divine stun]}) {
/call Cast "Divine Stun" alt 2s
}
/if (${Me.SpellReady[${Spellstuna}]}) {
/call cast ${Spellstuna} gem1 2s
}

/delay 2s
/return

any ideas?
 
/declare Spellstuna string outer "Sacred Force Rk.II"

edit: also , do u have spellroutines.inc in your mac?
 
Do not use " " in the declare line. They need to be used on your /call lines.

Code:
/declare   Spellstuna       outer    Sacred Force Rk.II

/call cast "${Spellstuna}" gem1 2s