ff4daeab8c
added feature where message to discord is blocked if active admins are in-game
18 lines
246 B
PHP
18 lines
246 B
PHP
/** Include guard */
|
|
#if defined _calladmin_stocks_included
|
|
#endinput
|
|
#endif
|
|
#define _calladmin_stocks_included
|
|
|
|
|
|
|
|
|
|
stock bool IsClientValid(int id)
|
|
{
|
|
if (id > 0 && id <= MaxClients && IsClientInGame(id))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
} |