WoW:API IsTalentTrainer: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(New page: {{wowapi}} __NOTOC__ <!-- Describe the purpose of the function, exhausting detail can be saved for a later section --> Returns 1 if target is a trainer for talents. == Arguments == <!-- ...)
 
m (Move page script moved page API IsTalentTrainer to API IsTalentTrainer without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{wowapi}} __NOTOC__
{{wowapi}} __NOTOC__
 
{{removedapi|&le; 3.1.3}}
<!-- Describe the purpose of the function, exhausting detail can be saved for a later section -->
<!-- Describe the purpose of the function, exhausting detail can be saved for a later section -->
Indicates whether target can train talents.
Indicates whether target can train talents.
Line 16: Line 16:


== Example ==
== Example ==
  -- Added by [[User:FormlessOne|FormlessOne]]
   if (IsTalentTrainer()) then  
   if (IsTalentTrainer()) then  
       DEFAULT_CHAT_FRAME:AddMessage("Target is a talent trainer.")
       DEFAULT_CHAT_FRAME:AddMessage("Target is a talent trainer.")

Latest revision as of 04:46, 15 August 2023

WoW API < IsTalentTrainer

Indicates whether target can train talents.

exists = IsTalentTrainer()

Parameters[edit]

Arguments[edit]

none

Returns[edit]

exists
Bool - 1 if the target can train talents, or nil otherwise.

Remarks[edit]

Unlike the IsTradeskillTrainer() function, this function appears bugged in that calling this function on any target returns 1 regardless of whether the target can train class talents.

Example[edit]

  if (IsTalentTrainer()) then 
     DEFAULT_CHAT_FRAME:AddMessage("Target is a talent trainer.")
  else 
     DEFAULT_CHAT_FRAME:AddMessage("Target is not a talent trainer.")
  end

Result[edit]

A message indicating that the target is a talent trainer (because the function always returns 1) is displayed in the default chat frame.