Quote:
Originally Posted by DeagLe.Studio
I already gave you a solution:
Code:
#include < amxmodx >
public client_putinserver( Client )
{
if( is_user_hltv( Client ) )
{
static Name[ 32 ];
get_user_name( Client, Name, charsmax( Name ) );
server_cmd( "amx_kick ^"%s^"", Name );
return 1;
}
return 0;
}
|
It will just kick all HLTV's which join to the server.
I need to kick HLTV if where are more 32 players in the server at the moment when new player joins. Not when HLTV joins.