A Teleportation Story
About
@echo off
color 0a
echo This is a text-based BATCH game I wrote over the corse of the last day. This is also the First game I ever wrote on my own. Please note that English is not my first language so expect a few spelling mistakes.
echo I always wanted to write a game and finaly I did it! ( If you are currios for why BATCH, its just the programing language I know best and is for me the simplest to use. You should look it up! ) Also note that this game was originaly only a prove of conzept for a program where you walk on a map, so it does not realy have that much gameplay. I assume that it will take you about 10min to play throw.
echo Oh, yes and I think this is windows only, unless you use some extra programs.
echo And finaly if you want to use part of my code, you can, as long as you say that it is from me. (-:
echo ( By the way, you can run this description as a BATCH code! )
set /a time_in_h = %time:~-11,2%
if %time_in_h% GTR 6 (
if %time_in_h% LSS 19 (
set Is_Day_Night=Day ) else (
set Is_Day_Night=Night ) )
echo Anyways have a nice %Is_Day_Night%!
pause >nul
exit