Advertisement
Tiniux

BatchDos

Dec 17th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 3.33 KB | None | 0 0
  1. @echo off
  2. title BatchDos
  3. set text=First you have to write something with writer.
  4. cls
  5.  
  6. :username
  7. cls
  8. title Enter username
  9. cls
  10. set username=0
  11. set /p usr="Enter username:"
  12. goto menu
  13.  
  14. :menu
  15. title BatchDos
  16. cls
  17. echo Tiniux BatchDos [Version 1.0]
  18. echo (c) 2017 Tiniux Corporation. All rights reserved
  19. echo.
  20. set asw=0
  21. set /p asw="C:\Users\%usr%>"
  22. if %asw%==help goto help
  23. if %asw%==clr goto clrindex
  24. if %asw%==clrhelp goto clrhlp
  25. if %asw%==urls goto urls
  26. if %asw%==title goto ttl
  27. if %asw%==text goto text
  28. if %asw%==writer goto writervals
  29. if %asw%==settings goto settings
  30. if %asw%==ipconfig goto ipconfig
  31. if %asw%==changepasword goto setpasswort
  32. if %asw%==cmd cmd
  33. if %asw%==exit exit
  34. goto END
  35.  
  36. :clrindex
  37. set /p clr="colorcode(example f0)"
  38. goto clr
  39.  
  40. :ttl
  41. cls
  42. set /p ttl="Enter Title:
  43. goto title
  44.  
  45. :title
  46. cls
  47. title %ttl%
  48. echo Title changed to %ttl%.
  49. echo.
  50. echo Press anythink to continue.
  51. pause >nul
  52. goto menu
  53.  
  54. :ipconfig
  55. ipconfig
  56. echo.
  57. echo Press anythink to return
  58. pause >nul
  59. goto menu
  60.  
  61. :help
  62. cls
  63. echo clr (for all colors type: colorhelp)
  64. echo help (what you are seeing)
  65. echo clrhelp (a list of the colorcodes)
  66. echo urls (list of all urls)
  67. echo title (change the title)
  68. echo writer (write a text)
  69. echo text (read out the text you wrote with writer)
  70. echo settings (change stuff)
  71. echo ipconfig (shows your internet details)
  72. echo cmd (opens cmd)
  73. echo.
  74. echo Press anythink to go back to the startpoint!
  75. pause >nul
  76. goto menu
  77.  
  78. :clrhlp
  79. cls
  80. echo 0 = Black         8 = Dark Grey
  81. echo 1 = Blue          9 = Light Blue
  82. echo 2 = Green         A = Light Green
  83. echo 3 = Turquoise     B = Light Turquoise
  84. echo 4 = Red           C = Light Red
  85. echo 5 = Purple        D = Light Purple
  86. echo 6 = Yellow        E = Light Yellow
  87. echo 7 = Grey          F = White
  88. echo Press anythink to go back to the startpoint!
  89. pause >nul
  90. goto menu
  91.  
  92. :urls
  93. cls
  94. echo Download for hackstore:https://hackstoreios.wixsite.com/tiniuxrepo
  95. echo YouTube:https://www.youtube.com/channel/UCNA1_fwsbu_uTEboBknAvqw?view_as=subscriber
  96. echo Instagram:https://www.instagram.com/tiniuxrepooffical/
  97. echo Facebook:https://www.facebook.com/tiniuxrepo.offical.7?ref=bookmarks
  98. echo Twiter:https://twitter.com/TiniuxREPO
  99. echo Press anythink to return.
  100. pause >nul
  101. goto menu
  102.  
  103. :settings
  104. cls
  105. title settings
  106. echo [1]language
  107. echo.
  108. set seting=0
  109. set /p seting="C:\Users\%usr%>"
  110. if %seting%==1 goto languagechs
  111. goto menu
  112.  
  113. :languagechs
  114. title settings
  115. echo [1]englisch     [2]german
  116. echo.
  117. set seting=0
  118. set /p language="C:\Users\%usr%>"
  119. if %language%==1 goto menu
  120. if %language%==2 goto germany
  121. goto menu
  122.  
  123. :germany
  124. start BatchDosGerman.bat
  125. exit
  126.  
  127. :clr
  128. color %clr%
  129. goto menu
  130.  
  131. :END
  132. cls
  133. echo Unknown command.
  134. echo (type help for help)
  135. echo Press anythink to return.
  136. pause >nul
  137. goto menu
  138.  
  139. :pswrong
  140. title Wrong password
  141. cls
  142. echo Wrong password.
  143. echo.
  144. echo Press anythink to return.
  145. pause >nul
  146. cls
  147. goto username
  148.  
  149. :writervals
  150. set text=
  151. cls
  152. goto writer
  153.  
  154. :writer
  155. cls
  156. set /p text="%text%"
  157. goto finish
  158.  
  159. :text
  160. cls
  161. echo %text%
  162. echo.
  163. echo Press anythink to continiue
  164. pause >nul
  165. goto menu
  166.  
  167. :finish
  168. echo.
  169. echo are you finished?
  170. echo.
  171. set yn=0
  172. set /p yn="Y/N:"
  173. if %yn%==y goto menu
  174. if %yn%==n goto writer
  175. goto ynfail
  176.  
  177. :ynfail
  178. cls
  179. echo Enter Y/N
  180. echo Y=yes/N=no
  181. echo.
  182. echo Press anythink to return.
  183. pause >nul
  184. goto finish
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement