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;
|
||
|
}
|