EnableStats 

Usage:
/EnableStats true/false

Description:
       This sets stat keeping on the current server. This command has no effect is the server MinStatPlayers is not met. You may set it to be on by specifying any non-zero argument, or 'true'.

Example:


/EnableStats example

# With 1 minute left in the match, turn off stats, wait 1 second, kill everyone, wait
# another second, and turn stats back on

on timeleft {
 equal 1;
 cmd {
  /EnableStats 0;
  sleep (1) foreach (state>3) /ccmd $(pz) kill;
  sleep (2) /EnableStats 1;
  };
};