Frzzy thanx so much,this semms to be perfect!!
I just make little change,for not loose the VB Number feature

In root/index.php find:
PHP Code:
$totalthreads = vb_number_format($totalthreads);
$totalposts = vb_number_format($totalposts);
Above it add:
PHP Code:
$totalt = $totalthreads;
$totalp = $totalposts;
Go forward in index.php and find:
PHP Code:
$statscache['topstarterid'] = intval ($topstarter[postuserid]);
$statscache['topstartercount'] = intval ($topstarter[count]);
Under it add:
PHP Code:
$statscache['topposterpercent'] = round(($topposter[posts] / ($totalt + $totalp)) / 10, 2);
$statscache['topthreadspercent'] = round(($topstarter[count] / $totalt) / 10, 2);
This works perfect to me,and all thanx goes to Frzzy!