X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fbots.c;h=3efc27ef813e13641ef29bcb218d128281f271cc;hb=bb5692b9cbff069abbf9573c81e86c3cd2061ceb;hp=e22b768bde400c72a3c0fd090d2ed04bc52bf7b8;hpb=44436a96352a38631237978c9fd431cef3d85cfb;p=NeonServV5.git diff --git a/src/bots.c b/src/bots.c index e22b768..3efc27e 100644 --- a/src/bots.c +++ b/src/bots.c @@ -1,5 +1,5 @@ /* bots.c - NeonServ v5.3 - * Copyright (C) 2011 Philipp Kreil (pk910) + * 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 @@ -56,7 +56,7 @@ static void start_zero_bots() { client->clientid = atoi(row[7]); connect_socket(client); - printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access` FROM `bot_binds` WHERE `botclass` = '0' AND `botid` = '%d'", client->clientid); + printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access`, `flags` FROM `bot_binds` WHERE `botclass` = '0' AND `botid` = '%d'", client->clientid); res2 = mysql_use(); while ((row = mysql_fetch_row(res2)) != NULL) { if(bind_botwise_cmd_to_command(0, client->clientid, row[0], row[1])) { @@ -69,6 +69,8 @@ static void start_zero_bots() { if(row[4]) { bind_botwise_set_channel_access(0, client->clientid, row[0], row[4]); } + if(strcmp(row[5], "0")) + bind_botwise_set_bind_flags(0, client->clientid, row[0], atoi(row[5])); } } bind_botwise_unbound_required_functions(0, client->clientid); @@ -83,10 +85,13 @@ static void zero_bots_trigger_callback(int clientid, struct ChanNode *chan, char strcpy(trigger, "+"); return; } - printf_mysql_query("SELECT `trigger` FROM `bot_channels` LEFT JOIN `bots` ON `botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '0' AND `botid` = '%d'", chan->channel_id, clientid); + printf_mysql_query("SELECT `trigger`, `defaulttrigger` FROM `bot_channels` LEFT JOIN `bots` ON `botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '0' AND `botid` = '%d'", chan->channel_id, clientid); res = mysql_use(); row = mysql_fetch_row(res); - strcpy(trigger, (strlen(row[0]) ? row[0] : "+")); + if(row[0] && *row[0]) + strcpy(trigger, row[0]); + else + strcpy(trigger, ((row[1] && *row[1]) ? row[1] : "+")); } void init_bots() {