Guest User

Untitled

a guest
May 21st, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. exports.profiles = [{
  2. host: "irc.freenode.net",
  3. port: 6667,
  4. nick: 'elbot_js',
  5. password: null, // null is no password, otherwise a string
  6. user: 'Elbot',
  7. real: 'Test Bot',
  8. channels: ["#botwar", "#node.js"]
  9. }, {
  10. host: "irc.freenode.net",
  11. port: 6667,
  12. nick: 'elbot_js2',
  13. password: null, // null is no password, otherwise a string
  14. user: 'Elbot',
  15. real: 'Test Bot',
  16. channels: ["#botwar2", "#node.js"]
  17. }, {
  18. host: "irc.anotherhost.net",
  19. port: 6667,
  20. nick: 'elbot_js',
  21. password: null, // null is no password, otherwise a string
  22. user: 'Elbot',
  23. real: 'Test Bot',
  24. channels: ["#botwar", "#node.js"]
  25. }];
Add Comment
Please, Sign In to add comment