history/cfg.h
2023-12-13 16:41:27 +03:00

28 lines
511 B
C

//Settings
#define NICK "historybotd"
#define HOST "irc.rizon.net" //localhost"
#define PORT 6667
#define DIR "./"
struct CHANNEL {
char *channel;
char *key;
};
struct CHANNEL channels[] = {
{"#hp", NULL}
};
//Put \r\n after string end
//Exp: {..., "PRIVMSG NickServ IDENTIFY mypassword\r\n", ..., NULL};
char *send_after_join[] = {NULL};
//Output
#define FORMAT_TXT "<%s> %s\n"
#define FORMAT_HTML "[%s] %s<br>\n"
#define FORMAT_AWK "%s %s\n"
#define FORMAT FORMAT_TXT
//File ext
#define EXT ".txt"