GetTickCount

From SA-MP Wiki

Jump to: navigation, search


Description:

Returns the uptime of the actual server (not the SA-MP server) in milliseconds.


Parameters:
This function has no parameters.


Return Values:

Uptime of the actual server (not the SA-MP server).


Image:32px-Circle-style-warning.png

Important
Note

GetTickCount will cause problems on servers with uptime of over 24 days as GetTickCount will eventually warp past the integer size constraints. However using This function fixes the problem.


Tip

Image:Light_bulb_icon.png

One common use for GetTickCount is for benchmarking. It can be used to calculate how much time some code takes to execute. See below for an example.


public OnPlayerConnect(playerid)
{
    new count = GetTickCount();
    //Rest of OnPlayerConnect
    printf("Time taken to execute OnPlayerConnect: %d", GetTickCount() - count);
    return 1;
}

Related Functions

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

  • tickcount: Get the uptime of the actual server.
Personal tools
Navigation
Toolbox