Skip to content

Instantly share code, notes, and snippets.

@ldunn
Created June 26, 2010 07:04
Show Gist options
  • Select an option

  • Save ldunn/453863 to your computer and use it in GitHub Desktop.

Select an option

Save ldunn/453863 to your computer and use it in GitHub Desktop.
(defun connect-bot (connection nick server channel)
(setf connection (irc:connect :nickname nick
:server server))
(sleep 3)
(irc:join connection channel)
(irc:add-hook connection 'irc-privmsg-message 'command-hook)
(irc:start-background-message-handler connection))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment