=============================== Mod by Dan Huling (AKA "Ziroc") http://www.ironworksforum.com =============================== This is a simple mod, and only requires 2 files to edit. ---[OPEN cp2_common.pl and search for:]-------------------- sub MakeComponentHTML_customtitles { # Custom control: custom titles for user level. No options available. my %args = ( value => { 0 => $vars_misc{JrMemberTitle}, 31 => $vars_misc{MemberTitle} }, available_titles => 20, %{$_[0]}, ); ==================================== Change the "20" in "available_titles => 20," to whatever you wish, but this number must be the same in the next file we are going to open. Change the number to what you wish, and save and close it. ==================================== ---[OPEN CP2_VARS.CGI and search for:]---------------------- custom_titles => { # very custom... process_late => 1, # process LAST type => "customtitles", number => 20, # <--- if changing this, also change the value a few lines below... setter_code => sub { my($j, $vars) = @_; my(%finaltitles, %posts, %titles, $promote); foreach my $number (1 .. 20) { # <--- change the 20 here my $thisposts = $in{"custom_title-$number-minposts"}; my $thistitle = $in{"custom_title-$number-title"}; if(($thisposts > -1) && ($thistitle)) { $posts{$number} = $thisposts; $titles{$number} = $thistitle; ==================================== Now, on this line: number => 20, # <--- if changing this, also change the value a few lines below... change the 20 to the number you chose in the previous file. ALSO, a few lines down, you will see this: 20) { # <--- change the 20 here Now change THAT 20 to the same number you used above and in the other file. Close the file, and you're done! ==================================== This is my first Mod post, and this is one small mod I always use when I have to upgrade. Enjoy, and Merry Christmas and Happy Holidays!