Notepad game DragonKill

Configurare noua (How To)

Situatie

Solutie

  1. Press Start
  2. Type in notepad
  3. In notepad Copy and Paste the code below:

@echo off

:menu
color 0a
cls
echo DRAGON KILL
echo Choose the number:
echo 1. Start game
echo 2. Exit
set /p menu=
if ‘%menu%’==’1’ (
goto sets
)
if ‘%menu%’==’2’ (
exit
)else goto menu
:sets
cls
set /a money=1000
set /a health=1000
set /a potions=0
set /a damage=2
set /a dd=5
set /a dh=25
set /a moneygain=50
set /a levels=0
set /a new=%dh%+5
:start
cls
echo Money:%money%
echo Health:%health%
echo Number of healing potions:%potions%
echo Choose the number:
echo 1. Venture onward to the dragon
echo 2. Go to Store
echo 3. Go to Title screen
echo 4. Drink heal potion
set /p choose=
if ‘%choose%’==’1’ (
cls
echo DO NOT HOLD THE ENTER KEY
pause
goto fight
)
if ‘%choose%’==’2’ (
goto store
)
if ‘%choose%’==’3’ (
goto menu
)
if ‘%choose%’==’4’ (
goto nextx
)else goto start
:fight
cls
echo Health:%health%
echo Dragon’s Health:%new%
echo You have encountered a dragon
pause
cls
echo Press enter to hit the dragon
set /p hit=
set /a new=%new%-%damage%
if %new% LSS 1 (
goto defeat
)
cls
echo Health:%health%
echo Dragon’s Health:%new%
echo You have hit the dragon
echo The dragon lost %damage% health

  1. In the top right of notepad click File
  2. Then click Save As
  3. IMPORTANT: Name the file DragonKill.bat
  4. Then Click the drop down menu below that says Text Document
  5. Change it to All Files
  6. Click save
  7. Then go to your windows explorer (the file folder icon) then open up the game!

Tip solutie

Permanent

Voteaza

(13 din 41 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?