Advertisement
Guest User

Untitled

a guest
Feb 12th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. var tmi = require('tmi.js');
  2.  
  3. var options = {
  4. options: {
  5. debug: true
  6. },
  7. identity: {
  8. username: "Yukarin33",
  9. password: "oauth:f664764cx8xcsjlj219tzygxvthlwh"
  10. },
  11. channels: ["LegatusLeman"]
  12. };
  13.  
  14. var client = new tmi.client(options);
  15. client.connect();
  16.  
  17. client.on('connected', function(address, port) {
  18. client.say("LegatusLeman", "Yukarin Bot başarıyla güncellendi.");
  19. });
  20.  
  21. client.on('chat', function(channel, user, message, self) {
  22. if(user.username === "Yukarin33" && message === "!kapat") {
  23. client.disconnect(client.say("LegatusLeman", "Yukarin Bot kapatıldı."));
  24. }
  25. else {
  26. client.say("Yarrağın yeterince uzun değil delikanlı.");
  27. }
  28.  
  29. });
  30.  
  31. client.on('subscription', function(channel, username, method) {
  32. client.say("LegatusLeman", username + "Abone olup orduya katıldığın için teşekkür ederiz legatusSeven legatusSeven ");
  33. });
  34.  
  35. client.on('resub', function(channel, username, months, message) {
  36. client.say("LegatusLeman", username + months + "Ay Abone olup orduya katıldığın için teşekkür ederiz legatusSeven legatusSeven ");
  37. });
  38.  
  39. client.on('chat', function(channel, user, message, self) {
  40. if(message === "!sellout") {
  41. client.say("LegatusLeman", "Abone olup ordu'da savasmak mı istiyorsun iste link : https://goo.gl/UmcT3n Facebook'dan beğenip destek vermek mi istiyorsun işte link : https://goo.gl/YCiJUm Twitter'dan takip edip destek vermek mi istiyorsun işte link : https://goo.gl/5QL29V Steam'den hediyelik eşya mı atmak istiyorsun işte link : https://goo.gl/o2jmMZ");
  42. }
  43. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement