WoW:API CallCompanion: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
(boilerplate) |
||
Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} | ||
Summons the specified companion. New in [[Patch 3.0]] | Summons the specified companion. New in [[Patch 3.0]] | ||
CallCompanion("type", id) | CallCompanion("type", id) | ||
==Arguments== | |||
;type : String - The type of companion to summon or dismiss ("CRITTER", or "MOUNT"). | |||
;id : Integer - The companion index to summon or dismiss (ascending integers starting from 1). | |||
==Example== | ==Example== | ||
The following macro summons the [alphabetically] first critter your character has acquired: | |||
/run CallCompanion("CRITTER",1) | |||
CallCompanion("CRITTER",1) | The following macro summons a random critter your character has acquired: | ||
: | |||
/run CallCompanion("CRITTER", random(GetNumCompanions("CRITTER"))) | /run CallCompanion("CRITTER", random(GetNumCompanions("CRITTER"))) |
Revision as of 13:04, 19 December 2009
← WoW API < CallCompanion
Summons the specified companion. New in Patch 3.0
CallCompanion("type", id)
Arguments
- type
- String - The type of companion to summon or dismiss ("CRITTER", or "MOUNT").
- id
- Integer - The companion index to summon or dismiss (ascending integers starting from 1).
Example
The following macro summons the [alphabetically] first critter your character has acquired:
/run CallCompanion("CRITTER",1)
The following macro summons a random critter your character has acquired:
/run CallCompanion("CRITTER", random(GetNumCompanions("CRITTER")))