How to make a simply clock with notepad
1Open Notepad
2Paste this code
off
color a
title Clock by mobster1312
:A
echo Time is %time% today date is %date%
goto :A
save it on (.bat)file
How to hack
how to hack
how to create a joke virus with notepad
1. Open Notepad
2.paste this code
x=msgbox("Sorry But Exel is deleted and cannot Find",0+0,"Exel.exe")
x=msgbox("Make sure thate you have searched the correctly file",0+5,"Exel.exe")
x=msgbox("From now this Computer is controlled by Mobster",0+32,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("This computer is Hacked",0+5,"Mobster Hack")
x=msgbox("hahha dont worry is just a joke",0+0,"HAHAHAH"
3. Save as ".vbs''
4."I Have chose exel beacues we learn it on school first than the others
How to create clock with Notepad
1.Open Notepad
2.Paste this Code
off
setlocal enableextensions enabledelayedexpansion
::batch clock
::code author: carlos
::skin author: mxpower
::last updated: 2013, 18 november: reduced cpu usage fixed
::created: 2008, october
::the clock automatically updates the display
::note: only open 1 instance of this script else it may fail
::for not show the week day change the variable show_week_day to 0
set /a "show_week_day=1"
::
mode con cols=49 lines=16
color 0a
Set "diga= _ _ _ _ _ _ _ _ "
Set "digb=³ ³ ³ _³ _³³_³³_ ³_ ³³_³³_³"
Set "digc=³_³ ³ ³_ _³ ³ _³³_³ ³³_³ _³"
set "m= January February March April May June "
set "m=%m% July August September October November December "
set "w=MonTueWedThuFriSatSun"
call :getdate.init
call :getdate
:clock
set /a "h1=hour/10,h2=hour-10*h1"
set /a "m1=minute/10,m2=minute-10*m1"
for %%_ in (h1 h2 m1 m2) do (set /a "index=3*%%_"
for %% # in (!index!) do (
set "%%_a=!diga:~%% #,3!"
set "%%_b=!digb:~%% #,3!"
set "%%_c=!digc:~%% #,3!"
))
set /a "index=10*(month-1)"
set "mfp=!m:~%index%,10!"
set /a "index=3*(weekday-1)"
set "wdp=!w:~%index%,3!"
set "dfp=%day%"
if %dfp% lss 10 set "dfp=0%dfp%"
title %h1%%h2%:%m1%%m2%
cls
echo.
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º²²²²²²²²²²±ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿±²²²²²²²²²²±º
echo º²MxPower²²±³ %h1a% %h2a% %m1a% %m2a% ³±²²²²²²²²²²±º
echo º²²²²²²²²²²±³ %h1b% %h2b% . %m1b% %m2b% ³±²²²²²²²²²²±º
echo º²²²²²²²²²²±³ %h1c% %h2c% . %m1c% %m2c% ³±²²²²²²²²²²±º
echo º²²²²²²²²²²±³ ³±²²²²²²²²²²±º
echo º²²²²²²²²²²±ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ±²²²²²²²²²²±º
echo º²²²²²²²²²²±±±±±±±±±±±±±±±±±±±±±±±±²²²²²²²²²²±º
if 1 equ %show_week_day% (
echo º²²²²²°ÚÄÄÄ¿±°ÚÄÄ¿±°ÚÄÄÄÄÄÄÄÄÄÄ¿±°ÚÄÄÄÄ¿±²²²²±º
echo º²²²²²°³%wdp%³±°³%dfp%³±°³%mfp%³±°³%year%³±²²²²±º
echo º²²²²²°ÀÄÄÄÙ±°ÀÄÄÙ±°ÀÄÄÄÄÄÄÄÄÄÄÙ±°ÀÄÄÄÄÙ±²²²²±º
) else (
echo º²²²²²²²²°ÚÄÄ¿±°ÚÄÄÄÄÄÄÄÄÄÄ¿±°ÚÄÄÄÄ¿±²²²²²²²²±º
echo º²²²²²²²²°³%dfp%³±°³%mfp%³±°³%year%³±²²²²²²²²±º
echo º²²²²²²²²°ÀÄÄÙ±°ÀÄÄÄÄÄÄÄÄÄÄÙ±°ÀÄÄÄÄÙ±²²²²²²²²±º
)
echo º±±±±±±±²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²±±±±±±±±º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo ÀÄÄÄÄÄÙ ÀÄÄÄÄÄÙ
set "th1=%day%%month%%year%%hour%%minute%"
:upd
call :getdate
set "th2=%day%%month%%year%%hour%%minute%"
if not "%th1%"=="%th2%" goto :clock
ping -l 0 -n 1 -w 500 1.0.0.0 >nul
goto :upd
:getdate.init
set /a "jan=1,feb=2,mar=3,apr=4,may=5,jun=6,jul=7,aug=8,sep=9,oct=10,nov=11,dec=12"
set /a "mon=1,tue=2,wed=3,thu=4,fri=5,sat=6,sun=7"
(echo .set infheader=""
echo .set infsectionorder=""
echo .set inffooter="%%2"
for /l %% # in (1,1,4) do echo .set inffooter%% #=""
echo .set cabinet="off"
echo .set compress="off"
echo .set donotcopyfiles="on"
echo .set rptfilename="nul"
) >"%temp%\~foo.ddf"
goto :eof
:getdate
set "tf=%temp%\~%random%"
makecab /d inffilename="%tf%" /f "%temp%\~foo.ddf" >nul
for /f "usebackq tokens=1-7 delims=: " %%a in ("%tf%") do (
set /a "year=%%g,month=%%b,day=1%%c-100,weekday=%%a"
set /a "hour=1%%d-100,minute=1%%e-100,second=1%%f-100")
del "%tf%" >nul 2>&1
goto :eof
3.save as .bat file
How to create a game with notepad
1. Open Notepad
2. Paste this Code
off
color b0
:menu
cls
echo Hey! Welcome to the game!
echo 1) start!
echo 2) how to play
echo 3) Exit :,(
set /p number=
if %number% == 1 goto StartGame
if %number% == 2 goto help
if %number% == 3 goto exit
:startgame
cls
echo Type Your Name:
set /p name=
echo Hello %name%!
echo Do you want to start the quiz? (y/n)
set /p start=
if %start% == y goto level1
if %start% == n goto menu
goto startgame
:help
cls
echo Press the number of the answer then hit enter.
echo go back? (y/n)
set /p menugoto=
if %menugoto% == y goto menu
if %menugoto% == n goto exit
goto help
:exit
goto exit
:level1
cls
echo Okay, Let's Start.
echo What is 10 + 10?
echo 1) 1
echo 2) 20
echo 3) 500
set /p answer1=
if %answer1% == 1 goto wrong1
if %answer1% == 2 goto correct1
if %answer1% == 3 goto wrong1
goto level1
:correct1
echo You are right! Next Level? (y/n)
set /p NL1=
if %NL1% == y goto level2
if %NL1% == n goto menu
goto correct1
:Wrong1
Echo Sadly, you were wrong. Retry? (y/n)
set /p WA1=
if %WA1% == y goto level1
if %WA1% == n goto menu
goto wrong1
:level2
cls
echo Who is on the 100 dollar bill?
echo 1) Ben Franklin
echo 2) Tommy King
echo 3) Thomas Train
echo 4) Jeff Dunham
set /p aa=
if %aa% == 1 goto correct2
if %aa% == 1 goto wrong2
if %aa% == 1 goto wrong2
if %aa% == 1 goto wrong2
goto level2
:correct2
cls
echo YOU WIN THE GAME!
goto correct2
:wrong2
cls
echo YOU LOST! RETRY GAME? (y/n)
set/p retry=
if %retry% == y goto level1
if %retry% == n goto exit
goto wrong2
3.save in (.bat)
Click here to claim your Sponsored Listing.
Location
Category
Website
Address
78th Street
California City, CA
93505