-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver_GUI.disabled
More file actions
32 lines (32 loc) · 889 Bytes
/
Copy pathserver_GUI.disabled
File metadata and controls
32 lines (32 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
cd ./bin
if exist servergui.exe (
start servergui.exe
) else (
echo.
echo.
echo.
echo.
echo.
echo.
echo ##############################################################################
echo ## ##
echo ## File 'servergui.exe' is missing. ##
echo ## ##
echo ## Please download it from http://sourceforge.net/projects/rorserver/files/ ##
echo ## and extract the archive inside the 'bin' directory. ##
echo ## ##
echo ##############################################################################
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
pause
)
cd ..