AscendStop

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 2.0.1 / 1.13.2

Called when the player releases the jump key.

AscendStop()

Details

  • This doesn't appear to affect the actual jump at all, but may be hooked to monitor when the jump key is released.
  • Called as the jump key is released, regardless if you are in the middle of the jump or held it down until the jump finished.

Example

Prints "Jump Released" when releasing the jump key.

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

See also