WoW API: AscendStop

Revision as of 18:59, 9 December 2006 by WoWWiki>Shadowed
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < AscendStop

This doesn't appear to affect the actual jump at all and is used as a way for users to get when the jump key was released.

AscendStop();


Parameters

Arguments

None


Returns

Nothing


Details

This is called when the jump key is released, regardless if you are in the middle of the jump or held it down until the jump finished.


Example

Display a message with "Jump Released" in it everytime you release the jump key.

hooksecurefunc( "JumpOrAscendStart", function()
  DEFAULT_CHAT_FRAME:AddMessage( "Jump Released" );
end );