Advertisement
Guest User

Untitled

a guest
Apr 11th, 2016
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var tmi = require("tmi.js")
  2.  
  3. var options = {
  4.     options: {
  5.         debug: true
  6.     },
  7.     connection: {
  8.         cluster: "aws",
  9.         reconnect: true
  10.  
  11.     },
  12.     identity: {
  13.         username: "bigmac1471"
  14.         password: "[REMOVED]"
  15.     },
  16.     channels: ["bigmac147"]
  17. };
  18.  
  19. var client = new tmi.client(options);
  20. client.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement