Advertisement
Guest User

Untitled

a guest
Mar 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // Do NOT include this line if you are using the browser version.
  2. var irc = require("tmi.js");
  3.  
  4. var options = {
  5. options: {
  6. debug: true
  7. },
  8. connection: {
  9. cluster: "chat",
  10. reconnect: true
  11. },
  12. identity: {
  13. username: "pukateiubestebott",
  14. password: ""
  15.  
  16. },
  17.  
  18. channels: ["#pukateiubeste"]
  19. };
  20.  
  21. var client = new irc.client(options);
  22.  
  23. // Connect the client to the server..
  24. client.connect();
  25. client.color("red");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement