startSQLAccountManager.bat 696 B

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