sure, but this quick fix will need to be hardcoded
first, find this in dorms.php
PHP Code:
if ($bbuserinfo['posts'] < $options['pcreatedorm'])
{
$reason = construct_phrase($vbphrase['dorms_err_create'], $options['pcreatedorm'], $options['dormname']);
$cantmakedorm = true;
}
for reputation, first decide the target rep, ill call it X, then add this underneath that
PHP Code:
if ($bbuserinfo['reputation'] < X)
{
$reason = 'You need a higher reputation to create a dorm';
$cantmakedorm = true;
}
And likewise for days registered, target days is called X, add underneath again
PHP Code:
if (floor($bbuserinfo['joindate'] / (3600 * 24)) < X)
{
$reason = 'You have not been registered long enough to create a dorm';
$cantmakedorm = true;
}
to remove different requirements, just remove the respective 'if' block.
also, you can likewise impose the same restrictions on joining a dorm by doing the same, except changing $cantmakedorm = true; , to $cantjoindorm = true; , and changing the respective descriptions to match.