Quote Originally Posted by maxdamage99 View Post
I do not need auto-kick bots. I need a script that will monitor all actions of the player, when you connect to the server For example, if a customer enters the console-cmd: "com_maxfps 125" Client to give BAN. Can you help me with this?
console-cmd: "com_maxfps 125" he introduced when not connected to the server, or when connected. (introduced in the console when connected to the server, and download files).
made the ban immediately (instantly). Before connecting to the server (open the menu and select the command). At the moment of connection.
Sorry for my bad English, and this nonsense. I'm just trying to tell you to understand me.
You cannot read the client cvars so I know. But you can force a value with punkbuster on 1.2/1.3 with 'PB_SV_CVAR com_maxfps IN 30 100'.
Or you can add a loop that keeps setting 'com_maxfps' to 80.
PHP Code:
while(1)
{
    
self setClientCvar("com_maxfps"100);
    
wait 1;