Quote:
Originally Posted by cstrike37
Is it also possible to add a check if the bot has the model?
|
I can't understand. I think you can use
PHP Code:
cs_get_user_model
for bots.
If it won't work, then try
PHP Code:
static Client, Model[ 32 ];
get_user_info( Client, "model", Model, sizeof Model - 1 );
To check if is a Fake Client, use
PHP Code:
static Client, bool: IsBot;
IsBot = bool: is_user_bot( Client );
__________________