yazankayed Posted May 1, 2013 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 12/19/11 Last Seen: September 11, 2016 Share Posted May 1, 2013 Hello: How to kick all guilds members except masters? because i have reduced max guild members. Thanks. Any help guys ? Quote Link to comment Share on other sites More sharing options...
Brian Posted May 1, 2013 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted May 1, 2013 Run these SQL queries while your server is offline: UPDATE `char` SET guild_id=0 WHERE char_id NOT IN (SELECT char_id FROM guild); DELETE FROM guild_member WHERE char_id NOT IN (SELECT char_id FROM guild); Quote Link to comment Share on other sites More sharing options...
Digos Posted May 1, 2013 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 88 Reputation: 23 Joined: 01/30/12 Last Seen: February 19 Share Posted May 1, 2013 (edited) Use the query below to delete all members (except the leader) from guilds that have more than 70 members (you can change this number in the query). CHANGE THE 70 BELOW TO THE NEW MAX GUILD MEMBER!!! DELETE `guild_member` FROM `guild_member` LEFT JOIN `guild` ON `guild_member`.`char_id` = `guild`.`char_id` WHERE `guild`.`char_id` IS NULL AND `guild_member`.`guild_id` IN ( SELECT `guild_id` FROM ( SELECT COUNT(*) members, `guild_id` FROM `guild_member` GROUP BY `guild_id` HAVING members > 70 ) gids ); And this is to update the characters that are not in a guild.UPDATE `char` SET `guild_id` = 0 WHERE `char_id` NOT IN ( SELECT `char_id` FROM `guild_member` ); Edited May 1, 2013 by Digos Quote Link to comment Share on other sites More sharing options...
yazankayed Posted May 5, 2013 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 12/19/11 Last Seen: September 11, 2016 Author Share Posted May 5, 2013 Thanks Brian Quote Link to comment Share on other sites More sharing options...
Question
yazankayed
Hello:
How to kick all guilds members except masters? because i have reduced max guild members.
Thanks.
Any help guys
?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.