Quote:
Originally Posted by MrZeropage
Maybe this helps (untested):
open /arcade/modules/mod_arcade.php
Search for:
Code:
if( $this->user['ppd_require'] )
{
$posts_today_time = mktime(0,0,0,date("m"),date("d"),date("Y"));
replace with
Code:
if( $this->user['ppd_require'] )
{
$posts_today_time = mktime(0,0,0,date("m"),date("d")-1,date("Y"));
|
Thanks MrZeropage,
I have set up a usergroup for myself to check this out, added the above change and have set the permission for that group to 1 post per day and am trying it out now. It looks like it works as I needed to make a post to play any games. Will now wait to see when the time period expires - ie after 48 hours from making the post.
If this works and someone wanted to change the access period to say I post for 72 hours access (3 days) would the above change work if it was changed to -2 instead of -1?
Thanks again!!