Good idea! Go to cp_users.cgi, then find:
code:
# we have all forums with restrictions now
Add above:
code:
[qb] $forum_names{d} = "Donor";
}
[/qb]
Then when you go to CP, View/Edit Member Profiles, type his login name/member # and check "Donor" (bottom of the page).
Then what you should do in every page is to check:
my ($j, $perms) = split(/&/, $user_profile[4]);
@explicit = split (/,/, $perms);
foreach (@explicit) {
chomp($_);
if ($_ eq 'd') {
# do what you want;
}
}
For example,
PNTF status effect hack changed the look of admins/mods. If you want to do it for regular users, just instead of [8] everywhere add [4], and right after add what I told you to, but instead of $user_profile[4] use $status. In "# do what you want;" part, take the parts of the hack that use
..., and replace with
, etc.
I can't tell you how to do it specifically for this hack, cause the download link doesn't work anymore...
Anyhow, also in public_topic_page.pl, in the avatar thing, you copy the check code from above and use it. (make sure it's not in the HTML part but in the scripting part)
I hope you know what I mean
