WoW:API GetCurrentPosition: Difference between revisions

m
{{wowapi}}
(use removedapi template)
m ({{wowapi}})
Line 1: Line 1:
{{removedapi|1.3.0|It was replaced by [[API_GetPlayerMapPosition|GetPlayerMapPosition]]}}
{{wowapi}}
 
{{removedapi|1.3.0|Replaced by [[API_GetPlayerMapPosition|GetPlayerMapPosition]]}}
<center>'''GetCurrentPosition''' ''-Documentation by [[user:Pilum|Pilum]]-''</center>
 
Returns the postion of a unit relative to the world.
Returns the postion of a unit relative to the world.


Line 17: Line 15:
----
----
;''Example''
;''Example''
  local loc = GetCurrentPosition("player");
  local locX, locY, locZ = GetCurrentPosition("player");
   
  DEFAULT_CHAT_FRAME:AddMessage(locX .. ", " .. locY .. ", " .. locZ);


;''Result''
;''Result''
1773.85, 63.06, -46.32
1773.85, 63.06, -46.32
----
{{WoW API}}