8 lines
113 B
Batchfile
8 lines
113 B
Batchfile
|
@echo off
|
||
|
:botlaunch
|
||
|
node index.js
|
||
|
if %errorlevel%==1 (
|
||
|
exit
|
||
|
)
|
||
|
timeout /nobreak /t 5 > nul
|
||
|
goto botlaunch
|