Working on a new C&C with ACO and maybe bees. Issue is where to leave the pheromone? On the IRC room? Also would like to start using XMPP instead of IRC.
I don't think bees should be allowed into the American Cornhole Organization. Also, leaving pheromones is right out.
Name:
Anonymous2009-05-21 15:33
You are making a massive botnet network with ant colony optimization.
Pheromone is invintation of some kind for bots.
Bees are agents that spread information.
What is C&C?
Name:
Anonymous2009-05-21 15:56
You're making a new Command & Conquer game. Cool, I really liked Red Alert.
>>11
holy fucking buttjesus, that makes perfect sense
Name:
Anonymous2009-05-22 18:47
/*
* cmdsserv.c -- part of server.mod
* handles commands from a user via dcc that cause server interaction
*
* $Id: cmdsserv.c,v 1.24 2008/02/16 21:41:10 guppy Exp $
*/
/*
* Copyright (C) 1997 Robey Pointer
* Copyright (C) 1999 - 2008 Eggheads Development Team
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
static void cmd_servers(struct userrec *u, int idx, char *par)
{
struct server_list *x = serverlist;
int i;
char s[1024];
putlog(LOG_CMDS, "*", "#%s# servers", dcc[idx].nick);
if (!x) {
dprintf(idx, "There are no servers in the server list.\n");
} else {
dprintf(idx, "Server list:\n");
i = 0;
for (; x; x = x->next) {
if ((i == curserv) && realservername)
egg_snprintf(s, sizeof s, " %s:%d (%s) <- I am here", x->name,
x->port ? x->port : default_port, realservername);
else
egg_snprintf(s, sizeof s, " %s:%d %s", x->name,
x->port ? x->port : default_port,
(i == curserv) ? "<- I am here" : "");
dprintf(idx, "%s\n", s);
i++;
}
dprintf(idx, "End of server list.\n");
}
}