Recommended Posts

Hey guys, I'm making this patch for this game server.

Basically, what it does is, if you start it it will give you two choices

Now, I was wondering what operating system supports batch files? (.bat I guess).

I know XP Home does, but what about the eariler ones?

Mainly, 98, ME,2000 and the new vista.

Thanks, btw if anyone wants to make the batch file for me it will be great (I know only basic things about it)

Basically, I want it do this:

Blah Blah Some Text Here. I will add the text. Blah Blah. Blah Blah.

Which server do you want to play in?

1) Server One

2) Server Two

If they click Server One, then

server1.exe
starts up

If they click Server Two, then

server2.exe
starts up

Thanks guys

Btw, server1 and server.2 will be in the same folder as the batch file.

Edited by Martint
Link to post
Share on other sites

Something like this (should work on xp and 2k):

@echo off
color 1e
TITLE Server Select



echo ºººººººººººººººººººººººººººººººººººººººººº
echo º º
echo º Sever Select º
echo º ------- º
echo º º
echo º 1. Run º
echo º º
echo º 2. Exit º
echo º º
echo º º
echo ºººººººººººººººººººººººººººººººººººººººººº
echo.

set /p start={1,2,}
if '%start%'=='1' GOTO RUN
if '%start%'=='2' GOTO EXIT



:Exit
exit

:RUN
cls
echo Select Server:
echo.
echo 1. Server One
echo 2. Server Two
echo.

set /p server={1,2,}
if '%server%'=='1' GOTO one
if '%server%'=='2' GOTO two

cls

:one
start server1.exe
exit

:two
start server2.exe
exit

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...