• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Query command to delete inactive guilds

Nightimarez

New Member
Joined
Jul 24, 2008
Messages
287
Reaction score
2
Can anyone make a xampp query command that deletes guilds of leader's that haven't logged on for like a month?

PHP:
DELETE FROM guilds WHERE ownerid < lastlogin < UNIX_TIMESTAMP() - 30*24*60*60
I tried this, but I failed. I know it has to direct it back to the player's last login, but it complicates it a bit for me.

Or better yet, make it so it delete's the guild if the player doesn't exist anymore.

PHP:
DELETE FROM guilds WHERE ownerid notfound in players
Just an example
 
Last edited:
Back
Top