File size: 843 Bytes
4c75d73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
@echo off
REM MMOP Second Try - Windows Setup Script
REM This script sets up the MMORPG environment on Windows
echo.
echo ========================================
echo MMOP Second Try - Setup Script
echo ========================================
echo.
REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8 or higher from python.org
pause
exit /b 1
)
echo Python found. Starting setup...
echo.
REM Run the Python setup script
python setup.py
echo.
echo ========================================
echo Setup completed!
echo.
echo To run the MMORPG:
echo python app.py
echo.
echo Then open your browser to the displayed URL
echo ========================================
echo.
pause
|