Okay, so we all know it's fun to mess with batch, but here's some help, so say you wanted to write a code that says a message, you press spacebar to continue then it displays some more, then ends or goes on.. whatever the hell you want.
Here's how it's done.
_________________
You have your batch file with some text you want to have displayed
Quote:
@echo on
@echo hey bitches
@echo off
pause
end
|
and you want it to say stuff after you press spacebar to "continue"
Here is how you do it.
Quote:
@echo on
@echo Hey bitches
@echo off
pause
@echo on
@echo HI BIATCHES AGAIN!
@echo off
pause
end
|
And you are done! a quick tutorial, you can also make this use functions like Delete, which you can disguise as an updater! it's all easy in batch!