Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
mNo edit summary
No edit summary
Line 39: Line 39:
   
 
----
 
----
{{Template:WoW API}}
+
{{WoW API}}
[[Category:API Functions|GetNetStats]]
 
[[Category:API Core Functions|GetNetStats]]
 

Revision as of 05:00, 4 January 2006

GetNetStats -Documentation by Myrrion (thanks Jooky)-

Retrieve info about net statistics.

down, up, lag = GetNetStats();


Arguments
none

Returns
(- down)
down
-
(- up)
up
-
(Number lag)
lag
The lag (in milliseconds) of your connection.

Example
local down, up, lag = GetNetStats();
message("Lag: "..lag.." milliseconds.");
Result

Message box appears with amount of lag in milliseconds.


Description
Retrieve information about your current net statistics.

Template:WoW API