Advertisement
Guest User

Untitled

a guest
Jan 25th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var irc = require("tmi.js");
  2.  
  3. var options = {
  4.   options: {
  5.     debug: true
  6.   },
  7.   connection: {
  8.     random: "chat",
  9.     reconnect: true
  10.   },
  11.   identity: {
  12.     username: "DigotLive",
  13.     password: "oauth:0ti6cmeatfevzzicbgxbe1j60thr07"
  14.   },
  15.   channels: ["#doctorbenx"]
  16. };
  17.  
  18. var client = new irc.client(options);
  19.  
  20. // Connect the client to the server..
  21. client.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement