Quote Originally Posted by Tally View Post
This is the method I use:

Code:
isbot( player )
{
 
  if( GetSubStr( player.name, 0, 3 ) == "bot") return true; 
 
  return false;
}
Meatbot sets the .isbot attribute when a bot is added, so, you can just use
Code:
if(player.isbot)