PerpetualImperfexion
October 6th, 2012, 07:14 PM
Epic Creature Experience (ALPHA 1.0)
Ok, first of all I would just like to let you guys know that the title is NOT permanent. It is a temporary name and I would very much appreciate your suggestions. Secondly, this game is the first version of the game. Expect small bugs, but I think I got rid of most of the big ones. If you encounter any bugs please post them here. Thirdly this game is no where near its full potential or where I want it to be. There will be many neat features added to this game in the future. So now onto the information.
The game has 583 lines in it. I've spent the last week coding the rough draft, working out the concept quirks, but it's only taken me the last 4 hours to put together the final /alpha/ draft of the game. I only started seriously studying batch a week or two ago, so this is my first major work and I am very proud of it. So without any further ado, here is the pastebin link, a few screenies, and the intro code.
Pastebin Link: http://pastebin.com/VQxF5pxz
Change Log
- In fight screen it was not displaying your attack/defense (Fixed)
- Shortened save code
- Creates/loads save in directory the batch file exists in. (Will need to move text file to where ever the the batch file is)
Intro/Explanation
:intro
cls
echo The goal of this game is to get your creature to the highest level possible.
pause
cls
echo Each time you move up a level, you gain a skillpoint.
pause >nul
cls
echo Skillpoints can be used to increase your creatures abilities.
pause >nul
cls
echo You can level your creature by feeding it food.
pause >nul
cls
echo Food can be bought at the market with money.
pause >nul
cls
echo Money can be obtained by attacking other creatures.
pause >nul
cls
echo When you attack other creatures, you lose health.
pause >nul
cls
echo To regain your health you must heal your creature by feeding it 10 food.
pause >nul
cls
echo What would you like to name your creature?
set /p name=
echo name=%name% >> C:\Users\%username%\Documents\EXI\%save%.txt
cls
echo %name% is a wonderful name for such a wonderful creature! Long live %name%!
echo.
echo Press any key to start the game...
pause >nul
goto mainmenu
New Save/Load Save Screen
http://i.imgur.com/oDGC1.png
Main Menu
http://i.imgur.com/PRpDb.png
Market
http://i.imgur.com/HrsUf.png
So if you could reply with what you think that would be great. Thanks for your time. :)
Ok, first of all I would just like to let you guys know that the title is NOT permanent. It is a temporary name and I would very much appreciate your suggestions. Secondly, this game is the first version of the game. Expect small bugs, but I think I got rid of most of the big ones. If you encounter any bugs please post them here. Thirdly this game is no where near its full potential or where I want it to be. There will be many neat features added to this game in the future. So now onto the information.
The game has 583 lines in it. I've spent the last week coding the rough draft, working out the concept quirks, but it's only taken me the last 4 hours to put together the final /alpha/ draft of the game. I only started seriously studying batch a week or two ago, so this is my first major work and I am very proud of it. So without any further ado, here is the pastebin link, a few screenies, and the intro code.
Pastebin Link: http://pastebin.com/VQxF5pxz
Change Log
- In fight screen it was not displaying your attack/defense (Fixed)
- Shortened save code
- Creates/loads save in directory the batch file exists in. (Will need to move text file to where ever the the batch file is)
Intro/Explanation
:intro
cls
echo The goal of this game is to get your creature to the highest level possible.
pause
cls
echo Each time you move up a level, you gain a skillpoint.
pause >nul
cls
echo Skillpoints can be used to increase your creatures abilities.
pause >nul
cls
echo You can level your creature by feeding it food.
pause >nul
cls
echo Food can be bought at the market with money.
pause >nul
cls
echo Money can be obtained by attacking other creatures.
pause >nul
cls
echo When you attack other creatures, you lose health.
pause >nul
cls
echo To regain your health you must heal your creature by feeding it 10 food.
pause >nul
cls
echo What would you like to name your creature?
set /p name=
echo name=%name% >> C:\Users\%username%\Documents\EXI\%save%.txt
cls
echo %name% is a wonderful name for such a wonderful creature! Long live %name%!
echo.
echo Press any key to start the game...
pause >nul
goto mainmenu
New Save/Load Save Screen
http://i.imgur.com/oDGC1.png
Main Menu
http://i.imgur.com/PRpDb.png
Market
http://i.imgur.com/HrsUf.png
So if you could reply with what you think that would be great. Thanks for your time. :)