18.07.2013, 17:03
I have about 5 bots connected to the channel but only 1 communicates..
pawn Код:
public OnGameModeInit()
{
for(new bot = 0; bot < MAX_BOTS; bot++)
{
new nickname[16], realname[16];
format(nickname, sizeof(nickname), "%s", BotNames[bot]);
format(realname, sizeof(realname), "BOT_%i", bot);
irc_Bot[bot] = IRC_Connect(IRC_SERVER, IRC_PORT, nickname, realname, nickname);
}
irc_Group = IRC_CreateGroup();
}
public IRC_OnConnect(botid, ip[], port)
{
IRC_JoinChannel(botid, IRC_CHANNEL);
IRC_AddToGroup(irc_Group, botid);
return 1;
}