Restriction is very easy to do by modifying the template "modifyprofile":
Change from
Code:
<option value="255" <if condition="$bbuserinfo[pettype] == 255">selected</if>>Adminpet</option>
... to ...
Code:
<if condition="$bbuserinfo['usergroupid'] == 6"><option value="255" <if condition="$bbuserinfo[pettype] == 255">selected</if>>Adminpet</option></if>
In that case only the admins have access to that pet... You can also use Logical OR for adding other Groups...
?TomokiG?