-
Notifications
You must be signed in to change notification settings - Fork 0
/
2B2T Alert System - Startup.bat
60 lines (50 loc) · 1.31 KB
/
2B2T Alert System - Startup.bat
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@echo off
REM ----------WAITING FOR GAME DISPLAY-----------------------------------------------------------
title 2B2T Alert System - Startup
echo.
echo -----------------------------
echo 2B2T Queue Status Alert
echo -----------------------------
echo.
echo.
echo Program Starting Up...
echo.
echo.
echo Program inspired by:
echo R2bEEaton
echo Program created by:
echo KyGuy2002
echo.
echo Version: 1.0
REM ----------ERRORS-------------------------------------------------------------------
REM -----ERROR1 IF NO LOG FILE-----
IF NOT EXIST %Appdata%\.minecraft\logs\latest.log goto error1
call "2B2T Alert System - Scanner.bat"
exit
REM ----------ERROR CODE RESOURCES----------------------------------------------------------
REM -----ERROR1-----
:error1
cls
echo.
echo -----------------------------
echo 2B2T Queue Status Alert
echo -----------------------------
echo.
echo.
echo ERROR-1:
echo It seems that the log file does
echo not exist. Please ensure
echo you have joined the 2B2T queue
echo server before attempting to launch
echo this program.
echo.
echo.
echo Program inspired by:
echo R2bEEaton
echo Program created by:
echo KyGuy2002
echo.
echo Version: 1.0
echo.
echo Press any key to close.
pause > nul