- Back to Home »
- Tips and Trick »
- Cara Membuat Game Tekateki dengan Mudah Pakai Notepad
Posted by : Andrian
24 Mei 2013
Notepad?? Siapa yang ga tau sih Notepad? Sesuatu yang kecil tetapi sangat bermanfaat buat ngotak-ngatik komputer. Kali ini gua mao share aja tentang Cara Membuat Game Tekateki dengan Mudah Pakai Notepad nih. Ane cuma istilahnya reserved nih dari blog http://adnan-tekaje2.blogspot.com. Dengan sedikit code-code mulai dari code echo ; set /p ; dan lainnya jika di hubung-hubungkan ternyata dapat menjadikan sebuah permainan tekateki atau game tanya jawab dari CMD. Gua juga sebenernya masih newbie banget kalo soal komputer apalagi tentang peng-code an. Menurut gua sih nih trik gampang banget dan sangat mudah di tiru bagi yang newbie kayak gua ini.
Sory nih jadi kelamaan cincong, langsung aja dah
1. copy code dibawah ini di Notepad
2. setelah di copy, klik Save as
3. Kasih nama terserahdeh.BAT
Enjoy :D
www.andrian-suseno.com |
Sory nih jadi kelamaan cincong, langsung aja dah
1. copy code dibawah ini di Notepad
2. setelah di copy, klik Save as
3. Kasih nama terserahdeh.BAT
@echo off
color 0a
:menu
cls
echo Hello! Selamat Datang! Selamat bermain Semoga Berhasil! Good Luck...
echo Twitter gua : @AndrianSenoo
echo Game Ini Di Buat oleh: Andrian Suseno
echo Link blog : www.andrian-suseno.com
echo 1) Mulai!
echo 2) cara main
echo 3) Keluar
set /p number=
if %number% == 1 goto Mulai!
if %number% == 2 goto cara main
if %number% == 3 goto keluar
:Mulai!
cls
echo Siapa Nama Mu:
set /p name=
echo Halo %name%!
echo Apakah Kamu akan mulai quiz? (y/t)
set /p start=
if %start% == y goto level1
if %start% == t goto menu
goto Mulai!
:cara main
cls
echo pencet pilihan lalu ketik enter
echo pergi ke menu? (y/t)
set /p menugoto=
if %menugoto% == y goto menu
if %menugoto% == t goto exit
goto cara main
:keluar
cls
echo apakah anda yaking ingin keluar game?(y/t)
set /p keluargoto=
if %keluargoto% == y goto exit
if %keluargoto% == t goto menu
goto keluar
:level1
cls
echo ok sekarang mulai.
echo berapa hasil 1 + 1?
echo a) 11
echo b) 2
echo c) 500
set /p answer1=
if %answer1% == a goto
if %answer1% == b
if %answer1% == c goto wrong1
goto level1
:correct1
echo betul mau lanjut level 2?(y/t)
set /p NL1=
if %NL1% == y goto level2
if %NL1% == t goto menu
goto correct1
:Wrong1
Echo salah mau ulang? (y/t)
set /p WA1=
if %WA1% == y goto level1
if %WA1% == t goto menu
goto wrong1
:level2
cls
echo Siapa yang ada di uang 100 dollar?
echo a) Ben Franklin
echo b) Tommy King
echo c) Thomas Train
echo d) Jeff Dunham
set /p aa=
if %aa% == a goto correct2
if %aa% == b goto wrong2
if %aa% == c goto wrong2
if %aa% == d goto wrong2
goto level2
:correct2
echo Kamu betul mau Lanjut level 3?(y/t)
set /p NL1=
if %NL1% == y goto level3
if %NL1% == t goto menu
goto correct2
:wrong2
cls
echo SALAH!Mau ulang? (y/t)
set/p retry=
if %retry% == y goto level1
if %retry% == t goto exit
goto wrong2
:level3
cls
echo berapa 5x5?
echo a) 30
echo b) 89
echo c) 25
set /p answer3=
if %answer3% == a goto wrong3
if %answer3% == b goto wrong3
if %answer3% == c goto correct3
goto level3
:correct3
echo betul mau lanjut level 4?(y/t)
set /p NL1=
if %NL1% == y goto level4
if %NL1% == t goto menu
goto correct3
:wrong3
cls
echo salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level1
if %retry% == t goto exit
goto wrong3
:level4
cls
echo siapa penemu lampu?
echo a)Thomas Alvadison
echo b)Johan Edvard
echo c)John Shore
echo d)Samuel Miller
set /p aa=
if %aa% == a goto correct4
if %aa% == b goto wrong4
if %aa% == c goto wrong4
if %aa% == d goto wrong4
goto level4
:correct4
echo betul mau lanjut level 5?(y/t)
set /p NL1=
if %NL1% == y goto level5
if %NL1% == t goto menu
goto correct4
:wrong4
cls
echo salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level4
if %retry% == t goto exit
goto wrong4
:level5
cls
echo berapa hasil -20:(-2)?
echo a)10
echo b)5
echo c)20
set /p answer5=
if %answer5% == a goto correct5
if %answer5% == b goto wrong5
if %answer5% == c goto wrong5
goto level5
:correct5
echo betul mau lanjut level 6?(y/t)
set/p NL1=
if %NL1% == y goto level6
if %NL1% == t goto menu
goto correct1
:wrong5
cls
echo Salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level5
if %retry% == t goto exit
goto wrong5
:level6
cls
echo Siapa Penemu Bakteri?
echo a)Orang Gila
echo b)Alexander Fleming
echo c)Alexander Grahambell
echo d)Muhammad Faqih`
set /p aa=
if %aa% == a goto wrong6
if %aa% == b goto correct6
if %aa% == c goto wrong6
if %aa% == d goto wrong
goto level6
:correct6
echo betul mau lanjut level7?(y/t)
set/p NL1=
if %NL1% == y goto level7
if %NL1% == t goto menu
goto correct7
:wrong6
cls
echo Salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level7
if %retry% == t goto exit
goto wrong7
:level7
cls
echo berapa hasil -40:2:(-4)?
echo a)13
echo b)20
echo c)5
set/p answer7=
if %answer7% == a goto wrong7
if %answer7% == b goto wrong7
if %answer7% == c goto correct7
goto level7
:correct7
echo betul mau lanjut level8? (y/t)
set/p NL1=
if %NL1% == y goto level8
if %NL1% == t goto menu
goto correct7
:wrong7
cls
echo Salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level7
if %retry% == t goto exit
goto wrong7
:level8
cls
echo Siapa Presiden Amerika
echo a)Barrak Obama
echo b)SBY
echo c)Soekarano
echo d)Moh.Hatta
set /p aa=
if %aa% == a goto correct8
if %aa% == b goto wrong8
if %aa% == c goto wrong8
if %aa% == d goto wrong8
:correct8
echo betul mau lanjut level9?(y/t)
set/p NL1=
if %NL1% == y goto level9
if %NL1% == t goto menu
goto correct8
:wrong8
cls
echo Salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level8
if %retry% == t goto exit
goto wrong8
:level9
echo berapa hasil 3x(-2)=
echo a)-100
echo b)400
echo c)-6
set /p answer9=
if %answer9% == a goto wrong9
if %answer9% == b goto wrong9
if %answer9% == c goto correct9
goto level9
:correct9
echo betul mau lanjut level 10?(y/t)
set/p NL1=
if %NL1% == y goto level10
if %NL1% == t goto menu
goto correct1
:wrong9
cls
echo Salah mau ulang?(y/t)
set/p retry=
if %retry% == y goto level9
if %retry% == t goto exit
goto wrong9
:level10
cls
echo Siapa penemu telepon?
echo a)Orang Gembel
echo b)Adnan Majid
echo c)Alexander Grahambell
echo d)SBY
set /p aa=
if %aa% == a goto wrong10
if %aa% == b goto wrong10
if %aa% == c goto correct10
if %aa% == d goto wrong10
goto level10
:correct10
cls
echo SELAMAT KAMU MENANG!
echo KEEP VISIT : www.andrian-suseno.com
goto correct10
:wrong10
cls
echo KAMU KALAH MAU ULANG GAME!? (y/t)
set/p retry=
if %retry% == y goto level1
if %retry% == t goto exit
goto wrong10
| |||||||
{ 2 Komentar... read them below or Comment (komen dibawah yoo) }
Marilah Kita Terapkan Berkomentar, karena pengunjung yang baik selalu meninggalkan jejak di komentarnya nya.
Berkomentarlah dengan baik dan sopan :)
makasih yaa gan update yg lain donk
BalasHapusLain kali lagi yaa gan :D
Hapus