Quote:
Originally Posted by Roody
Let me ask something. Is there a way to implement some kind of system that a member would have to make 3-5 posts when they sign onto the boards before they could play arcade games?
|
If you want a crude way to do it...
Find:
PHP Code:
// Checks to see if GET variables are valid
And above this, add:
PHP Code:
if ($bbuserinfo['posts']<10){
print_no_permission();
}
Where in this example, 10 is the number of required posts to be able to play in the Arcade. People with post counts lower than that will be shown a "no permission" page.