Navigation menu

WoW:API GetNetStats: Difference between revisions

Jump to navigation Jump to search
m
Move page script moved page API GetNetStats to WoW:API GetNetStats without leaving a redirect
(more precise)
m (Move page script moved page API GetNetStats to WoW:API GetNetStats without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
Retrieve info about net statistics.
Retrieve info about net statistics.


down, up, lag = GetNetStats();
down, up, lagHome, lagWorld = GetNetStats();


----
----
;''Returns''
;''Returns''


:;down : Current incomming bandwidth (download) usage, measured in KB/s.
:;down : Current incoming bandwidth (download) usage, measured in KB/s.


:;up : Current outgoing bandwidth (upload) usage, measured in KB/s.
:;up : Current outgoing bandwidth (upload) usage, measured in KB/s.


:;lag : Floating Point Number - Average roundtrip latency to the server (only updated every 30 seconds).
:;lagHome : Floating Point Number - Average direct latency of the connection from your computer to the Blizzard server in milliseconds (updates every 30 seconds).
 
:;lagWorld : Floating Point Number - Average in-game latency of the connection from your computer to the Game World including TCP overhead (updates every 30 seconds).
----
----
;''Example''
;''Example''
  local down, up, lag = GetNetStats();<br>
  local down, up, lagHome, lagWorld = GetNetStats();<br>
  message("Lag: "..lag.." milliseconds.");  
  message("Connection Lag: "..lagHome.." milliseconds, World Lag: "..lagWorld );  


;''Result''
;''Result''
Line 26: Line 28:


: Retrieve information about your current net statistics.
: Retrieve information about your current net statistics.
: Note that WoW 4.0.6 has added a return value so that two distinct latency values are now returned...
Anonymous user