X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fcmd_neonserv_downall.c;fp=src%2Fcmd_neonserv_downall.c;h=0000000000000000000000000000000000000000;hb=706e48b1e666054030c491d864f740071e390038;hp=a7add4772d67c13537d659262d49e825306f24a4;hpb=b53d0c5f88063f075a48a0426f9d5d6b3490b9fc;p=NeonServV5.git diff --git a/src/cmd_neonserv_downall.c b/src/cmd_neonserv_downall.c deleted file mode 100644 index a7add47..0000000 --- a/src/cmd_neonserv_downall.c +++ /dev/null @@ -1,50 +0,0 @@ -/* cmd_neonserv_downall.c - NeonServ v5.3 - * Copyright (C) 2011-2012 Philipp Kreil (pk910) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#include "cmd_neonserv.h" - -/* -* no arguments -*/ - -CMD_BIND(neonserv_cmd_downall) { - struct ChanUser *chanuser; - int botid = client->botid; - for(chanuser = getUserChannels(user, NULL); chanuser; chanuser = getUserChannels(user, chanuser)) { - chan = chanuser->chan; - loadChannelSettings(chan); - if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) continue; - printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chan->channel_id, client->botid); - if (mysql_fetch_row(mysql_use()) == NULL) continue; - int done = 0; - client = getChannelBot(chan, botid); - if(!client) continue; - if((chanuser->flags & CHANUSERFLAG_OPPED)) { - putsock(client, "MODE %s -o %s", chan->name, user->nick); - done = 1; - } - if((chanuser->flags & CHANUSERFLAG_VOICED)) { - putsock(client, "MODE %s -v %s", chan->name, user->nick); - done = 1; - } - if(done) { - //event hack - event->chan = chan; - logEvent(event); - } - } -}