WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
WoWWiki
Advertisement

WoW API < IsMounted

Checks to see if the player is mounted or not.

Arguments[]

None

Returns[]

true if the player is currently mounted, false otherwise

Example Code[]

mounted = IsMounted()

If the player is mounted then the value of mounted will be true. However if the player is not mounted then mounted will have a value of false. To save space, instead of assiging the return value of IsMounted() to mounted, IsMounted() can be inserted into the code like a number.

/script if not IsMounted() then...

In this case if the player is not mounted then the code after then will be excuted.

Details[]

IsMounted() was added in Patch 2.0.1

Advertisement