After fiddling with it, I figured out a way to limit it to X usergroups:
Code:
<if condition="is_member_of($vbulletin->userinfo, 2)">
Just keep adding group ID's after the first, seperated by commas, like so:
Code:
<if condition="is_member_of($vbulletin->userinfo, 2, 6, 32, 14)">
If you put it around the code for sticking/unsticking a thread, only people in those groups will see that link!
Code:
<if condition="is_member_of($vbulletin->userinfo, 2, 6)">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/mysticky.gif" />
<if condition="in_array($thread['threadid'], $personalstickys)">
<a href="showthread.php?$session[sessionurl]do=unpersonalsticky&t=$threadid">$vbphrase[personal_unsticky]</a>
<else />
<a href="showthread.php?$session[sessionurl]do=personalsticky&t=$threadid">$vbphrase[personal_sticky]</a>
</if>
</td>
</tr>
</if>
</if>
Need to add the first if statement then a </if> at the end.
Keep in mind that if a person you allow to have stickies gets removed from the group, they will still see the stickied threads, they just won't be able to unstick them without using the direct link.
Edit: co-admin brought up a good point, can you still stick from the URL if you knew it, the answer was yes, so I went back to fiddling. The URL's look like this:
showthread.php?do=personalsticky&t=1
showthread.php?do=unpersonalsticky&t=1
And can be called even if you hide the link.
Edit the following plugin:
Stick/unstick check
Find:
Code:
if ($_REQUEST['do'] == 'personalsticky' )
replace with:
Code:
if ($_REQUEST['do'] == 'personalsticky' AND is_member_of($vbulletin->userinfo, 2))
Making sure to edit your usergroups.
If you aren't in the defined groups, and try to manually stick a thread, it just takes you to the thread and nothing happens. I'd love it to go to an error message but I have no idea how.