botv12/launch.cmd
2024-12-18 15:11:14 -03:00

15 lines
211 B
Batchfile

@echo off
:botlaunch
node index.js
call :err_unwrap
timeout /nobreak /t 5 >NUL
goto botlaunch
:err_unwrap
set _err=%ERRORLEVEL%
if %_err% neq 0 (
exit %_err%
)
goto :eof