-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.bat
55 lines (51 loc) · 1.1 KB
/
launcher.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
@echo off
title POE/POB/TradeMacro Launcher
echo Multi Launcher V1.0 for POE
echo Created by Sylvian Brunet
echo Inspired by "https://perishablepress.com/" tutorials
echo.
timeout 1 > NUL
echo =============================================
timeout 1 > NUL
echo Starting Process ..
echo.
timeout 1 > NUL
echo|set /p="Searching for Path Of Exile ShortCut .."
timeout 1 > NUL
if exist "PathOfExile.lnk" (
echo find!
echo Path of Exile launch in progress ...
start PathOfExile
) else (
echo not find!
pause
)
echo.
echo|set /p="Searching for Path Of Building ShortCut .."
timeout 1 > NUL
if exist "PathOfBuilding.lnk" (
echo find!
echo Path of Building launch in progress ...
start PathOfBuilding
) else (
echo not find!
pause
)
echo.
echo|set /p="Searching for TradeMacro ShortCut .."
timeout 1 > NUL
if exist "TradeMacro.lnk" (
echo find!
echo TradeMacro launch in progress ...
start TradeMacro
) else (
echo not find!
pause
)
echo.
timeout 1 > NUL
echo Ending Process ..
timeout 1 > NUL
echo =============================================
timeout 1 > NUL
exit