Guest User

Untitled

a guest
Jul 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. bot = FancyIRC Client new: {
  2. configuration: {
  3. nickname: "fancy_irc"
  4. server: "irc.freenode.net"
  5. port: 6667
  6. channels: ["#fancy"]
  7. }
  8.  
  9. on: 'channel pattern: /^hello/ do: |msg| {
  10. msg reply: $ "Hello to you too, " ++ (msg author) ++ "?"
  11. }
  12. }
  13.  
  14. bot connect
  15. bot["#fancy"] send: "Hello, Fancy team. This is a fancy-written irc client =)"
Add Comment
Please, Sign In to add comment