Search found 7 matches
- 27 Jan 2013 09:29
- Forum: DOS Batch Forum
- Topic: Rpg saving/loading messed up
- Replies: 0
- Views: 7488
Rpg saving/loading messed up
Mod Edited - you already have thread here http://www.dostips.com/forum/viewtopic.php?f=3&t=4243
- 26 Jan 2013 17:43
- Forum: DOS Batch Forum
- Topic: My RPG game is messed up(saving and loading)
- Replies: 1
- Views: 3966
My RPG game is messed up(saving and loading)
The saving/loading won't work @echo off title RPG mode 1000 :main cls echo Welcome to the game... echo. echo 1.start echo 2.exit set /p $=enter: if %$% equ 1 goto start if %$% equ 2 exit goto main :start cls setlocal enabledelayedexpansion set /p name=Enter you name: if exist QE%name%sav.dll set loa...
- 04 Nov 2012 08:27
- Forum: DOS Batch Forum
- Topic: RPG game
- Replies: 1
- Views: 2646
RPG game
Kinda works Kinda not!!!! /////////////////////////// @echo off title RPG :main cls echo Welcome to the game... echo (C) CopyRight Marshall Ward echo. echo 1.start echo 2.exit set /p $=enter: if %$% equ 1 goto start if %$% equ 2 exit goto main :start cls setlocal enabledelayedexpansion set /p name =...
- 11 Oct 2012 15:08
- Forum: DOS Batch Forum
- Topic: Roblox card generator
- Replies: 2
- Views: 3618
Roblox card generator
How can I make a batch file that generated 10 random numbers?
- 09 Oct 2012 20:15
- Forum: DOS Batch Forum
- Topic: My batch game is fubar - how come?
- Replies: 6
- Views: 6808
Re: My batch game is fubar - how come?
abc0502 was right i did it so that it wouldnt use the last thing u entered and would be set to 5
- 09 Oct 2012 20:12
- Forum: DOS Batch Forum
- Topic: My batch game is fubar - how come?
- Replies: 6
- Views: 6808
Re: My batch game is fubar - how come?
thanks guys ill have yo look at my script and use all of ur ideas if necessary!
- 08 Oct 2012 19:51
- Forum: DOS Batch Forum
- Topic: My batch game is fubar - how come?
- Replies: 6
- Views: 6808
My batch game is fubar - how come?
Wont work why????? @echo off title RPG :main cls echo Welcome to the game... echo. echo 1.start echo 2.exit set /p $=enter: if %$% equ 1 goto start if %$% equ 2 exit goto main :start cls setlocal enabledelayedexpansion set /p name =Enter you name: if exist QE%name%sav.dll set load=1 goto new :new se...