Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. @echo off
  2. :Ask
  3. echo Would you like to use developer mode?(Y/N)
  4. set INPUT=
  5. set /P INPUT=Type input: %=%
  6. If %INPUT%=="y" goto yes
  7. If %INPUT%=="n" goto no
  8. If %INPUT%=="Y" goto yes
  9. If %INPUT%=="N" goto no
  10. :yes
  11. java -jar lib/RSBot-4030.jar -dev
  12. echo Starting RSbot in developer mode
  13. :no
  14. java -jar lib/RSBot-4030.jar
  15. echo Starting RSbot in regular mode
  16. pause
  17.  
  18. If N=="y" goto yes
  19. If N=="n" goto no
  20.  
  21. If "%INPUT%"=="y" goto yes
  22. If "%INPUT%"=="n" goto no
  23. If "%INPUT%"=="Y" goto yes
  24. If "%INPUT%"=="N" goto no
  25.  
  26. If /I "%INPUT%"=="y" goto yes
  27. If /I "%INPUT%"=="n" goto no
  28.  
  29. ...
  30. :yes
  31. java -jar lib/RSBot-4030.jar -dev
  32. echo Starting RSbot in developer mode
  33. goto cont
  34. :no
  35. java -jar lib/RSBot-4030.jar
  36. echo Starting RSbot in regular mode
  37. :cont
  38. pause
  39.  
  40. @echo off
  41. :Ask
  42. echo Would you like to use developer mode?(Y/N)
  43. set INPUT=
  44. set /P INPUT=Type input: %=%
  45. If /I "%INPUT%"=="y" goto yes
  46. If /I "%INPUT%"=="n" goto no
  47. echo Incorrect input & goto Ask
  48. :yes
  49. ...
  50.  
  51. set /p input= yes or no
  52. if %input%==yes echo you clicked yes
  53. if %input%==no echo you clicked no
  54. pause
  55. echo that was random
  56. pause
  57. echo bye
  58. pause
  59.  
  60. echo off
  61. setlocal
  62. SET AREYOUSURE = N
  63. :PROMPT
  64. set /P AREYOUSURE=Update Release Files (Y/N)?
  65. if /I %AREYOUSURE% NEQ Y GOTO END
  66. set /P AREYOUSURE=Are You Sure you want to Update Release Files (Y/N)?
  67. if /I %AREYOUSURE% NEQ Y GOTO END
  68.  
  69. echo Copying New Files
  70.  
  71. :END
  72.  
  73. if /I %AREYOUSURE% NEQ "Y" GOTO END
  74.  
  75. if "%INPUT%"=="y"...
  76.  
  77. If "%INPUT%" == "y" goto yes
  78. If "%INPUT%" == "n" goto no
  79. If "%INPUT%" == "Y" goto yes
  80. If "%INPUT%" == "N" goto no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement