HellBz

Twitch Chat Script

Aug 24th, 2016
271
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2.  
  3.     $chan = "#h3llbz";
  4.     $server = "irc.twitch.tv";
  5.     $port = 6667;
  6.     $nick = "h3llbz";
  7.     $pass = "oauth:ehz56h354z5hz54uze56uzje5"; //http://tmi.twitchapps.com <-- Go there for your oauth key.
  8.     //Authenticated/Scope: chat_login
  9.    
  10.    
  11.  
  12. $VC = fsockopen($server, $port);
  13. fputs($VC,"PASS $pass\n");
  14. fputs($VC,"NICK $nick\n");
  15. fputs($VC,"JOIN " . $chan . "\n");
  16.  
  17.  
  18. fputs($VC, "PRIVMSG ". $chan . " :" . 'Hello Start the Show' . " \n");
  19.  
  20. ?>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment