Pages

Ads 468x60px

Senin, 01 September 2014

Cara Membuat game dari Notepad

Oke,langsung saja copas script berikut ke notepad > Save dengan ekstensi ".bat" > Game siap dimainkan.

color b3
:menu
cls
echo Hai,Selamat datang di game yang "sangat" sederhana ini.
echo Game ini dibuat oleh : Asep Syaepulloh
echo by blog : http://asepblogzone.blogspot.com
echo 1) mulai
echo 2) cara bermain
echo 3) credit
echo 4) keluar
set /p number= 
if %number% == 1 goto mulai
if %number% == 2 goto cara bermain
if %number% == 3 goto credits
if %number% == 4 goto keluar 
:mulai
cls
echo Siapa nama kamu ?
set /p name=
echo Hai %name%!
echo Apakah kamu akan mulai game ini ? (y/n)
set /p start=
if %start% == y goto level1
if %start% == n goto menu
goto mulai! 
:cara main
cls
echo Ketik pilihan jawabanmu lalu tekan enter
echo Kamu hanya di berikan soal pilihan ganda.kamu harus memilih jawaban dengan tepat
set /p menugoto=
if %menugoto% == y goto menu
if %menugoto% == n goto exit
goto cara main 
:credits
cls
echo Game sederhana yang dibuat oleh Asep Syaepulloh
echo pengerjaan dimulai dari pertama oleh saya sendiri
echo site : http://asepblogzone.blogspot.com
echo Kembali ke menu ? (y/n)
set /p menugoto=
if %menugoto% == y goto menu
if %menugoto% == n goto credit
goto credits 
:keluar
cls
echo Apa kamu yakin ingin keluar dari game ? (y/n)
set /p keluargoto=
if %keluargoto% == y goto exit
if %keluargoto% == n goto menu
goto keluar 
:level1
cls
echo Lets Play!
echo  1. Sebutkan Fungsi dari AntiVirus ?
echo  a) Membelah duren
echo  b) Meminum air
echo  c) Membasmi virus
echo  d) a,b,c Benar
set /p answer1= 
if %answer1% == a goto wrong1
if %answer1% == b goto wrong1
if %answer1% == c goto correct1
if %answer1% == d goto wrong1
goto level1 
:correct1
echo Kamu Betul, Ingin Lanjut Ke Level 2?(y/n)
set /p NL1=
if %NL1% == y goto level2
if %NL1% == n goto menu
goto correct1 
:Wrong1
echo Kamu Salah, Ulang Lagi? (y/n)
set /p WA1=
if %WA1% == y goto level1
if %WA1% == n goto menu
goto wrong1 
:level2
cls
echo Level 2
echo  2. Apa itu E-mail?
echo  a) Surat elektronik
echo  b) Surat ijin mengemudi
echo  c) Surat keterangan hasil ujian nasional
echo  d) Semua benar
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, Ingin Lanjut Ke Level 3?(y/n)
set /p NL1=
if %NL1% == y goto level3
if %NL1% == n goto menu
goto correct2 
:wrong2
cls
echo Kamu Salah, Ulang Lagi? (y/n)
set/p retry=
if %retry% == y goto level1
if %retry% == n goto exit
goto wrong2 
:level3
cls
echo Level 3
echo  3. RAM adalah kependekan dari ?
echo  a) Random Atom Molecule
echo  b) Random Ancient Maritime
echo  c) Random Access Memory
echo  d) Random Access Markup
set /p answer3=
if %answer3% == a goto wrong3
if %answer3% == b goto wrong3
if %answer3% == c goto correct3
if %answer3% == d goto wrong3
goto level3 
:correct3
echo Kamu Betul, Ingin Lanjut Ke Level 4?(y/n)
set /p NL1=
if %NL1% == y goto level4
if %NL1% == n goto menu
goto correct3 
:wrong3
cls
echo Kamu Salah, Ulang Lagi? (y/n)
set/p retry=
if %retry% == y goto level1
if %retry% == n goto exit
goto wrong3 
:level4
cls
echo Level 4
echo  4. Siapakah presiden Indonesia setelah SBY ?
echo  a) Jokowi
echo  b) Joko Widodo
echo  c) Prabowo
echo  d) Prabowi
set /p aa=
if %aa% == a goto correct4
if %aa% == b goto correct4
if %aa% == c goto wrong4
if %aa% == d goto wrong4
goto level4 
:correct4
echo Kamu Betul, Ingin Lanjut Ke Level 5?(y/n)
set /p NL1=
if %NL1% == y goto level5
if %NL1% == n goto menu
goto correct4 
:wrong4
cls
echo Kamu Salah, Ulang Lagi? (y/n)
set/p retry=
if %retry% == y goto level1
if %retry% == n goto exit
goto wrong4 
:level5
cls
echo Level 5
echo  5. Sama dengan berapakah uang 1.000.000 Dollar Zimbabwe ?
echo  a) 3,102 USD
echo  b) 31,02 USD
echo  c) 3102 USD
echo  d) 310,2 USD
set /p answer5=
if %answer5% == a goto correct5
if %answer5% == b goto wrong5
if %answer5% == c goto wrong5
if %answer5% == d goto wrong5
goto level5 
:correct5
cls
echo Congrats !! Kamu berhasil menyelesaikan game ini :D
echo Mau keluar ? (y/n)
set /p aa=
if %aa% == y goto keluar
if %aa% == n goto menu
goto correct5 
:wrong5
cls
echo Yah kamu salah :'( . mau ulang lagi ? (y/n)
set /p retry=
if %retry% == y goto level1
if %retry% == n goto exit
goto wrong5

0 komentar:

Posting Komentar