nice and easy, you dont waste time explaining what every single simple syntax dose which is nice because it IS supposed to be advanced. Hope you keep up, easy to follow and generally better that the other ones I've watched.
You might also want to use more appropriate variable names, so in a way your commenting your code a little better so in the future you know exactly what everything does.
can some one plz help me to make my internet speed faster?
iraqimann 1 month ago
nice and easy, you dont waste time explaining what every single simple syntax dose which is nice because it IS supposed to be advanced. Hope you keep up, easy to follow and generally better that the other ones I've watched.
NYMPHY13 2 months ago
To make the input case-insensitive (so the user can type in a "YES" or a "yes" or even a "YeS"), do this:
if /i %patched% equ yes (
commands go here
)
The "/i" is the case-insensitve parameter.
Also, to keep the program from crashing if you accidentally hit ENTER without typing anything, do this:
if not defined patched goto MAIN
That piece of code is pretty self explanatory...
Hope I helped!
TheWinnieston 3 months ago
Really Helpful! Thank you!
KevinB0i 5 months ago
You might also want to use more appropriate variable names, so in a way your commenting your code a little better so in the future you know exactly what everything does.
Xbox360Playas 11 months ago
@davisteelers14 thanks for the advice!
1domeso 1 year ago