Yes, you forgot the pause command. What you did is you made it say "Hello you got hacked." but then you made it clear the screen so it's almost impossible to see it appear. So add a pause on the line before the cls command.
@TrickeyCSS cls just clears the text Add it like this. @ECHO OFF @CLS@title LOLOL UR HACKED @ECHO YEP YOUR HACKED WATCHA GONNA DO? CANT CLOSE ME! @Ping.exe localhost -n 5 >NUL @CLS@title Nevermind @ECHO i was jokeing :P @Ping.exe localhost -n 5 >NUL pause it will show the next text in 5 seconds
@CodeStop The first time I did this it worked, but afterwards I could type whatever I wanted and it would go to Hi...I even copied the code and pasted it, same thing, goes staiight to Hi
Great lesson - I have a question, you may or may not know how to answer but... i have a bunch of programs i want opened at work - NOT at the same time because that would overload my machine, i want to wait for the computer to load the first program and go to the next, then when it loads, the next. so on and so fourth. I dont want to close these programs so /start w will not work, i need them opened but in the same order, i know this can be done, i just cant figure it out. Thanks! Great JOB!
@blu3streak3 Alright, so you can't specifically make it open right after the first program is done opening. But you can make it open at different times. So for example:
With that code, you would have notepad starting first. Then 9 seconds will pass by and paint will open up. You can change the 9 into any amount of seconds you want.
Mhg i like your tutorials but you use to mutch HI and BYE :P
niek9812 13 hours ago
I feel bad for whoever has the youtube name "Echo" they must get a TON of messages O.o
lotokoth 1 week ago
This shit. Deserves me to watch it in 1080p. 10 FUCKING 80 P ON 27IN MONIT0-R.
xh0rrifiedx 3 weeks ago
hey man nice tusts tanks very much should upload more
rednut416 1 month ago
Thankyou
ZaiTechChannel 1 month ago
Comment removed
DonCro0k 2 months ago
Comment removed
DonCro0k 2 months ago
Comment removed
DonCro0k 2 months ago
How do I write the input at the same line where the output is?
Olemassacre 2 months ago
code is at h ttp:// ww w.m ediafir e. co m/? kye1 dm 1i sjex 9 sy take out the spaces youtube was being mean to me and no links
ModernBrickfare 3 months ago
@ModernBrickfare Could you possibly put the code on pastebin? (pastebin . com)
CodeStop 3 months ago
Comment removed
ModernBrickfare 3 months ago
ok i made this so it wont close if i type in randomness, but it'll close if i press enter. how do i fix this?
ModernBrickfare 3 months ago
Comment removed
ModernBrickfare 3 months ago
u forgot cls :P
MrXylophoenix 3 months ago
SSSSSSSSSSSSSSSSSSSSSUUUUUUUUUUUUUUUUUUUUUBBBBBBBBB
ashadow0309 3 months ago
@echo off
echo Hello u got hacked.
cls
echo Haha it was only for fun. Just close this window.
pause
- Is there something wrong ? :( It's only type "echo Hahah it was only for fun. Just close this window." help me :(
TrickeyCSS 4 months ago
@TrickeyCSS
Yes, you forgot the pause command. What you did is you made it say "Hello you got hacked." but then you made it clear the screen so it's almost impossible to see it appear. So add a pause on the line before the cls command.
CodeStop 4 months ago
@CodeStop Okay thank you :D and i love your tutorial's. :)
TrickeyCSS 4 months ago
Extendedfilms 3 months ago
you, mate, are awesome.
XwatchmyvidsX 4 months ago in playlist Fler videoklipp från CodeStop
@XwatchmyvidsX Thank you, if you want, subscribe! :D
CodeStop 4 months ago
@CodeStop The first time I did this it worked, but afterwards I could type whatever I wanted and it would go to Hi...I even copied the code and pasted it, same thing, goes staiight to Hi
mkiol1111 2 months ago
Your like 14 and you know wayyy more than me, keep it up!
magemaniac33 4 months ago
@magemaniac33
Age is not a limit to learning my friend. Thanks for the support.
CodeStop 4 months ago
Great lesson - I have a question, you may or may not know how to answer but... i have a bunch of programs i want opened at work - NOT at the same time because that would overload my machine, i want to wait for the computer to load the first program and go to the next, then when it loads, the next. so on and so fourth. I dont want to close these programs so /start w will not work, i need them opened but in the same order, i know this can be done, i just cant figure it out. Thanks! Great JOB!
blu3streak3 4 months ago
@blu3streak3 Alright, so you can't specifically make it open right after the first program is done opening. But you can make it open at different times. So for example:
==========================
@echo off
start notepad.exe
ping localhost -n 9 >nul
start mspaint.exe
==========================
With that code, you would have notepad starting first. Then 9 seconds will pass by and paint will open up. You can change the 9 into any amount of seconds you want.
CodeStop 4 months ago