i hope so as the $bbuerinfo[maxpost] variable seems to be set at -1 for most of my users, although i suppose that i could user
PHP Code:
if ($bbuserinfo[maxpost] < 15)
{
$bbuserinfo[maxpost] = $vboptions[maxpost];
}
if ($thread[replycount] > $bbuserinfo[maxpost])
{
$postsonthispage = $thread[replycount] - $perpage / $pages;
}
else
{
$postsonthispage = $thread[replycount];
}
i think that should give you the data

feel free to correct me.