added OPER support (let the bots try to op themselves)
[NeonServV5.git] / src / modules / NeonHelp.mod / bot_NeonHelp.c
index db1321dffac7e491630eda0c7b6db349e096b600..614d0df4a6b346edcae945cf7959bc0248fe9dad 100644 (file)
@@ -73,9 +73,12 @@ static void neonhelp_bot_ready(struct ClientSocket *client) {
     MYSQL_RES *res;
     MYSQL_ROW row;
     
-    printf_mysql_query("SELECT `automodes` FROM `bots` WHERE `id` = '%d'", client->clientid);
+    printf_mysql_query("SELECT `automodes`, `oper_user`, `oper_pass` FROM `bots` WHERE `id` = '%d'", client->clientid);
     res = mysql_use();
     if ((row = mysql_fetch_row(res)) != NULL) {
+        if(row[1] && row[2]) {
+            putsock(client, "OPER %s %s", row[1], row[2]);
+        }
         putsock(client, "MODE %s +%s", client->user->nick, row[0]);
     }