startSQLAccountManager.bat 684 B

12345678910111213141516171819202122
  1. @echo off
  2. title L2J - SQL Account Manager
  3. color 17
  4. java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*;l2jlogin.jar com.l2jserver.tools.accountmanager.SQLAccountManager
  5. if %errorlevel% == 0 (
  6. echo.
  7. echo Execution successful
  8. echo.
  9. ) else (
  10. echo.
  11. echo An error has occurred while running the L2J Account Manager!
  12. echo.
  13. echo Possible reasons for this to happen:
  14. echo.
  15. echo - Missing .jar files or ../libs directory.
  16. echo - MySQL server not running or incorrect MySQL settings:
  17. echo check ./config/loginserver.properties
  18. echo - Wrong data types or values out of range were provided:
  19. echo specify correct values for each required field
  20. echo.
  21. )
  22. pause