Open up UBB_LIBRARY2.PL
-----
Search for:
elsif ($ThisStatus eq "Moderator") {
-----
The lines below this are the ones you want to modify.
You can change as well as add as many ranks as you so desire (I modified mine to have 20 levels).
Anyhow, one of the first lines should have:
if ($thisprofile[7] > 21) {
$ThisStatus = "Junior Member"
It might say Newbie for the first line, I cannot recall. Just start adding more lines so your code would eventually look like this:
if ($thisprofile[7] > 21) {
$ThisStatus = "Junior Member
";
}
if ($thisprofile[7] > 41) {
$ThisStatus = "Junior Member 1
";
}
if ($thisprofile[7] > 61) {
$ThisStatus = "Junior Member 2
";
}
if ($thisprofile[7] > 81) {
$ThisStatus = "Junior Member 3
";
}
etc... Just remember to change the number following the > to the # of posts assigned to that rank/level.
p2k