13 lines
220 B
Batchfile
13 lines
220 B
Batchfile
|
@echo off
|
||
|
:a
|
||
|
|
||
|
COPY /Y out-debug\samp-re.dll server\plugins\samp-re.dll
|
||
|
COPY /Y out-debug\samp-re.pdb server\plugins\samp-re.pdb
|
||
|
|
||
|
pushd server
|
||
|
"samp-server.exe"
|
||
|
popd
|
||
|
echo :: server exited, restarting in ~3
|
||
|
sleep 3
|
||
|
goto a
|