Initial commit

This commit is contained in:
James Booth
2013-09-01 16:44:19 +01:00
commit 54417a9ed2
11 changed files with 405 additions and 0 deletions

14
ChatStart.rb Normal file
View File

@@ -0,0 +1,14 @@
module ChatStart
@@contacts = [
"\"Prof 2\"",
"prof3@panesar"
]
def self.prof_on_connect()
@@contacts.each { | contact |
Prof::send_line("/msg " + contact)
}
Prof::send_line("/win 1")
end
end