| 1234567891011121314151617 |
- @echo off
- setlocal enableextensions
- cd /d "%~dp0"
- echo Starting Server...
- cd server
- start cmd /c "run.bat"
- cd ..
- echo Waiting for 3 seconds to ensure server starts properly...
- timeout /t 3 /nobreak >nul
- echo Starting Client...
- cd client
- start cmd /c "run.bat"
- cd ..
- echo All processes started.
- timeout /t 3 /nobreak >nul
|