Advertisement
Guest User

Untitled

a guest
Jul 14th, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. @echo off
  2. goto Start
  3. :Start
  4. cls
  5. title Livestreamer for Twitch.tv
  6. echo Livestreamer Batch File for Twitch.tv
  7. echo.
  8. echo Enter the name of the stream you would like to watch:
  9. echo ----------------------------------------­-----------------------
  10. echo.
  11. set input=
  12. set /p input= Stream name:
  13.  
  14. echo Starting Stream %input%
  15. echo.
  16. echo ----------------------------------------­-----------------------
  17. livestreamer twitch.tv/%input% best
  18.  
  19. cls
  20. /min
  21. echo Stream has either ended or is unavailable. What would you like to do now?
  22. echo 1) Start a new stream
  23. echo 2) Quit
  24. set input=
  25. set /p input= Choice:
  26. if %input%==1 goto Start if NOT goto Exit
  27. if %input%==2 goto Exit if NOT goto Exit
  28.  
  29.  
  30.  
  31. :Exit
  32. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement