Anyone know how to force an overflow error on a player? If I run Samson's pfile cleanup snippet, it cleans up about 600 players (thus 600 lines of logs) and causes an overflow on the Imms. So I tried this to force an overflow:
But it doesn't cause an overflow at all. Anyone have any idea what to do?
for ( i=0; i < 700; i++ )
{
snprintf( log_buf, MAX_STRING_LENGTH, "Player Test was deleted. Exceeded time limit of 2 days." );
log_string( log_buf );
}But it doesn't cause an overflow at all. Anyone have any idea what to do?