To prevent new members from using the chat I created a new primary usergroup based off of the Registered Users group. I called this group "Senior Members". Senior members is group id#15. To be promoted to group 15 you must have 100 posts. On the vBulletin side the promotion works fine. I then set the CMS file as follows:
'users' => array( 15 ) , // vBulletin usergroups allowed standard access to chat.
'mods' => array( 5,7 ) , // vBulletin usergroups allowed access as chat moderators.
'admin' => array( 6 ) , // vBulletin usergroups allowed access as chat administrators.
'banned' => array( 1,8,3,14,2 ) , // vBulletin usergroups banned from accessing the chat.
'customer' => array( 0 ) , // vBulletin usergroups allowed access as customers (Live support mode only).
Okay since group ID#2 is registered users, they should no longer have access to the chat until they are promoted to Group 15...But they do. Any idea why all of this isn't working right together?
|