m
Fixed convertion error
No edit summary |
m (Fixed convertion error) |
||
| Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | |||
Stops the current spellcasting. Doesn't work for channeled spells. | |||
StopSpellCasting() | |||
== Parameters == | |||
=== Arguments === | |||
:;none | |||
=== Returns === | |||
:;nil : It didn't do anything (no spell was being cast at the moment). | |||
:;1 : If it did stop a casting. | |||
== Examples == | |||
A recent post from the WoW main boards suggests that you can link two or more spells/abilities to fire from the same macro press (and that this move is legal) as long as none of the abilities (except the last one) triggers the global cooldown. | A recent post from the WoW main boards suggests that you can link two or more spells/abilities to fire from the same macro press (and that this move is legal) as long as none of the abilities (except the last one) triggers the global cooldown. | ||
| Line 8: | Line 20: | ||
This is done with the following simple setup (two spells in one macro). | This is done with the following simple setup (two spells in one macro). | ||
/cast Spell Without Global Cooldown | |||
/script SpellStopCasting() | /script SpellStopCasting() | ||
/cast Spell With Global Cooldown | /cast Spell With Global Cooldown | ||
Or, for more than two spells. | Or, for more than two spells. | ||
/cast Spell Without Global Cooldown | |||
/script SpellStopCasting() | /script SpellStopCasting() | ||
/cast Spell Without Global Cooldown | /cast Spell Without Global Cooldown | ||
/script SpellStopCasting() | /script SpellStopCasting() | ||
... | ... | ||
/cast Spell With Global Cooldown | /cast Spell With Global Cooldown | ||
It's been tested to work with Nature's Swiftness (Shaman/Druid), Divine Favor (Paladin), Inner Focus + Focused Casting (Priest), but should work for any ability that does not have a global cooldown attached. | It's been tested to work with Nature's Swiftness (Shaman/Druid), Divine Favor (Paladin), Inner Focus + Focused Casting (Priest), but should work for any ability that does not have a global cooldown attached. | ||
| Line 27: | Line 39: | ||
This has been tested with a "Inner Focus"/"Prayer of Healing" (Priest) macro, which will activate the inner focus but say "not enough mana" if you don't have enough mana for the healing spell. | This has been tested with a "Inner Focus"/"Prayer of Healing" (Priest) macro, which will activate the inner focus but say "not enough mana" if you don't have enough mana for the healing spell. | ||
==Details== | |||
Can disable autorepeated "spells", like hunter's Auto shot. | |||
[[Category:World of Warcraft API]] | |||