Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  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. identity: {
  12. // Bot username
  13. username: "COYGbot",
  14. // Twitch Chat OAuth Password
  15. password: "dont want to show the key"
  16. },
  17. // Channel username
  18. channels: ["channel name"]
  19. }:
  20.  
  21. var client = new tmi.client(options);
  22. client.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement