WoW:API SelectGossipActiveQuest: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(+ args description)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
 
Selects an active quest from a gossip list.   
Selects an active quest from a gossip list.  When the details of the quest are available, [[Events_Q-R_(Quest,_Raid,_Replace,_Resurrect)#QUEST_PROGRESS|QUEST_PROGRESS]] is fired.
 
  SelectGossipActiveQuest(index)
  SelectGossipActiveQuest(index)


==Parameters==
==Arguments==
===Arguments===
;index : Number - Index of the active quest to select, from 1 to {{api|GetNumGossipActiveQuests}}(); order corresponds to the order of return values from {{api|GetGossipActiveQuests}}().
 
:;index : Number - Specifies the quest corresponding to the numbers of [[API_GetGossipActiveQuests|GetGossipActiveQuests()]], indexed starting at 1.
 
=== Returns ===
Nothing.


==Example==
== Triggers events ==
SelectGossipActiveQuest(1)__NOTOC__
* {{api|t=e|QUEST_PROGRESS}} is fired when the details of the quest are available.

Revision as of 23:14, 4 April 2010

WoW API < SelectGossipActiveQuest

Selects an active quest from a gossip list.

SelectGossipActiveQuest(index)

Arguments

index
Number - Index of the active quest to select, from 1 to GetNumGossipActiveQuests(); order corresponds to the order of return values from GetGossipActiveQuests().

Triggers events