25.05.2017, 08:37
(
Последний раз редактировалось StrikerZ; 25.05.2017 в 09:21.
)
Okay, I'm screwed up. Help me, it isn't connecting any bot to the irc.
EDIT: Updated it with Kiwi now, still the same.
EDIT: Updated it with Kiwi now, still the same.
PHP код:
#define BOT_1_NICKNAME "[0]CoastCityRP"
#define BOT_1_REALNAME "CoastCityRoleplaySAMP" // This is the name that will only be visible in a whois
#define BOT_1_USERNAME "Anonymous" // This will be in front of the hostname (username@hostname)
#define BOT_2_NICKNAME "[1]CoastCityRP"
#define BOT_3_NICKNAME "[2]CoastCityRP"
#define IRC_SERVER "irc.kiwiirc.com"
#define IRC_PORT 6667
#define IRC_CHANNEL "#CoastCityRoleplay"
#define IRC_IDLE "#CoastCityRoleplay"
#define IRC_LIVE "#CoastCityRoleplay"
public OnGameModeInit()
{
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
return 1;
}
public IRC_OnConnect(botid)
{
printf("*** IRC_OnConnect: Bot ID %d connected!", botid);
SetTimerEx("IRC_JoinDelay", 1000, 0, "d", botid);
IRC_JoinChannel(botid, IRC_CHANNEL);
IRC_JoinChannel(botid, IRC_IDLE);
IRC_JoinChannel(botid, IRC_LIVE);
IRC_AddToGroup(gGroupID, botid); // Add the IRC bot to the group
return 1;
}