The $templatesused list at the top contains all the templates that could be used by vBindex, this removes 1 query for each template, so any you add I strongly recomend that you place them in this list.
For the $mode if clause, make sure this goes after the require global.php line otherwise it will not work.
For the custom templates I assume these are based on $mode? If so then I would rename them in the eval lines to variables, for example:
PHP Code:
eval("\$threadbits .= \"".gettemplate('home_threadbit')."\";");
to:
PHP Code:
eval("\$threadbits .= \"".gettemplate($home_threads)."\";");
and set $home_threads equal to the template you wish to use in the $mode if statement, this seems the easiest way to me.
I may consider making some of these changes standard in v3 as it seems like many people would find it usefull