Member stars to single Graphic 1.0 Replaces the 1-5 stars displayed underneath you name on a post with a single graphic of your choice for each member group e.g. instead of the admin having 5 big stars you can replace them with one Graphic that says "Admin" and same for other groups... IMPORTANT: You MUST follow the instructions and edit the code with the exact file names (case sensitive. Instuctions: 1. Create and upload up to 7 new images(one for each member group) to yabbimages directory. 2.Use "Yet Another Mod Editor" (if you do not have it you can download it from the downloads section) to modify the "replace" sections of the code to change name of the image to the one you uploaded. help: the first part is for Admins, second for mods, third for god and so on down to one which is newbie... Darkened http://digitalblinx.digitaldoormats.com/Yacgi/yabb/YaBB.cgi Sources/Load.pl if($userprofile{$user}->[7] eq 'Administrator') { $memberstar{$user} = qq~*****~; $memberinfo{$user} = "$membergroups[0]"; } if($userprofile{$user}->[7] eq 'Administrator') { $memberstar{$user} = qq~*~; $memberinfo{$user} = "$membergroups[0]"; } if(exists $moderators{$user} && $sender ne "im") { $modinfo{$user} = "$membergroups[1]
"; $memberstar{$user} = qq~*****~; }
if(exists $moderators{$user} && $sender ne "im") { $modinfo{$user} = "$membergroups[1]
"; $memberstar{$user} = qq~*~; }
if($userprofile{$user}->[6] > $GodPostNum) { $memberinfo{$user} = "$membergroups[6]"; $memberstar{$user} = qq~*****~; } if($userprofile{$user}->[6] > $GodPostNum) { $memberinfo{$user} = "$membergroups[6]"; $memberstar{$user} = qq~*~; } elsif($userprofile{$user}->[6] > $SrPostNum) { $memberinfo{$user} = "$membergroups[5]"; $memberstar{$user} = qq~****~; } elsif($userprofile{$user}->[6] > $SrPostNum) { $memberinfo{$user} = "$membergroups[5]"; $memberstar{$user} = qq~*~; } elsif($userprofile{$user}->[6] > $FullPostNum) { $memberinfo{$user} = "$membergroups[4]"; $memberstar{$user} = qq~***~; } elsif($userprofile{$user}->[6] > $FullPostNum) { $memberinfo{$user} = "$membergroups[4]"; $memberstar{$user} = qq~*~; } elsif($userprofile{$user}->[6] > $JrPostNum) { $memberinfo{$user} = "$membergroups[3]"; $memberstar{$user} = qq~**~; } elsif($userprofile{$user}->[6] > $JrPostNum) { $memberinfo{$user} = "$membergroups[3]"; $memberstar{$user} = qq~*~; } else { $memberinfo{$user} = "$membergroups[2]"; $memberstar{$user} = qq~*~; } else { $memberinfo{$user} = "$membergroups[2]"; $memberstar{$user} = qq~*~; }