will this work in 2.0?
I will show this on miniBB 1.4 example, which we release within this week (you can download RC):
1) Create some icon for hot topics, name it "topic_veryhot.gif" and place it into /img/ directory
2) Add to setup_options.php:
$veryhotcount=3; // it will define how much topic to define "hot"
3) Open bb_func_vtopic.php file, find this snippet:
if ($cols[6]==1) $tpcIcon='locked';
elseif ($numReplies<=0) $tpcIcon = 'empty';
elseif ($numReplies>=$viewmaxreplys) $tpcIcon = 'hot';
else $tpcIcon = 'default';
change it to this:
if ($cols[6]==1) $tpcIcon='locked';
elseif ($numReplies<=0) $tpcIcon = 'empty';
elseif ($numReplies>=$veryhotcount) $tpcIcon = 'veryhot';
elseif ($numReplies>=$viewmaxreplys) $tpcIcon = 'hot';
else $tpcIcon = 'default';