Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / cmd_global_bind.c
index 19e3599a49c66f5fb8628e26395c7be8172da00e..2842cf88661eb83a8433b769443869f3fa840d00 100644 (file)
@@ -1,5 +1,5 @@
-/* cmd_global_bind.c - NeonServ v5.2
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* cmd_global_bind.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
 CMD_BIND(global_cmd_bind) {
     MYSQL_RES *res;
     MYSQL_ROW row;
-    printf_mysql_query("SELECT `function` FROM `bot_binds` WHERE `botclass` = '%d' AND `command` = '%s'", client->botid, escape_string(argv[0]));
+    if(client->botid == 0)
+        printf_mysql_query("SELECT `function` FROM `bot_binds` WHERE `botclass` = '%d' AND `botid` = '%d' AND `command` = '%s'", client->botid, client->clientid, escape_string(argv[0]));
+    else
+        printf_mysql_query("SELECT `function` FROM `bot_binds` WHERE `botclass` = '%d' AND `command` = '%s'", client->botid, escape_string(argv[0]));
     res = mysql_use();
     if ((row = mysql_fetch_row(res)) != NULL) {
         reply(getTextBot(), user, "NS_BIND_ALREADY", argv[0], row[0]);
@@ -42,10 +45,10 @@ CMD_BIND(global_cmd_bind) {
         reply(getTextBot(), user, "NS_BIND_UNKNOWN", argv[1]);
         return;
     }
-    bind_cmd_to_function(client->botid, argv[0], function);
-    printf_mysql_query("INSERT INTO `bot_binds` (`botclass`, `command`, `function`, `parameters`) VALUES ('%d', '%s', '%s', '%s')", client->botid, escape_string(argv[0]), escape_string(argv[1]), params);
+    bind_botwise_cmd_to_function(client->botid, client->clientid, argv[0], function);
+    printf_mysql_query("INSERT INTO `bot_binds` (`botclass`, `botid`, `command`, `function`, `parameters`) VALUES ('%d', '%d', '%s', '%s', '%s')", client->botid, (client->botid == 0 ? client->clientid : 0), escape_string(argv[0]), escape_string(argv[1]), params);
     if(*params)
-        bind_set_parameters(client->botid, argv[0], params);
+        bind_botwise_set_parameters(client->botid, client->clientid, argv[0], params);
     reply(getTextBot(), user, "NS_BIND_DONE", argv[0], function->name);
     logEvent(event);
 }