CallAdmin: ready to go

added feature where message to discord is blocked if active admins are in-game
This commit is contained in:
Dogan
2019-10-17 00:01:09 +02:00
parent 77968e36c1
commit ff4daeab8c
14 changed files with 82 additions and 27 deletions
@@ -0,0 +1,18 @@
/** 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;
}