启动配置工具.bat 624 B

12345678910111213141516171819202122232425
  1. @echo off
  2. cd /d "%~dp0"
  3. echo 游戏配置管理工具 - 多配置表支持
  4. echo Starting GUI tool...
  5. echo.
  6. python config_manager.py
  7. if errorlevel 1 (
  8. py config_manager.py
  9. if errorlevel 1 (
  10. python3 config_manager.py
  11. if errorlevel 1 (
  12. echo.
  13. echo Cannot start Python environment
  14. echo Please ensure Python is installed and added to PATH
  15. echo Or run manually: py config_manager.py
  16. echo.
  17. echo If pandas library is not installed, run:
  18. echo pip install pandas openpyxl
  19. echo.
  20. pause
  21. )
  22. )
  23. )