Advertisement
Guest User

Untitled

a guest
May 28th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. using NeffyRobotPublicRelease;
  2. using System;
  3. using System.Threading;
  4.  
  5.  
  6. namespace AllChannelBot
  7. {
  8. class Program
  9. {
  10.  
  11. public static string username;
  12. public static string oAuth;
  13. static void Main(string[] args)
  14. {
  15. Console.WriteLine("N3RDFUSION REVLO FUCKER - By Movinggun");
  16. Console.WriteLine("What is your twitch username?");
  17. username = Console.ReadLine();
  18. Console.WriteLine("What is your twitch OAuth?");
  19. oAuth = Console.ReadLine();
  20. Console.Clear();
  21. Console.WriteLine("N3RDFUSION REVLO FUCKER - By Movinggun");
  22. new Program().ThreadsStart();
  23. }
  24.  
  25. public void ThreadsStart()
  26. {
  27. Thread threadN3RDFUSION = new Thread(N3RDFUSION);
  28. threadN3RDFUSION.Start();
  29. Thread threadSevadus = new Thread(Sevadus);
  30. threadSevadus.Start();
  31. Thread threadDan = new Thread(Dan);
  32. threadDan.Start();
  33. Thread threadWaffle = new Thread(Waffle);
  34. threadWaffle.Start();
  35. Thread threadBacon = new Thread(Bacon);
  36. threadBacon.Start();
  37. Thread threadPause = new Thread(Pause);
  38. threadPause.Start();
  39. }
  40.  
  41.  
  42. public void N3RDFUSION()
  43. {
  44. while (true)
  45. {
  46. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  47. irc.joinRoom("n3rdfusion");
  48. Console.WriteLine("Connected To N3RDFUSION");
  49. Thread.Sleep(300000);
  50. }
  51. }
  52. public void Sevadus()
  53. {
  54. while (true)
  55. {
  56. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  57. irc.joinRoom("sevadus");
  58. Console.WriteLine("Connected To Sevadus");
  59. Thread.Sleep(300000);
  60. }
  61. }
  62. public void Dan()
  63. {
  64. while (true)
  65. {
  66. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  67. irc.joinRoom("dansgaming");
  68. Console.WriteLine("Connected To DansGaming");
  69. Thread.Sleep(300000);
  70. }
  71. }
  72. public void Waffle()
  73. {
  74. while (true)
  75. {
  76. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  77. irc.joinRoom("giantwaffle");
  78. Console.WriteLine("Connected To GiantWaffle");
  79. Thread.Sleep(300000);
  80. }
  81. }
  82. public void Bacon()
  83. {
  84. while (true)
  85. {
  86. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  87. irc.joinRoom("bacon_donut");
  88. Console.WriteLine("Connected To Bacon_Donut");
  89. Thread.Sleep(300000);
  90.  
  91. }
  92. }
  93. public void Pause()
  94. {
  95. while (true)
  96. {
  97. IrcClient irc = new IrcClient("irc.chat.twitch.tv", 6667, username);
  98. irc.joinRoom("pauseunpause");
  99. Console.WriteLine("Connected To PauseUnPause");
  100. Thread.Sleep(300000);
  101.  
  102. }
  103. }
  104. }
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement