23.06.2018, 14:24
i need help with irc system. I am using J-IRC fs but my bots are not joining irc channel this is my configuration
and this is server log https://pastebin.com/ffBSDeF1
((I am not sure if this need to be in server support catagory if so then someone plz move it there))
Код:
//------------IRC OPTIONS ---------------------------------------- #define USE_IRC true // false if you dont want to use irc // 1st Echo Bot #define BOT_1_NICKNAME "PWCNR-1" #define BOT_1_REALNAME "Bot1_Real_Name" #define BOT_1_USERNAME "Bot@yoursite.com" // 2nd Echo Bot #define BOT_2_NICKNAME "PWCNR-2" #define BOT_2_REALNAME "Bot2_Real_Name" #define BOT_2_USERNAME "Bot@yoursite.com" //All bots password #define IRC_BOT_PASSWORD "*******" #define BOT_EMAIL "mymail@mail.com" // 3rd Echo Bot #define BOT_3_NICKNAME "PWCNR-3" #define BOT_3_REALNAME "Bot3_Real_Name" #define BOT_3_USERNAME "Bot@yoursite.com" //Admin Channel password(if you have any) #define IRC_ADMINCHANNEL_PASSWORD "*********" #define IRC_SERVER "chat.irc.tl" //irc network, people usually use irc.tl tho #define IRC_PORT (6667) // leave it like this < its used by most or i'd say all networks #define IRC_CHANNEL "#pwcnr.echo" //Echo channel for normal users #define IRC_ADMINCHANNEL "#******" //Staff channel #define MAX_BOTS (4) // number of bots you're using new gBotID[MAX_BOTS],gGroupID, PlayersOnline = 0;
((I am not sure if this need to be in server support catagory if so then someone plz move it there))