botv12/launch.cmd

16 lines
211 B
Batchfile
Raw Permalink Normal View History

2024-10-20 14:22:22 -04:00
@echo off
2024-12-18 15:04:53 -03:00
2024-10-20 14:22:22 -04:00
:botlaunch
2024-12-18 15:04:53 -03:00
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