alright here is a quick and dirty way to do a new clan
PHP Code:
if ($_REQUEST['do'] == 'createclan')
{
if ($bbuserinfo['clan'] > 0)
{
$clanerrortxt = "You are already in a Clan. Leave the clan you are in before trying to create a new clan.";
eval(standard_error($clanerrortxt));
die;
}
is whats there right now and i said this was dirty maybe raven wants to make this an option in the admincp but here you go. this was my 3 minute fix you can change the post # to anything you want so only people with over X posts can make clans
PHP Code:
if ($_REQUEST['do'] == 'createclan')
{
if (($bbuserinfo['clan'] > 0) || ($bbuserinfo['posts'] < 10))
{
$clanerrortxt = "You are already in a Clan. Leave the clan you are in before trying to create a new clan.<br/> or you dont have the minimum of 10 posts to start a clan";
eval(standard_error($clanerrortxt));
die;
}
another more thoughtout way is
PHP Code:
f ($_REQUEST['do'] == 'createclan')
{
if ($bbuserinfo['clan'] > 0)
{
$clanerrortxt = "You are already in a Clan. Leave the clan you are in before trying to create a new clan.";
eval(standard_error($clanerrortxt));
die;
}
else if ($bbuserinfo['posts'] < 10)
{
$clanerrortxt = "You dont have the minimum of 10 posts to start a clan";
eval(standard_error($clanerrortxt));
die;
}
for those who want custom messages