Advertisement
Jman0209

Letter Counter (ABCOUNTER) v1.3

Nov 6th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 17.97 KB | None | 0 0
  1. ::This counter counts up, but not in numbers.
  2. ::It counts up in letters.
  3. ::This batch is probably extremely over-complicated, but it was the best from what I knew how to do.
  4. ::Created November 6, 2017
  5. ::Last Update: November 10, 2017 (v1.3)
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. :start
  15. @echo off
  16. title abcounter
  17. color a
  18. cd c:/
  19. set n1=
  20. set n2=
  21. set n3=
  22. set n4=
  23. set n5=
  24. set history=OFF
  25. set auto=ON
  26. set numbers=OFF
  27. set l1=
  28. set l2=
  29. set l3=
  30. set l4=
  31. set l5=
  32. set s1=
  33. set s2=
  34. set s3=
  35. set s4=
  36. set s5=
  37. set a=0
  38. set b=1
  39. set c=2
  40. set d=3
  41. set e=4
  42. set f=5
  43. set g=6
  44. set h=7
  45. set i=8
  46. set j=9
  47. set k=10
  48. set l=11
  49. set m=12
  50. set n=13
  51. set o=14
  52. set p=15
  53. set q=16
  54. set r=17
  55. set s=18
  56. set t=19
  57. set u=20
  58. set v=21
  59. set w=22
  60. set x=23
  61. set y=24
  62. set z=25
  63. set /a time=0
  64. cls
  65. goto intro
  66.  
  67. ::######################################################################################################
  68.  
  69. :intro
  70. cls
  71. echo.
  72. echo This counter counts up, but not in numbers.
  73. echo It counts up in letters.
  74. echo There are five letters total before the timer starts over.
  75. echo.
  76. pause
  77. goto first
  78.  
  79. :first
  80. cls
  81. echo.
  82. echo Enter the first letter to start with.
  83. echo You can also put nothing to just start with "aaaaa".
  84. echo.
  85. set /p l1=">>"
  86. if not defined l1 goto set
  87. goto second
  88.  
  89. :second
  90. cls
  91. echo.
  92. echo Enter the second letter.
  93. echo You can also put nothing to just start with "aaaaa".
  94. echo.
  95. set /p l2=">>"
  96. if not defined l2 goto set
  97. goto third
  98.  
  99. :third
  100. cls
  101. echo.
  102. echo Enter the third letter.
  103. echo You can also put nothing to just start with "aaaaa".
  104. echo.
  105. set /p l3=">>"
  106. if not defined l3 goto set
  107. goto fourth
  108.  
  109. :fourth
  110. cls
  111. echo.
  112. echo Enter the fourth letter.
  113. echo You can also put nothing to just start with "aaaaa".
  114. echo.
  115. set /p l4=">>"
  116. if not defined l4 goto set
  117. goto fifth
  118.  
  119. :fifth
  120. cls
  121. echo.
  122. echo Enter the fifth and final letter.
  123. echo You can also put nothing to just start with "aaaaa".
  124. echo.
  125. set /p l5=">>"
  126. if not defined l5 goto set
  127. goto poop
  128.  
  129. :poop
  130. if /i "%l1%"=="a" set n1=0
  131. if /i "%l1%"=="b" set n1=1
  132. if /i "%l1%"=="c" set n1=2
  133. if /i "%l1%"=="d" set n1=3
  134. if /i "%l1%"=="e" set n1=4
  135. if /i "%l1%"=="f" set n1=5
  136. if /i "%l1%"=="g" set n1=6
  137. if /i "%l1%"=="h" set n1=7
  138. if /i "%l1%"=="i" set n1=8
  139. if /i "%l1%"=="j" set n1=9
  140. if /i "%l1%"=="k" set n1=10
  141. if /i "%l1%"=="l" set n1=11
  142. if /i "%l1%"=="m" set n1=12
  143. if /i "%l1%"=="n" set n1=13
  144. if /i "%l1%"=="o" set n1=14
  145. if /i "%l1%"=="p" set n1=15
  146. if /i "%l1%"=="q" set n1=16
  147. if /i "%l1%"=="r" set n1=17
  148. if /i "%l1%"=="s" set n1=18
  149. if /i "%l1%"=="t" set n1=19
  150. if /i "%l1%"=="u" set n1=20
  151. if /i "%l1%"=="v" set n1=21
  152. if /i "%l1%"=="w" set n1=22
  153. if /i "%l1%"=="x" set n1=23
  154. if /i "%l1%"=="y" set n1=24
  155. if /i "%l1%"=="z" set n1=25
  156.  
  157. if /i "%l2%"=="a" set n2=0
  158. if /i "%l2%"=="b" set n2=1
  159. if /i "%l2%"=="c" set n2=2
  160. if /i "%l2%"=="d" set n2=3
  161. if /i "%l2%"=="e" set n2=4
  162. if /i "%l2%"=="f" set n2=5
  163. if /i "%l2%"=="g" set n2=6
  164. if /i "%l2%"=="h" set n2=7
  165. if /i "%l2%"=="i" set n2=8
  166. if /i "%l2%"=="j" set n2=9
  167. if /i "%l2%"=="k" set n2=10
  168. if /i "%l2%"=="l" set n2=11
  169. if /i "%l2%"=="m" set n2=12
  170. if /i "%l2%"=="n" set n2=13
  171. if /i "%l2%"=="o" set n2=14
  172. if /i "%l2%"=="p" set n2=15
  173. if /i "%l2%"=="q" set n2=16
  174. if /i "%l2%"=="r" set n2=17
  175. if /i "%l2%"=="s" set n2=18
  176. if /i "%l2%"=="t" set n2=19
  177. if /i "%l2%"=="u" set n2=20
  178. if /i "%l2%"=="v" set n2=21
  179. if /i "%l2%"=="w" set n2=22
  180. if /i "%l2%"=="x" set n2=23
  181. if /i "%l2%"=="y" set n2=24
  182. if /i "%l2%"=="z" set n2=25
  183.  
  184. if /i "%l3%"=="a" set n3=0
  185. if /i "%l3%"=="b" set n3=1
  186. if /i "%l3%"=="c" set n3=2
  187. if /i "%l3%"=="d" set n3=3
  188. if /i "%l3%"=="e" set n3=4
  189. if /i "%l3%"=="f" set n3=5
  190. if /i "%l3%"=="g" set n3=6
  191. if /i "%l3%"=="h" set n3=7
  192. if /i "%l3%"=="i" set n3=8
  193. if /i "%l3%"=="j" set n3=9
  194. if /i "%l3%"=="k" set n3=10
  195. if /i "%l3%"=="l" set n3=11
  196. if /i "%l3%"=="m" set n3=12
  197. if /i "%l3%"=="n" set n3=13
  198. if /i "%l3%"=="o" set n3=14
  199. if /i "%l3%"=="p" set n3=15
  200. if /i "%l3%"=="q" set n3=16
  201. if /i "%l3%"=="r" set n3=17
  202. if /i "%l3%"=="s" set n3=18
  203. if /i "%l3%"=="t" set n3=19
  204. if /i "%l3%"=="u" set n3=20
  205. if /i "%l3%"=="v" set n3=21
  206. if /i "%l3%"=="w" set n3=22
  207. if /i "%l3%"=="x" set n3=23
  208. if /i "%l3%"=="y" set n3=24
  209. if /i "%l3%"=="z" set n3=25
  210.  
  211. if /i "%l4%"=="a" set n4=0
  212. if /i "%l4%"=="b" set n4=1
  213. if /i "%l4%"=="c" set n4=2
  214. if /i "%l4%"=="d" set n4=3
  215. if /i "%l4%"=="e" set n4=4
  216. if /i "%l4%"=="f" set n4=5
  217. if /i "%l4%"=="g" set n4=6
  218. if /i "%l4%"=="h" set n4=7
  219. if /i "%l4%"=="i" set n4=8
  220. if /i "%l4%"=="j" set n4=9
  221. if /i "%l4%"=="k" set n4=10
  222. if /i "%l4%"=="l" set n4=11
  223. if /i "%l4%"=="m" set n4=12
  224. if /i "%l4%"=="n" set n4=13
  225. if /i "%l4%"=="o" set n4=14
  226. if /i "%l4%"=="p" set n4=15
  227. if /i "%l4%"=="q" set n4=16
  228. if /i "%l4%"=="r" set n4=17
  229. if /i "%l4%"=="s" set n4=18
  230. if /i "%l4%"=="t" set n4=19
  231. if /i "%l4%"=="u" set n4=20
  232. if /i "%l4%"=="v" set n4=21
  233. if /i "%l4%"=="w" set n4=22
  234. if /i "%l4%"=="x" set n4=23
  235. if /i "%l4%"=="y" set n4=24
  236. if /i "%l4%"=="z" set n4=25
  237.  
  238. if /i "%l5%"=="a" set n5=0
  239. if /i "%l5%"=="b" set n5=1
  240. if /i "%l5%"=="c" set n5=2
  241. if /i "%l5%"=="d" set n5=3
  242. if /i "%l5%"=="e" set n5=4
  243. if /i "%l5%"=="f" set n5=5
  244. if /i "%l5%"=="g" set n5=6
  245. if /i "%l5%"=="h" set n5=7
  246. if /i "%l5%"=="i" set n5=8
  247. if /i "%l5%"=="j" set n5=9
  248. if /i "%l5%"=="k" set n5=10
  249. if /i "%l5%"=="l" set n5=11
  250. if /i "%l5%"=="m" set n5=12
  251. if /i "%l5%"=="n" set n5=13
  252. if /i "%l5%"=="o" set n5=14
  253. if /i "%l5%"=="p" set n5=15
  254. if /i "%l5%"=="q" set n5=16
  255. if /i "%l5%"=="r" set n5=17
  256. if /i "%l5%"=="s" set n5=18
  257. if /i "%l5%"=="t" set n5=19
  258. if /i "%l5%"=="u" set n5=20
  259. if /i "%l5%"=="v" set n5=21
  260. if /i "%l5%"=="w" set n5=22
  261. if /i "%l5%"=="x" set n5=23
  262. if /i "%l5%"=="y" set n5=24
  263. if /i "%l5%"=="z" set n5=25
  264.  
  265. if "%n1%" geq "0" (
  266. if "%n2%" geq "0" (
  267. if "%n3%" geq "0" (
  268. if "%n4%" geq "0" (
  269. if "%n5%" geq "0" (
  270. goto menu
  271. )
  272. )
  273. )
  274. )
  275. )
  276. goto error
  277.  
  278. :error
  279. cls
  280. echo.
  281. echo Looks like there's a problem with one of your inputs.
  282. echo Try again.
  283. echo.
  284. pause
  285. goto start
  286.  
  287. ::###################################################################################################
  288.  
  289. :menu
  290. set choice=
  291. cls
  292. echo.
  293. echo Your word is %l1%%l2%%l3%%l4%%l5%.
  294. echo To turn history on/off, type "history". [%history%]
  295. echo To turn auto on/off, type "auto". [%auto%]
  296. echo (With auto OFF, you can hold down any key to scroll)
  297. echo To turn numbers on/off, type "number(s)". [%numbers%]
  298. echo (Each digit goes to 25 instead of 9)
  299. echo To stop the timer when it reaches a certain word, type "stop".
  300. if not defined s5 echo (The timer is not currently set to stop at any word.)
  301. if defined s5 echo (The timer is currently set to stop at the word, %s1%%s2%%s3%%s4%%s5%)
  302. echo To restart, type "restart".
  303. echo To start, type "start" or enter nothing.
  304. echo To exit, type "exit".
  305. echo.
  306. set /p choice=">>"
  307. if not defined choice goto counter
  308. if /i "%choice%"=="history" goto phistory
  309. if /i "%choice%"=="auto" goto pauto
  310. if /i "%choice%"=="number" goto pnumber
  311. if /i "%choice%"=="numbers" goto pnumber
  312. if /i "%choice%"=="stop" goto pstop
  313. if /i "%choice%"=="restart" goto start
  314. if /i "%choice%"=="start" (
  315. cls
  316. goto counter
  317. )
  318. if /i "%choice%"=="exit" exit
  319. goto menu
  320.  
  321.  
  322. ::############################################################################################
  323.  
  324. :phistory
  325. if /i "%history%"=="OFF" (
  326. set history=ON
  327. goto menu
  328. )
  329. if /i "%history%"=="ON" (
  330. set history=OFF
  331. )
  332. goto menu
  333.  
  334. :pauto
  335. if /i "%auto%"=="OFF" (
  336. set auto=ON
  337. goto menu
  338. )
  339. if /i "%auto%"=="ON" (
  340. set auto=OFF
  341. )
  342. goto menu
  343.  
  344. :pnumber
  345. if /i "%numbers%"=="OFF" (
  346. set numbers=ON
  347. goto menu
  348. )
  349. if /i "%numbers%"=="ON" (
  350. set numbers=OFF
  351. )
  352. goto menu
  353.  
  354. ::###########################################################################################################
  355.  
  356. :pstop
  357. set s1=
  358. cls
  359. echo.
  360. echo Enter the first letter to stop at.
  361. echo You can also put nothing to return to menu.
  362. echo.
  363. set /p s1=">>"
  364. if not defined s1 goto menu
  365. goto secondstop
  366.  
  367. :secondstop
  368. set s2=
  369. cls
  370. echo.
  371. echo Enter the second letter.
  372. echo You can also put nothing to return to menu.
  373. echo.
  374. set /p s2=">>"
  375. if not defined s2 goto menu
  376. goto thirdstop
  377.  
  378. :thirdstop
  379. set s3=
  380. cls
  381. echo.
  382. echo Enter the third letter.
  383. echo You can also put nothing to return to menu.
  384. echo.
  385. set /p s3=">>"
  386. if not defined s3 goto menu
  387. goto fourthstop
  388.  
  389. :fourthstop
  390. set s4=
  391. cls
  392. echo.
  393. echo Enter the fourth letter.
  394. echo You can also put nothing to return to menu.
  395. echo.
  396. set /p s4=">>"
  397. if not defined s4 goto menu
  398. goto fifthstop
  399.  
  400. :fifthstop
  401. set s5=
  402. cls
  403. echo.
  404. echo Enter the fifth and final letter.
  405. echo You can also put nothing to return to menu.
  406. echo.
  407. set /p s5=">>"
  408. if not defined s5 goto menu
  409. goto poopstop
  410.  
  411. :poopstop
  412. if /i "%s1%"=="a" set sn1=0
  413. if /i "%s1%"=="b" set sn1=1
  414. if /i "%s1%"=="c" set sn1=2
  415. if /i "%s1%"=="d" set sn1=3
  416. if /i "%s1%"=="e" set sn1=4
  417. if /i "%s1%"=="f" set sn1=5
  418. if /i "%s1%"=="g" set sn1=6
  419. if /i "%s1%"=="h" set sn1=7
  420. if /i "%s1%"=="i" set sn1=8
  421. if /i "%s1%"=="j" set sn1=9
  422. if /i "%s1%"=="k" set sn1=10
  423. if /i "%s1%"=="l" set sn1=11
  424. if /i "%s1%"=="m" set sn1=12
  425. if /i "%s1%"=="n" set sn1=13
  426. if /i "%s1%"=="o" set sn1=14
  427. if /i "%s1%"=="p" set sn1=15
  428. if /i "%s1%"=="q" set sn1=16
  429. if /i "%s1%"=="r" set sn1=17
  430. if /i "%s1%"=="s" set sn1=18
  431. if /i "%s1%"=="t" set sn1=19
  432. if /i "%s1%"=="u" set sn1=20
  433. if /i "%s1%"=="v" set sn1=21
  434. if /i "%s1%"=="w" set sn1=22
  435. if /i "%s1%"=="x" set sn1=23
  436. if /i "%s1%"=="y" set sn1=24
  437. if /i "%s1%"=="z" set sn1=25
  438.  
  439. if /i "%s2%"=="a" set sn2=0
  440. if /i "%s2%"=="b" set sn2=1
  441. if /i "%s2%"=="c" set sn2=2
  442. if /i "%s2%"=="d" set sn2=3
  443. if /i "%s2%"=="e" set sn2=4
  444. if /i "%s2%"=="f" set sn2=5
  445. if /i "%s2%"=="g" set sn2=6
  446. if /i "%s2%"=="h" set sn2=7
  447. if /i "%s2%"=="i" set sn2=8
  448. if /i "%s2%"=="j" set sn2=9
  449. if /i "%s2%"=="k" set sn2=10
  450. if /i "%s2%"=="l" set sn2=11
  451. if /i "%s2%"=="m" set sn2=12
  452. if /i "%s2%"=="n" set sn2=13
  453. if /i "%s2%"=="o" set sn2=14
  454. if /i "%s2%"=="p" set sn2=15
  455. if /i "%s2%"=="q" set sn2=16
  456. if /i "%s2%"=="r" set sn2=17
  457. if /i "%s2%"=="s" set sn2=18
  458. if /i "%s2%"=="t" set sn2=19
  459. if /i "%s2%"=="u" set sn2=20
  460. if /i "%s2%"=="v" set sn2=21
  461. if /i "%s2%"=="w" set sn2=22
  462. if /i "%s2%"=="x" set sn2=23
  463. if /i "%s2%"=="y" set sn2=24
  464. if /i "%s2%"=="z" set sn2=25
  465.  
  466. if /i "%s3%"=="a" set sn3=1
  467. if /i "%s3%"=="b" set sn3=1
  468. if /i "%s3%"=="c" set sn3=2
  469. if /i "%s3%"=="d" set sn3=3
  470. if /i "%s3%"=="e" set sn3=4
  471. if /i "%s3%"=="f" set sn3=5
  472. if /i "%s3%"=="g" set sn3=6
  473. if /i "%s3%"=="h" set sn3=7
  474. if /i "%s3%"=="i" set sn3=8
  475. if /i "%s3%"=="j" set sn3=9
  476. if /i "%s3%"=="k" set sn3=10
  477. if /i "%s3%"=="l" set sn3=11
  478. if /i "%s3%"=="m" set sn3=12
  479. if /i "%s3%"=="n" set sn3=13
  480. if /i "%s3%"=="o" set sn3=14
  481. if /i "%s3%"=="p" set sn3=15
  482. if /i "%s3%"=="q" set sn3=16
  483. if /i "%s3%"=="r" set sn3=17
  484. if /i "%s3%"=="s" set sn3=18
  485. if /i "%s3%"=="t" set sn3=19
  486. if /i "%s3%"=="u" set sn3=20
  487. if /i "%s3%"=="v" set sn3=21
  488. if /i "%s3%"=="w" set sn3=22
  489. if /i "%s3%"=="x" set sn3=23
  490. if /i "%s3%"=="y" set sn3=24
  491. if /i "%s3%"=="z" set sn3=25
  492.  
  493. if /i "%s4%"=="a" set sn4=0
  494. if /i "%s4%"=="b" set sn4=1
  495. if /i "%s4%"=="c" set sn4=2
  496. if /i "%s4%"=="d" set sn4=3
  497. if /i "%s4%"=="e" set sn4=4
  498. if /i "%s4%"=="f" set sn4=5
  499. if /i "%s4%"=="g" set sn4=6
  500. if /i "%s4%"=="h" set sn4=7
  501. if /i "%s4%"=="i" set sn4=8
  502. if /i "%s4%"=="j" set sn4=9
  503. if /i "%s4%"=="k" set sn4=10
  504. if /i "%s4%"=="l" set sn4=11
  505. if /i "%s4%"=="m" set sn4=12
  506. if /i "%s4%"=="n" set sn4=13
  507. if /i "%s4%"=="o" set sn4=14
  508. if /i "%s4%"=="p" set sn4=15
  509. if /i "%s4%"=="q" set sn4=16
  510. if /i "%s4%"=="r" set sn4=17
  511. if /i "%s4%"=="s" set sn4=18
  512. if /i "%s4%"=="t" set sn4=19
  513. if /i "%s4%"=="u" set sn4=20
  514. if /i "%s4%"=="v" set sn4=21
  515. if /i "%s4%"=="w" set sn4=22
  516. if /i "%s4%"=="x" set sn4=23
  517. if /i "%s4%"=="y" set sn4=24
  518. if /i "%s4%"=="z" set sn4=25
  519.  
  520. if /i "%s5%"=="a" set sn5=0
  521. if /i "%s5%"=="b" set sn5=1
  522. if /i "%s5%"=="c" set sn5=2
  523. if /i "%s5%"=="d" set sn5=3
  524. if /i "%s5%"=="e" set sn5=4
  525. if /i "%s5%"=="f" set sn5=5
  526. if /i "%s5%"=="g" set sn5=6
  527. if /i "%s5%"=="h" set sn5=7
  528. if /i "%s5%"=="i" set sn5=8
  529. if /i "%s5%"=="j" set sn5=9
  530. if /i "%s5%"=="k" set sn5=10
  531. if /i "%s5%"=="l" set sn5=11
  532. if /i "%s5%"=="m" set sn5=12
  533. if /i "%s5%"=="n" set sn5=13
  534. if /i "%s5%"=="o" set sn5=14
  535. if /i "%s5%"=="p" set sn5=15
  536. if /i "%s5%"=="q" set sn5=16
  537. if /i "%s5%"=="r" set sn5=17
  538. if /i "%s5%"=="s" set sn5=18
  539. if /i "%s5%"=="t" set sn5=19
  540. if /i "%s5%"=="u" set sn5=20
  541. if /i "%s5%"=="v" set sn5=21
  542. if /i "%s5%"=="w" set sn5=22
  543. if /i "%s5%"=="x" set sn5=23
  544. if /i "%s5%"=="y" set sn5=24
  545. if /i "%s5%"=="z" set sn5=25
  546.  
  547. if "%s1%" geq "0" (
  548. if "%s2%" geq "0" (
  549. if "%s3%" geq "0" (
  550. if "%s4%" geq "0" (
  551. if "%s5%" geq "0" (
  552. goto menu
  553. )
  554. )
  555. )
  556. )
  557. )
  558. goto serror
  559.  
  560. :serror
  561. cls
  562. echo.
  563. echo Looks like there's a problem with one of your inputs.
  564. echo Try again.
  565. echo.
  566. pause
  567. goto pstop
  568.  
  569.  
  570.  
  571. ::########################################################################################################
  572.  
  573. :set
  574. cls
  575. set /a n1=0
  576. set /a n2=0
  577. set /a n3=0
  578. set /a n4=0
  579. set /a n5=0
  580. set l1=a
  581. set l2=a
  582. set l3=a
  583. set l4=a
  584. set l5=a
  585. cls
  586. goto menu
  587.  
  588.  
  589.  
  590. :paused
  591. echo.
  592. echo Timer paused. You can type "exit", "restart", or "continue".
  593. echo (Type nothing to continue.)
  594. echo.
  595. set /p schoice=">>"
  596. if not defined schoice goto cont
  597. if /i "%schoice%"=="exit" exit
  598. if /i "%schoice%"=="restart" goto start
  599. if /i "%schoice%"=="continue" goto cont
  600. goto paused
  601.  
  602.  
  603. ::######################################################################################################
  604.  
  605.  
  606. :counter
  607. if /i %time%==0 (
  608. cls
  609. )
  610. set /a time=1
  611. if /i %history%==OFF (
  612. cls
  613. )
  614. if %numbers%==OFF (
  615. echo %l1%%l2%%l3%%l4%%l5%
  616. )
  617.  
  618. if %numbers%==ON (
  619. echo %l1%%l2%%l3%%l4%%l5%  %n1%%n2%%n3%%n4%%n5%
  620. )
  621.  
  622. if not defined s5 goto cont
  623.  
  624. if "%l1%"=="%s1%" (
  625. if "%l2%"=="%s2%" (
  626. if "%l3%"=="%s3%" (
  627. if "%l4%"=="%s4%" (
  628. if "%l5%"=="%s5%" (
  629. goto paused
  630. )
  631. )
  632. )
  633. )
  634. )
  635. :cont
  636.  
  637. if /i %auto%==OFF (
  638. pause
  639. )
  640.  
  641.  
  642. set /a n5=%n5% + 1
  643.  
  644. if /i %n5%==26 (
  645. set /a n5=0
  646. set /a n4=%n4% + 1
  647. )
  648.  
  649. if /i %n4%==26 (
  650. set /a n4=0
  651. set /a n3=%n3% + 1
  652. )
  653.  
  654. if /i %n3%==26 (
  655. set /a n3=0
  656. set /a n2=%n2% + 1
  657. )
  658.  
  659. if /i %n2%==26 (
  660. set /a n2=0
  661. set /a n1=%n1% + 1
  662. )
  663.  
  664. if /i %n1%==26 (
  665. goto set
  666. )
  667.  
  668. if /i %n5%==0 set l5=a
  669. if /i %n5%==1 set l5=b
  670. if /i %n5%==2 set l5=c
  671. if /i %n5%==3 set l5=d
  672. if /i %n5%==4 set l5=e
  673. if /i %n5%==5 set l5=f
  674. if /i %n5%==6 set l5=g
  675. if /i %n5%==7 set l5=h
  676. if /i %n5%==8 set l5=i
  677. if /i %n5%==9 set l5=j
  678. if /i %n5%==10 set l5=k
  679. if /i %n5%==11 set l5=l
  680. if /i %n5%==12 set l5=m
  681. if /i %n5%==13 set l5=n
  682. if /i %n5%==14 set l5=o
  683. if /i %n5%==15 set l5=p
  684. if /i %n5%==16 set l5=q
  685. if /i %n5%==17 set l5=r
  686. if /i %n5%==18 set l5=s
  687. if /i %n5%==19 set l5=t
  688. if /i %n5%==20 set l5=u
  689. if /i %n5%==21 set l5=v
  690. if /i %n5%==22 set l5=w
  691. if /i %n5%==23 set l5=x
  692. if /i %n5%==24 set l5=y
  693. if /i %n5%==25 set l5=z
  694.  
  695. if /i %n4%==0 set l4=a
  696. if /i %n4%==1 set l4=b
  697. if /i %n4%==2 set l4=c
  698. if /i %n4%==3 set l4=d
  699. if /i %n4%==4 set l4=e
  700. if /i %n4%==5 set l4=f
  701. if /i %n4%==6 set l4=g
  702. if /i %n4%==7 set l4=h
  703. if /i %n4%==8 set l4=i
  704. if /i %n4%==9 set l4=j
  705. if /i %n4%==10 set l4=k
  706. if /i %n4%==11 set l4=l
  707. if /i %n4%==12 set l4=m
  708. if /i %n4%==13 set l4=n
  709. if /i %n4%==14 set l4=o
  710. if /i %n4%==15 set l4=p
  711. if /i %n4%==16 set l4=q
  712. if /i %n4%==17 set l4=r
  713. if /i %n4%==18 set l4=s
  714. if /i %n4%==19 set l4=t
  715. if /i %n4%==20 set l4=u
  716. if /i %n4%==21 set l4=v
  717. if /i %n4%==22 set l4=w
  718. if /i %n4%==23 set l4=x
  719. if /i %n4%==24 set l4=y
  720. if /i %n4%==25 set l4=z
  721.  
  722. if /i %n3%==0 set l3=a
  723. if /i %n3%==1 set l3=b
  724. if /i %n3%==2 set l3=c
  725. if /i %n3%==3 set l3=d
  726. if /i %n3%==4 set l3=e
  727. if /i %n3%==5 set l3=f
  728. if /i %n3%==6 set l3=g
  729. if /i %n3%==7 set l3=h
  730. if /i %n3%==8 set l3=i
  731. if /i %n3%==9 set l3=j
  732. if /i %n3%==10 set l3=k
  733. if /i %n3%==11 set l3=l
  734. if /i %n3%==12 set l3=m
  735. if /i %n3%==13 set l3=n
  736. if /i %n3%==14 set l3=o
  737. if /i %n3%==15 set l3=p
  738. if /i %n3%==16 set l3=q
  739. if /i %n3%==17 set l3=r
  740. if /i %n3%==18 set l3=s
  741. if /i %n3%==19 set l3=t
  742. if /i %n3%==20 set l3=u
  743. if /i %n3%==21 set l3=v
  744. if /i %n3%==22 set l3=w
  745. if /i %n3%==23 set l3=x
  746. if /i %n3%==24 set l3=y
  747. if /i %n3%==25 set l3=z
  748.  
  749. if /i %n2%==0 set l2=a
  750. if /i %n2%==1 set l2=b
  751. if /i %n2%==2 set l2=c
  752. if /i %n2%==3 set l2=d
  753. if /i %n2%==4 set l2=e
  754. if /i %n2%==5 set l2=f
  755. if /i %n2%==6 set l2=g
  756. if /i %n2%==7 set l2=h
  757. if /i %n2%==8 set l2=i
  758. if /i %n2%==9 set l2=j
  759. if /i %n2%==10 set l2=k
  760. if /i %n2%==11 set l2=l
  761. if /i %n2%==12 set l2=m
  762. if /i %n2%==13 set l2=n
  763. if /i %n2%==14 set l2=o
  764. if /i %n2%==15 set l2=p
  765. if /i %n2%==16 set l2=q
  766. if /i %n2%==17 set l2=r
  767. if /i %n2%==18 set l2=s
  768. if /i %n2%==19 set l2=t
  769. if /i %n2%==20 set l2=u
  770. if /i %n2%==21 set l2=v
  771. if /i %n2%==22 set l2=w
  772. if /i %n2%==23 set l2=x
  773. if /i %n2%==24 set l2=y
  774. if /i %n2%==25 set l2=z
  775.  
  776. if /i %n1%==0 set l1=a
  777. if /i %n1%==1 set l1=b
  778. if /i %n1%==2 set l1=c
  779. if /i %n1%==3 set l1=d
  780. if /i %n1%==4 set l1=e
  781. if /i %n1%==5 set l1=f
  782. if /i %n1%==6 set l1=g
  783. if /i %n1%==7 set l1=h
  784. if /i %n1%==8 set l1=i
  785. if /i %n1%==9 set l1=j
  786. if /i %n1%==10 set l1=k
  787. if /i %n1%==11 set l1=l
  788. if /i %n1%==12 set l1=m
  789. if /i %n1%==13 set l1=n
  790. if /i %n1%==14 set l1=o
  791. if /i %n1%==15 set l1=p
  792. if /i %n1%==16 set l1=q
  793. if /i %n1%==17 set l1=r
  794. if /i %n1%==18 set l1=s
  795. if /i %n1%==19 set l1=t
  796. if /i %n1%==20 set l1=u
  797. if /i %n1%==21 set l1=v
  798. if /i %n1%==22 set l1=w
  799. if /i %n1%==23 set l1=x
  800. if /i %n1%==24 set l1=y
  801. if /i %n1%==25 set l1=z
  802.  
  803.  
  804.  
  805.  
  806. goto counter
  807.  
  808.  
  809.  
  810.  
  811.  
  812.  
  813.  
  814.  
  815. ::##########################################################################################
  816.  
  817. ::UPDATE LOG
  818.  
  819. ::----------------------------------------------------------------------------
  820.  
  821. ::Version 1.3 (11/10/2017)
  822. ::
  823. ::-Added the option to stop the timer at a certain word to the menu.
  824.  
  825. ::----------------------------------------------------------------------------
  826.  
  827. ::Version 1.2 (11/08/2017)
  828. ::
  829. ::-Changed numbers to be on the side, instead of under the letters.
  830.  
  831. ::----------------------------------------------------------------------------
  832.  
  833. ::Version 1.1 (11/07/2017)
  834. ::
  835. ::-Added the "numbers" option in the menu.
  836. ::-Added the scroll hint under the auto option in the menu
  837. ::-Added the exit option in the menu
  838.  
  839. ::----------------------------------------------------------------------------
  840.  
  841. ::Version 1.0 (11/06/2017)
  842. ::
  843. ::-Created everything not mentioned in later updates.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement