When I try to add:
irc_disconnected => \&bot_reconnect,
irc_error => \&bot_reconnect,
irc_socketerr => \&bot_reconnect,
connect => \&bot_connect,
_start => \&bot_start,
autoping => \&bot_do_autoping,
irc_001 => \&bot_connected, Into the bot it doesn't connect.
I am putting it right after.
inline_states => {
_start => \&bot_start,
irc_001 => \&on_connect,
irc_public => \&on_public, What am I missing in my code or where is my mistake?