View Full Version : v3Arcade mod
contramontanum
04-29-2004, 12:38 PM
I'm looking for a (simple?) mod that restricts access to the Arcade based on number of posts in the last x days. I know Arcade access can be regulated with promotions, but when the member is promoted unlimited access is granted, and I'm looking for an incentive to continous posting. I'm also aware of the Arcade Pass hack in combination with a points system, but frankly that seems like overkill for what I want to achieve. I was hoping for something simple like a template mod.
Giveit2u43
04-29-2004, 02:54 PM
I did this the cheap and nasty way... in arcade.php find the first instance of:
$DB_site->free_result($result_gamesettings);
BELOW it add:
$jointime = (TIMENOW - $bbuserinfo['joindate']) / 86400; // Days Joined
$postsperday = $bbuserinfo['posts'] / $jointime;
if ($postsperday <= 3) {
print_no_permission();
}
Change 3 in that to whatever value you wish.. then as long as the member has a postsperday average that is above that number they can view the arcade, if not they get a no permission screen.
Boofo
04-29-2004, 03:12 PM
I did this the cheap and nasty way... in arcade.php find the first instance of:
$DB_site->free_result($result_gamesettings);
BELOW it add:
$jointime = (TIMENOW - $bbuserinfo['joindate']) / 86400; // Days Joined
$postsperday = vb_number_format($bbuserinfo['posts'] / $jointime, 2);
if ($postsperday <= 3) {
print_no_permission();
}
Change 3 in that to whatever value you wish.. then as long as the member has a postsperday average that is above that number they can view the arcade, if not they get a no permission screen.
You don't want to use the number format in that. You don't really need to. ;)
dstruct2k
04-29-2004, 03:15 PM
Number format is BAAAD if you're not done with the numbers, especially when you're never displaying the output.
Change that line to: $postsperday = $bbuserinfo['posts'] / $jointime;
Giveit2u43
04-29-2004, 03:36 PM
ahhh yes, should have remembered to change that, I`m doing more with this on my own site.. but don`t want to give away all my secrets ;)
Boofo
04-29-2004, 04:10 PM
ahhh yes, should have remembered to change that, I`m doing more with this on my own site.. but don`t want to give away all my secrets ;)
So I take it I'm not gonna get the secrets either? :(
Giveit2u43
04-29-2004, 04:31 PM
So I take it I'm not gonna get the secrets either? :(
awww. I`ll always make an exception for you buddy ;)
Perhaps you can just answer one question? Hopefully it's not one of your secrets, but how would I make it so the error message is a custom message that I can set? I don't know how to make error messages in VB3 yet.. Thanks! :)
~006
Giveit2u43
05-06-2004, 04:53 PM
Sadly 006.. nor do I :(
Hopefully one of the vb3 expert hackers might be able to answer this question.
Good news Giveit2u43, I found this a few days ago. Found it very helpful with making custom error messages: https://vborg.vbsupport.ru/showthread.php?t=64479
:)
Cold Steel
05-27-2004, 08:28 PM
I've made a custom error message, but how do I edit arcade.php to call that error message?
Cold Steel
05-28-2004, 12:26 AM
Also, the members who do not have enough posts can still play games by going to the direct URL. They just click on the game in postbit.
Zachery
05-28-2004, 01:58 AM
Also, the members who do not have enough posts can still play games by going to the direct URL. They just click on the game in postbit.
Your best off setting up usergroup promotions and restricting access to the registered usergroup.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.