Ok, one of you try this out.
Install the hack from the attached zip in the first post.
Then....
Open store.php:
Find:
Code:
$DB_site->query("UPDATE user SET arcadepass='1',storep=storep-$cost WHERE userid='$bbuserinfo[userid]'");
Replace With:
Code:
$DB_site->query("UPDATE user SET arcadepass='".time()."',storep=storep-$cost WHERE userid='$bbuserinfo[userid]'");
Open up proarcade.php.
Find:
Code:
$arcadepass_u=$DB_site->query_first("SELECT * FROM user WHERE userid='$bbuserinfo[userid]'");
Add Under:
Code:
$arcadepass=$arcadepass_u[arcadepass];
$expiretime=$arcadepass+155520000;
Find:
Code:
if ($arcadepass_u[arcadepass]<1) {
eval("standarderror(\"".gettemplate('arcade_nopass')."\");");
Replace With:
Code:
if ($expiretime < ".time().") {
eval("standarderror(\"".gettemplate('arcade_passexpired')."\");");
Make a new template: arcade_passexpired:
Code:
We are sorry, your arcade pass has expired, please buy a <a href="store.php?action=arcadepass">new one.</a>
Tell me if you get any parse errors or DB error in either of the files. Then, buy an arcade pass and see if it lets you in. Finally, (to test out), change
Code:
$expiretime=$arcadepass+155520000;
to
Code:
$expiretime=$arcadepass+1;
and tell me the results of all.




:cheeky:
(of course on the last edit, after seeing if it lest you in, change it back

)