Okay, if you're like me your running TomBot & you've figured out that he/she doesn't like the color, font, size tags... especially if you're teaching to it.
In both newreply.php & newthread.php, find this section:
PHP Code:
// ##################### BEGIN FONT COLOR SIZE HACK ##################
if ($bbuserinfo[default_fcs]="0") {
$message = "[color=".$bbuserinfo[post_color]."][font=".$bbuserinfo[post_font]."][size=".$bbuserinfo[post_size]."]".$message."[/size][/font][/color]";
}
// ##################### END FONT COLOR SIZE HACK ####################
Replace it with:
PHP Code:
// ##################### BEGIN FONT COLOR SIZE HACK ##################
if ($foruminfo['forumid']!=="FORUM#" || $bbuserinfo[default_fcs]="0") {
$message = "[color=".$bbuserinfo[post_color]."][font=".$bbuserinfo[post_font]."][size=".$bbuserinfo[post_size]."]".$message."[/size][/font][/color]";
}
// ##################### END FONT COLOR SIZE HACK ####################
Where FORUM# is the forum where your TomBot is running. If you have multiples, and a ||. To figure out what forum you TomBot is running in, check the tomstalkerbot.php for the $ttb_forumid variable.
NOTE: If it doesn't look like this in your files, you need to go back to post #1 and reinstall the hack.