Introduction: Crypto Inc. Batch Game

About: I've never really introduced myself in any of my games, so My name is Neo, I have a Youtube channel about gaming, I've never done any tutorials about batch in my channel but I can if I get the time, I make Bat…

Crypto Game Yay

It's like a clicker game but with no clicks

Upgrades

Buyings

Blah

Blah

Blah

Have Fun

Supplies

Notepad.exe

Step 1: Copy the Code

@echo off
title Crypto Inc.
color 0e
@mode cols=45 lines=23

:sets
set /a money=0
set /a pce=1
set /a be=0
set /a cpue=0
set /a minere=0
set /a nasacome=0
set /a hackere=0
set /a moneye=%pce%+%be%+%cpue%+%minere%+%nasacom%+%hackere%
set /a pcp=15
set /a bp=30
set /a cpup=50
set /a minerp=100
set /a nasacomp=200
set /a hackerp=500
set /a secs=10
set /a secsp=100000
goto menu

:menu
cls
echo ==================
echo  Crypto Inc.
echo ==================
echo Made By: NeuNguyen
echo 1) Start
echo 2) Quit
echo ==================
choice /c 12 /m "Choices"
if %errorlevel%==1 goto choose
if %errorlevel%==2 exit

:choose
cls
echo ===================
echo 1) Continue Current 
echo 2) Start New One
echo ===================
choice /c 12 /m "Choices"
if %errorlevel%==1 goto call
if %errorlevel%==2 goto new

:new
echo Save The Game First
choice /c YN /m "Save?"
if %errorlevel%==2 (goto choose)
(
echo %money%
echo %pce%
echo %be%
echo %cpue%
echo %minere%
echo %nasacome%
echo %hackere%
echo %moneye%
echo %pcp%
echo %bp%
echo %cpup%
echo %minerp%
echo %nasacomp%
echo %hackerp%
echo %secs%
echo %secsp%
)>scrypto.bat
attrib +r scrypto.bat
goto eof

:call
(
set /p money=
set /p pce=
set /p be=
set /p cpue=
set /p minere=
set /p nasacome=
set /p hackere=
set /p moneye=
set /p pcp=
set /p bp=
set /p cpup=
set /p minerp=
set /p nasacomp=
set /p hackerp=
set /p secs=
set /p secsp=
)<scrypto.bat
goto eof

:upgradesets
set /a moneye=%pce%+%be%+%cpue%+%minere%+%nasacom%+%hackere%
goto upgrade

:upgrade
cls
echo ================================
echo       Upgrade
echo ================================
echo 1) PC         %pcp%
echo 2) Mother Board    %bp%
echo 3) CPU        %cpup%
echo 4) Miner       %minerp%
echo 5) Lower Secs   %secs% %secsp%
echo 6) Nasa Computer  %nasacomp%
echo 7) Hacker     %hackerp%
echo 8) Go Back
echo ================================
echo Money Earn:%moneye%
echo ================================
choice /c 12345678 /n >nul
if %errorlevel%==1 goto pcbuy
if %errorlevel%==2 goto bbuy
if %errorlevel%==3 goto cpubuy
if %errorlevel%==4 goto minerbuy
if %errorlevel%==5 goto secsbuy
if %errorlevel%==6 goto nasabuy
if %errorlevel%==7 goto hackbuy
if %errorlevel%==8 goto eof

:nasabuy
if %money% lss %nasacomp% goto not2
set /a money=%money%-%nasacomp%
set /a nasacomp=%nasacomp%+%nasacomp%
set /a nasacome=%nasacome%+1
goto upgradesets
:hackbuy
if %money% lss %hackerp% goto not2
set /a money=%money%-%hackerp%
set /a hackerp=%hackerp%+%hackerp%
set /a hackere=%hackere%+1
goto upgradesets
:secsbuy
if %secs% lss 4 goto no1
if %money% lss %secsp% goto not1
set /a money=%money%-%secsp%
set /a secsp=%secsp%+%secsp%
set /a secs=%secs%-1
goto upgrade

:no1
echo No Game Will Glitch out 
pause
goto upgrade

:pcbuy
if %money% lss %pcp% goto not1
set /a money=%money%-%pcp%
set /a pcp=%pcp%+%pcp%
set /a pce=%pce%+1
goto upgradesets
:bbuy
if %money% lss %bp% goto not1
set /a money=%money%-%bp%
set /a bp=%bp%+%bp%
set /a be=%be%+1
goto upgradesets
:cpubuy
if %money% lss %cpup% goto not1
set /a money=%money%-%cpup%
set /a cpup=%cpup%+%cpup%
set /a cpue=%cpue%+1
goto upgradesets
:minerbuy
if %money% lss %minerp% goto not1
set /a money=%money%-%minerp%
set /a minerp=%minerp%+%minerp%
set /a minere=%minere%+1
goto upgradesets

:not1
echo No Enough Money
pause
goto upgrade

:save
echo Save
choice /c YN /m "Save?"
if %errorlevel%==2 (goto choose)
(
echo %money%
echo %pce%
echo %be%
echo %cpue%
echo %minere%
echo %nasacome%
echo %hackere%
echo %moneye%
echo %pcp%
echo %bp%
echo %cpup%
echo %minerp%
echo %nasacomp%
echo %hackerp%
echo %secs%
echo %secsp%
)>scrypto.bat
attrib +r scrypto.bat
echo Saved
pause
goto eof

:eof
cls
echo Money:%money% %message%
echo ================================
echo [U]     Office     [E]
echo ================================
echo     Pc Earn:%pce%
echo   Mother Board Earn:%be%
echo     CPU Earn:%cpue%
echo    Miner Earn:%minere%
echo  Nasa Computer Earn:%nasacome%
echo    Hacker Earn:%hackere%
echo     Seconds:%secs%
echo ================================
echo [G]      [P]   [S]
echo ================================
echo Seconds till next Money:%secs%
choice /d p /t %secs% /c usep /n >nul
if %errorlevel%==1 goto upgrade
if %errorlevel%==2 goto save
if %errorlevel%==3 goto menu
if %errorlevel%==4 (
set /a money=%money%+%moneye%
)
goto eof

Step 2: See More Games

At

https://www.instructables.com/member/NeuNguyen