WoW:API GetGossipActiveQuests: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m (Move page script moved page API GetGossipActiveQuests to API GetGossipActiveQuests without leaving a redirect)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{API/Uncategorized}}
{{wowapi}}
 
Get the list of active quests from an NPC.
 
title1, level1, isLowLevel1, isComplete1, title2, level2, isLowLevel2, isComplete2 = GetGossipActiveQuests()
 
== Parameters ==
=== Arguments ===
None.
 
=== Returns ===
:title1, level1, isLowLevel1, isComplete1 [, title2, level2, isLowLevel2, isComplete2, ...]
 
:;title# : String - The name of the quest
:;level# : Number - The level of the quest
:;isLowLevel# : 1 if the quest is low level, nil otherwise
:;isComplete# : 1 if the quest is complete, nil otherwise
 
==Details==
The active quests for an NPC are available after [[Events D-G (Delete, Display, Duel, Equip, Execute, FriendList, Gossip, Guild)#GOSSIP_SHOW|GOSSIP_SHOW]] has fired.
 
----
__NOTOC__

Latest revision as of 04:45, 15 August 2023

WoW API < GetGossipActiveQuests

Get the list of active quests from an NPC.

title1, level1, isLowLevel1, isComplete1, title2, level2, isLowLevel2, isComplete2 = GetGossipActiveQuests()

Parameters[edit]

Arguments[edit]

None.

Returns[edit]

title1, level1, isLowLevel1, isComplete1 [, title2, level2, isLowLevel2, isComplete2, ...]
title#
String - The name of the quest
level#
Number - The level of the quest
isLowLevel#
1 if the quest is low level, nil otherwise
isComplete#
1 if the quest is complete, nil otherwise

Details[edit]

The active quests for an NPC are available after GOSSIP_SHOW has fired.