UBB.Dev
Posted By: UnDeRwOrLd135 Invite Hack - 07/12/2001 11:07 PM
can anyone make a invite hack
here is how it would go
after a member has posted over 25 post they would be able to invite a new member to the board
this mean there are no guest allowed and no one cannot register it is only invites i think that would be cool
To invite your freinds on board
Something like this
sub Register {

&get_cookie;

if ($SuspendRegister eq "true") {
&StandardHTML("Sorry, we are not accepting new registrations currently.");
exit;
}
if (($cookie{UserName} eq "guest") || ($cookie{UserName} eq "")) {
&StandardHTML("Nice try... but you must be a registered member to invite someone.");
exit;
}


$ProfileNumber = &GetUserNumber($cookie{UserName});
if ($ProfileNumber eq "") {
&StandardHTML("Nice try... but you must be a registered member to invite someone.");
exit;
} else {
@thisprofile = &OpenProfile("$ProfileNumber.cgi");
if ($cookie{Password} ne "$thisprofile[1]") {
&StandardHTML("Nice try... but you must be a registered member to invite someone.");
exit;
} else {
if ($LimitInvite eq "true") {
if ($thisprofile[8] ne "Administrator") {
&StandardHTML("Sorry, this feature is limited to Administrators only at this time.");
exit;
}
}
}
}

if ($thisprofile[7] < 25) {
&StandardHTML("You must have a minimum of 25 posts before you can invite someone!!!.");
exit;
}

[ July 12, 2001 04:11 PM: Message edited by: UnDeRwOrLd135 ]
Posted By: Tech-Ni-Kal Re: Invite Hack - 07/12/2001 11:17 PM
I know someone who recently did this hack for a board. I will see if he is planning on releasing it.
© UBB.Developers