Ah, not vb, i see, well lets say your variable for the template was "$mytemplate", you'd replace all instances of "$vbulletin->templatecache['YOUR_TEMPLATE']" with "$mytemplate", and instead of:
PHP Code:
eval('$userpage = "' . fetch_template('YOUR_TEMPLATE') . '";');
You would have:
PHP Code:
eval('$mytemplate = "' . $mytemplate. '";');
Again as for the if statement, it would be much better for you to do it in php itself instead of the template.
- Zero Tolerance