Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

Returns the number of mounts.

count = GetNumCompanions(type)

Arguments[]

type
string - Type of companions to count: "CRITTER", or "MOUNT".

Returns[]

count
number - The number of companions of a specific type.

Example[]

The following snippet prints how many mounts the player has collected.

local count = GetNumCompanions("MOUNT");
print('Hello, I have collected a total of ' .. count .. ' mounts.');

Patch changes[]

Mists of Pandaria Patch 5.0.4 (2012-08-28): Companions are now account-wide. This function only returns the correct value for mounts -- the non-combat companion count is based on the companions the character has acquired prior to the patch. Use the C_PetJournal API to query battle pet-related information.
Wrath-Logo-Small Patch 3.0.2 (2008-10-14): Added.

Advertisement