WoW API: GetRealZoneText

Revision as of 11:29, 25 June 2006 by WoWWiki>Mikk ({{wowapi}})

WoW API < GetRealZoneText

ZoneName = GetRealZoneText();

When in an instance, returns the real name of the instance, not the name in the Minimap. (e.g. returns "The Stockade" whereas GetZoneText() returns "Stormwind Stockade"). Otherwise is identical to GetZoneText

Parameters

Arguments

none

Returns

ZoneName
String - The real name of an instance or the zone name

Example

 ZoneName = GetRealZoneText();
 message("Zone:"..ZoneName);
An error popup appears that could show the following text: "Zone: The Stockade"