Created
October 6, 2008 19:31
-
-
Save vangberg/15109 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'isaac' | |
config do |c| | |
c.nick = "Awesome_Isaac" | |
c.server = "irc.freenode.net" | |
c.port = 6667 | |
end | |
on :connect do | |
join "#Awesome_Channel" | |
end | |
on :channel, /sing/ do | |
msg channel, "Isaac enters the stage:" | |
msg channel, "Emanating originating from a love asphixiation" | |
msg channel, "He said I better slow down before you drive me in the ground" | |
msg channel, "But what he doesn't know is I want another encore" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment