NetStats ConnectionStatus

NetStats_ConnectionStatus

Description:
Function NetStats_ConnectionStatus gets the player's current connection status.
Function NetStats_ConnectionStatus was added in 0.3z and will not work in earlier versions!


Parameters:
(playerid)
int playerid The ID of the player to get the connection status of.


Return Values:
The player's connection status, as an integer value.


Examples:
public OnPlayerCommandText(playerid,cmdtext[])
{    
    if(!strcmp(cmdtext, "/connectionstatus"))
    {
        new szString[144];
        format(szString, sizeof(szString), "Your current connection status: %i.", NetStats_ConnectionStatus(playerid));
        SendClientMessage(playerid, -1, szString);
    }
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.


Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.