Hi everyone, long time reader newbie poster. :moo:
First of all great job splashdamage on a awesome game and site.
The state of online gaming today is a lot more enjoyable with “team mates” doing an objective, rarther than a group of people with the same goal.
Ok now after reading this forum for quite awhile I’ve learnt there are some very smart people floating round here.
So im chasing a little help with a batch file, Ive never written one before so excuse me if I’ve missed a basic step.
It was to be a simple file that, when run would display a list of options with a corresponding number. All was fine untill I reached option 10, putting in 10 (one zero) would relaunch option 1.
heres the offending part of the script,
@echo off
:start
cls
set /p userinp=choose a number(1-85):
set userinp=%userinp:~0,1%
if "%userinp%"=="1" goto 1
if "%userinp%"=="2" goto 2
if "%userinp%"=="3" goto 3
if "%userinp%"=="4" goto 4
if "%userinp%"=="5" goto 5
if "%userinp%"=="6" goto 6
if "%userinp%"=="7" goto 7
if "%userinp%"=="8" goto 8
if "%userinp%"=="9" goto 9
if "%userinp%"=="10" goto 10
if "%userinp%"=="11" goto 11
if "%userinp%"=="12" goto 12
Now I have tried the obvious addition of a 0 infront of all numbers 1-9 but no luck
Any ideas people?
Im not gonna be to happy if its only able to go up to 9, I got 85 doh.
Thanks in advance for any help & if this is too offtopic then please remove.

.