WoW:API IsTradeskillTrainer: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(upgraded deprecated template)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
Determine whether currently open trainer window is a TradeSkill Trainer.
Determine whether last opened trainer window offered trade skill (profession) abilities.


 
isTradeskillTrainer = IsTradeskillTrainer();
== Arguments ==
:none


== Returns ==
== Returns ==
:1 or True if the open trainer is a Tradeskill Trainer.
:1 or True if the last open trainer skill list was for a trade skill (as opposed to class skills).


== Example ==
== Example ==
  if (IsTradeskillTrainer()) then
if (IsTradeskillTrainer()) then
    message('This is a tradeskill trainer');
  message('This is a tradeskill trainer');
  end
end
 
--[[User:Dragonflyy|Dragonflyy]]

Revision as of 02:16, 8 February 2009

WoW API < IsTradeskillTrainer

Determine whether last opened trainer window offered trade skill (profession) abilities.

isTradeskillTrainer = IsTradeskillTrainer();

Returns

1 or True if the last open trainer skill list was for a trade skill (as opposed to class skills).

Example

if (IsTradeskillTrainer()) then
 message('This is a tradeskill trainer');		
end