The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Private message only to admin
Hi,
How can I let users Private message only to admin , and not to each other. This way I can control message spamming but at the same time want users to communicate with admin via; PM. Thanks Binu |
#2
|
|||
|
|||
i'd like to know this too.
|
#3
|
|||
|
|||
me too
|
#4
|
||||
|
||||
is there a mod for 3.7 that would do this?
thanks |
#5
|
|||
|
|||
This is important !!!
Anyone? |
#6
|
|||
|
|||
I haven't tested this a lot, but you could try this: create a plugin using hook location private_insertpm_process and this code:
Code:
if (!is_member_of($vbulletin->userinfo, 6)) { $check_recipients = $pmdm->info['recipients']; if (!empty($check_recipients)) { foreach ($check_recipients AS $userid => $user) { if (!is_member_of($user, 6)) { eval(standard_error("Private messages allowed only to Admins")); } } } } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|