This is the query in maintanence.php:
code: Select all
if(howmanytimes(lasttime('tidying'), $perminutes)) {
# Delete dead people
$delusers = mysql_safe_query("SELECT * FROM $playerdb WHERE
(disabled<=1 AND vacation=0 AND
land>0 AND idle<($time-86400*7)) OR
land=0 AND disabled=1 AND
ip!='0.0.0.0' AND idle<($time-86400*3)) OR
(disabled=4);");
idle<($time-86400*7)
To:
idle<($time-86400*21)
Is that all that is needed? I didn't see anywhere else in the program that had to do with deleting of empires.
