WoW:API GetPlayerInfoByGUID: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(→‎Details: The information is not encoded in the GUID.)
m (I guess it doesn't bend that way)
Line 1: Line 1:
{{wowapi}} __NOTOC__
{{wowapi}} __NOTOC__
{{Stub/API}}
Returns basic information about another player from their GUID.
locClass, engClass, locRace, engRace, gender = GetPlayerInfoByGUID("guid")


Returns basic information about another player from their GUID
== Arguments ==
;guid : String - The GUID of the player you're querying about.


localizedClass, englishClass, localizedRace, englishRace, sex = GetPlayerInfoByGUID("guid")
== Returns ==
;locClass : String - Class of the character in question (localized)
;engClass : String - Class of the character in question (in English)
;locRace : String - Race of the character in question (localized)
;engRace : String - Race of the character in question (in English)
; gender : String - Gender of the character in question (2: male, 3: female).


== Parameters ==
== Notes ==
=== Arguments ===
* This function was added in [[Patch 3.2]]
:;guid : String - The GUID of the player you're querying about
* The information is not encoded in the GUID itself; as such, no data is available until the client has encountered the queried GUID.
 
=== Returns ===
:;localizedClass : String - Class of the character in question (localized)
:;englishClass : String - Class of the character in question (in English)
:;localizedRace : String - Race of the character in question (localized)
:;englishRace : String - Race of the character in question (in English)
:;sex : String - Gender of the character in question
 
== Example ==
 
== Details ==
This function was added in patch 3.2 (August, 2009)
 
The information is not encoded in the GUID itself: The function yields nothing until the game client saw anything from that GUID.
[[Category:World of Warcraft API]]

Revision as of 00:52, 8 November 2009

WoW API < GetPlayerInfoByGUID

Returns basic information about another player from their GUID.

locClass, engClass, locRace, engRace, gender = GetPlayerInfoByGUID("guid")

Arguments

guid
String - The GUID of the player you're querying about.

Returns

locClass
String - Class of the character in question (localized)
engClass
String - Class of the character in question (in English)
locRace
String - Race of the character in question (localized)
engRace
String - Race of the character in question (in English)
gender
String - Gender of the character in question (2: male, 3: female).

Notes

  • This function was added in Patch 3.2
  • The information is not encoded in the GUID itself; as such, no data is available until the client has encountered the queried GUID.