Quote:
Originally Posted by Doglet
I just got FlashChat running with vBulletin 3.6.1 last night, but I am unsure how to prevent certain user groups from using it.
|
I am not sure if this is what you're asking, but:
PHP Code:
// Usergroup Definitions
$users = '#,#,#' ;
$moderators = '#,#' ;
$administrators = '#' ;
$banned = '#,#,#,#' ;
// Live support mode only
$customers = '0' ;
(I stuck # signs in there to show you where the numbers go)
It's up near the top. In older versions of the mod it was at the bottom and so it says in the readme file:
Quote:
If necessary, edit the vbulletin section at the bottom of the this file to change the usergroup access & options as required.
|
It still said that in the readme of the latest version which I dl'ed recently so I guess that needs to be changed. I was *very* confused until I found the code I was looking for, moved to the top.