yes in the plugin vBPunch : Template conditional checks change this line:
PHP Code:
else if (can_administer())
To:
PHP Code:
else if (in_array($vbulletin->userinfo[usergroupid], array(5,6,7,9)))
just add the usergroups you want to the array.
Also edit vbpunch.php on line 25:
PHP Code:
if (!can_administer())
With this:
PHP Code:
if (!in_array($vbulletin->userinfo[usergroupid], array(5,6,7,9)))