Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $chan = "#h3llbz";
- $server = "irc.twitch.tv";
- $port = 6667;
- $nick = "h3llbz";
- $pass = "oauth:ehz56h354z5hz54uze56uzje5"; //http://tmi.twitchapps.com <-- Go there for your oauth key.
- //Authenticated/Scope: chat_login
- $VC = fsockopen($server, $port);
- fputs($VC,"PASS $pass\n");
- fputs($VC,"NICK $nick\n");
- fputs($VC,"JOIN " . $chan . "\n");
- fputs($VC, "PRIVMSG ". $chan . " :" . 'Hello Start the Show' . " \n");
- ?>
Advertisement