Chris4K's picture
Upload 195 files
4c75d73 verified
@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