Account deletion after 25 days
#2

What are you using to store your files in the first place? If you are using MySQL / SQLite, just add a last logged field and then every day just run a timer that checks if the player has logged in the last 25 days (using the timestamp) on all users and run a query like the following

pawn Code:
new timestamp = gettime() - (60*60*24*25);
new query[100];
format(query, sizeof(query), "DELETE FROM playerinfo WHERE lastlogged < %d", timestamp);
mysql_query(query);
Reply


Messages In This Thread
Account deletion after 25 days - by Luis- - 18.10.2011, 00:04
Re: Account deletion after 25 days - by [HiC]TheKiller - 18.10.2011, 00:22
[No subject] - by Luis- - 18.10.2011, 00:26
Re: Account deletion after 25 days - by lolcake - 18.10.2011, 03:00
Re: Account deletion after 25 days - by Luis- - 18.10.2011, 09:17
Re: Account deletion after 25 days - by [HiC]TheKiller - 18.10.2011, 12:36
Re: Account deletion after 25 days - by Luis- - 18.10.2011, 13:12
Re: Account deletion after 25 days - by Incubator - 18.10.2011, 15:14
Re: Account deletion after 25 days - by Luis- - 18.10.2011, 15:51
Re: Account deletion after 25 days - by [MWR]Blood - 18.10.2011, 15:52

Forum Jump:


Users browsing this thread: 4 Guest(s)