public IRC_ConnectDelay(tempid)
{
switch (tempid)
{
case 1:
{
// Connect the first bot
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
}
case 2:
{
new string[128];
// Connect the second bot
gBotID[1] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_2_NICKNAME, BOT_2_REALNAME, BOT_2_USERNAME);
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5#####################################");
format(string,sizeof(string),"5%s (%s)",sabbv,svname);
IRC_GroupSay(gGroupID, IRC_CHANNEL,string);
format(string,sizeof(string),"5Version %s",sversion);
IRC_GroupSay(gGroupID, IRC_CHANNEL,string);
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5The sexual Gamemode.");
IRC_GroupSay(gGroupID, IRC_CHANNEL,"5#####################################");
}
case 3:
{
// Connect the admin bot
gBotID[2] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_3_NICKNAME, BOT_3_REALNAME, BOT_3_USERNAME);
}
}
return 1;
}
Are the bots able to successfully connect? If not then remove the IRC_GroupSay text.
|
[21:20:51] *** IRC_OnDisconnect: Bot ID 3 attempting to reconnect... [21:21:30] *** IRC_OnDisconnect: Bot ID 1 disconnected! [21:21:30] *** IRC_OnDisconnect: Bot ID 1 attempting to reconnect... [21:21:38] *** IRC_OnDisconnect: Bot ID 2 disconnected! [21:21:38] *** IRC_OnDisconnect: Bot ID 2 attempting to reconnect... [21:21:51] *** IRC_OnDisconnect: Bot ID 3 disconnected! [21:21:51] *** IRC_OnDisconnect: Bot ID 3 attempting to reconnect...