I've edited the code so that it the "my reports" only displays for the registered members and not staff, to fix update the following plugin;
Edit Plugin vFcoders - Advanced Report System (PTC) (vB < 4.2)
Code:
if ("!is_member_of($bbuserinfo, x,x,x)" AND $vbulletin->versionnumber < '4.2.0')
{
$template_hook['navbar_end'] .= "<li><a href=\"misc.php?do=myreports\">" . $vbphrase['vfc_ars_myreports'] . "</a></li>";
}
Replace the x with the usergroups you want it displayed to or alternatively you can select which usergroups you dont want it displayed to.
Code:
if ("is_member_of($bbuserinfo, x,x,x)" AND $vbulletin->versionnumber < '4.2.0')
{
$template_hook['navbar_end'] .= "<li><a href=\"misc.php?do=myreports\">" . $vbphrase['vfc_ars_myreports'] . "</a></li>";
}