![]() |
This function is deprecated. Only works for "MOUNT". |
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 mini-pets the player has collected.
local count = GetNumCompanions("MOUNT"); print('Hello, I have collected a total of ' .. count .. ' mounts.');
Patch history
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.
Patch 3.0.2 (2008-10-14): Added.