25 lines
653 B
SourcePawn
Executable File
25 lines
653 B
SourcePawn
Executable File
#if defined _unloze_playtime_included_
|
|
#endinput
|
|
#endif
|
|
#define _unloze_playtime_included_
|
|
|
|
/**
|
|
* @returns the average playtime of all connected players excluding autism bots, fakeclients, AFKS and nosteamers
|
|
*/
|
|
native int GetAveragePlayerTimeOnServer();
|
|
|
|
/**
|
|
* @returns the average playtime of all connected players for rtv, excluding autism bots and fakeclients.
|
|
*/
|
|
native int GetAveragePlayerTimeOnServerRTV();
|
|
|
|
/**
|
|
* @returns the players worth in connected hours for the rtv
|
|
*/
|
|
native int GetPlayerWorthRTV_(int client);
|
|
|
|
/**
|
|
* @returns the players rtv amount boost
|
|
*/
|
|
native float GetPlayerWorthRTV_boost_(int client);
|