Search found 4 matches

by SEOS
18 Aug 2013 21:03
Forum: DOS Batch Forum
Topic: Russian Roulette Batch Program I've made
Replies: 1
Views: 3957

Russian Roulette Batch Program I've made

Russian Roulette is a life or death related game using a revolver. How the game goes (for those who don't know) is a small group of people will gather around and place however many bullets in the chamber (most of the time just 1) and then they would spin the revolver and point it against their heads...
by SEOS
09 Aug 2013 11:22
Forum: DOS Batch Forum
Topic: Setting variable limits
Replies: 7
Views: 6708

Re: Setting variable limits

I also thought it was the else command you use.
Maybe not, but thanks a bunch I can now fix alot of errors!
by SEOS
08 Aug 2013 20:49
Forum: DOS Batch Forum
Topic: Setting variable limits
Replies: 7
Views: 6708

Setting variable limits

Hello everyone, I am programming an rpg orientated game. I know how to set variables and change them, I just don't know how to make them have limits. for example: if %health% == 0 goto death This wont work most of the time because enemies do different damage to health that could make it become a neg...
by SEOS
06 Aug 2013 17:12
Forum: DOS Batch Forum
Topic: Preventing false loading
Replies: 1
Views: 2207

Preventing false loading

So I need a bit of help with my batch program. I save like this. ( echo variable1 echo variable2 ) > save.sav I load like this. < save.sav ( set /p variable1= set /p variable2= ) goto town (It's setup like a game) My save and load works but you can load without a sav file and if you do the game wont...