is it possible to have 2
if($vbulletin->userinfo['userid']==useridhere)
{
$codestyleid= styleidhere;
}
?
e.g you might want admins / mods to use a no add style, and users etc to use one..
but then you want a different group to use another style.. is this possbiel?
e.g
if($vbulletin->userinfo['userid']==1,2,3,4)
{
$codestyleid= 1;
}
if($vbulletin->userinfo['userid']==4,5,6)
{
$codestyleid= 2;
}
|