Struct holding relevant data to the actual bot. More...
#include <bot.h>
Data Fields | |
char * | nick |
Nick visible on the IRC server. More... | |
char ** | channels |
List of channels currently connected to. More... | |
struct IRC_Connection * | connection |
Pointer to the IRC_Connection structure. More... | |
Bot_Command * | commands [BOT_MAX_COMMANDS] |
Array of pointers to Bot_Command structures. More... | |
int | newest_cmd |
Specifies the ID of the last command added, not to be used outside of bot_ functions. | |
char | last_msg [BOT_MAX_MSGLEN] |
Last received message. More... | |
int | last_channel_id |
Index of the last channel joined. More... | |
Struct holding relevant data to the actual bot.
char** IRC_Bot::channels |
List of channels currently connected to.
Bot_Command* IRC_Bot::commands[BOT_MAX_COMMANDS] |
Array of pointers to Bot_Command structures.
struct IRC_Connection* IRC_Bot::connection |
Pointer to the IRC_Connection structure.
int IRC_Bot::last_channel_id |
Index of the last channel joined.
char IRC_Bot::last_msg[BOT_MAX_MSGLEN] |
Last received message.
char* IRC_Bot::nick |
Nick visible on the IRC server.