17 lines
297 B
C
17 lines
297 B
C
//Settings
|
|
#define NICK "historybot"
|
|
#define HOST "localhost"
|
|
#define PORT 6667
|
|
#define DIR "./"
|
|
|
|
char *channels[] = {"#channel"};
|
|
|
|
//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"
|