Search found 3 matches

by ragster66
23 Jan 2018 18:40
Forum: DOS Batch Forum
Topic: placing text on screen
Replies: 2
Views: 2864

placing text on screen

Hi there.. If I type the following
pause
it displays
Press any key to continue
it shows this along the left edge of the screen.... How do get it to display say in mid screen.?

Similarly for this
set /p input=Choice:
the word choice: is on left of screen, how do I get it in mid screen?
Thanks
by ragster66
05 Jan 2018 16:41
Forum: DOS Batch Forum
Topic: Save and load in batch RPG
Replies: 8
Views: 7977

Re: Save and load in batch RPG

The way it is shown in the post is not as i set it, I found it on You tube and the person doing the tutorial showed that it worked for him. It should be like this: @echo off set HP=45 set DEX=20 set money=50 :home echo Your HP is %HP% - Your Dexterity is %DEX% and you have %money% gold coins pause (...
by ragster66
05 Jan 2018 13:42
Forum: DOS Batch Forum
Topic: Save and load in batch RPG
Replies: 8
Views: 7977

Save and load in batch RPG

Hi, I'm a newbie. I need to add a save and load section to my batch RPG. At certain points in the game the player will get the option to save his progress before quitting. Then at a later date Load the save back up and continue where he left off. I have looked at a few "Lets make a batch RPG tutoria...