-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinecraftLauncher.bat
More file actions
52 lines (48 loc) · 1.43 KB
/
MinecraftLauncher.bat
File metadata and controls
52 lines (48 loc) · 1.43 KB
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
@echo off
color 20
title MCBE Launcher by Aura
echo Loading...
timeout /nobreak /t 5 > nul
cls
set MinecraftBedrock.mcshortcut=%temp%\MinecraftBedrock.mcshortcut
:menu
echo 1. Launch Minecraft
set /p 1=
if "%1%"=="1" goto runmc
:runmc
if exist "%userprofile%\Documents\VerifiedImport.mcbe" goto speedy
cls
echo Loading Resources...
IF EXIST msedge.exe start "msedge.exe" "https://download1491.mediafire.com/gno1h2spv74g/x813xnxvv0pbed9/Essential+Client.mcpack"
IF EXIST chrome.exe start "chrome.exe" "https://download1491.mediafire.com/gno1h2spv74g/x813xnxvv0pbed9/Essential+Client.mcpack"
timeout /nobreak /t 15 > nul
cls
echo Quick-starting Minecraft to import Resources... (Note: Do not press anything)
Start "" "Essential Client.mcpack"
timeout /nobreak /t 15 > nul
cls
echo Resources Loaded Sucessfully!
timeout /nobreak /t 1 > nul
cls
echo Cleaning Up Temporary Storage Files...
del /q "%userprofile%\Downloads\Essential Client.mcpack"
timeout /nobreak /t 2 > nul
cls
echo Verifying Resource Values...
echo resourcesloaded>>"%userprofile%\Documents\VerifiedImport.mcbe"
timeout /nobreak /t 3 > nul
:speedy
cls
timeout /nobreak /t 1 > nul
echo Verified Resource Values!
timeout /nobreak /t 1 > nul
cls
echo Full-Starting BRM...
timeout /nobreak /t 2 > nul
cls
echo Exiting in 3 seconds
timeout /nobreak /t 3 > nul
echo RUNMC>>%MinecraftBedrock.mcshortcut%
Start "" "%MinecraftBedrock.mcshortcut%"
cls
exit