Search found 3 matches

by chazjn
04 May 2017 16:19
Forum: DOS Batch Forum
Topic: Game: FILL.bat
Replies: 3
Views: 3668

Re: Game: FILL.bat

Any comments, tips, suggestions to improve this code?
Thanks
by chazjn
03 May 2017 11:23
Forum: DOS Batch Forum
Topic: Game: FILL.bat
Replies: 3
Views: 3668

Re: Game: FILL.bat

Ok maybe I should have pasted the code: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION :: set vars SET HEIGHT=10 SET WIDTH=20 SET TICKCOUNT=0 SET FILLCOUNT=0 SET /A CELLCOUNT=%HEIGHT%*%WIDTH% SET DEAD=FALSE SET MINECOUNT=10 SET LIFECOUNT=2 SET MONSTER=FALSE SET MONSTER_CLEAN=FALSE :: set sprites SET SP_H...
by chazjn
29 Apr 2017 17:20
Forum: DOS Batch Forum
Topic: Game: FILL.bat
Replies: 3
Views: 3668

Game: FILL.bat

Hello all, If anyone is interested, here is a batch game I have recently made: m The aim is to fill the grid by visiting every cell, however watch out for 'eaters' that will come and clear the cells. You can drop mines to kill eaters. This is the initial version and I am working to get the screen re...