Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
ошибка при компиляции
#1
Добрый вечер всем форумчанам!
Опишу свою проблему.
Пользуюсь наработками команды l2universe.
Дело в том, что до последнего обновления исходниколв сборка компилилась весьма успешно и без ошибок. Для компиляции сборки пользуюсь оригинальным батником (\Source\L2Universe\trunk\builder\build.bat). Последняя нормально скомпиленная сборка Rev.2057. После апдейта на самую последнюю ревизию (2141) при компиляции (использовании батника) выскакивает ошибка:
Код:
====================
            = CORE COMPILATION =
            ====================

java.lang.ClassNotFoundException: org.apache.tools.ant.Main
        at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
        at org.apache.tools.ant.launch.Launcher.run(Launcher.java:194)
        at org.apache.tools.ant.launch.Launcher.main(Launcher.java:55)

    ========================
    CREATED ZIP FILE:
       [>>   L2J_Infinity.zip   <<]
    IN:
       [ F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\builder ]
После данного сообщения батник говорит, что все скомпиилосмь успешно. На самом деле все проскакивает без каких либо действий. И ядро, и датапак, и коммунити.
Вот код батника рев.2057:
Код:
@echo off
@setlocal
COLOR 17
TITLE L2J - INFINITY COMPILER


:: CORE & DATAPACK folders:
SET CORE_DIR=..\Core
SET DP_DIR=..\DataPack
SET CP_DIR=..\CommunityServer
SET L2J_INF_ZIP_NAME=L2J_Infinity.zip
:: EXAMPLE PATH
:: SET JAVA_PATH="C:\Program Files\Java\jdk1.6.0_21"
SET JAVA_PATH=""

:: ============================================================= ::
:: Options:
::   - ON   = 1
::   - OFF  = 0
:: modify on your own risk
:: PACK ON will create a pack of all archive files in one archive
:: Default: OFF (0)
SET PACK=0
:: DEBUG ON will show only logs on screen
:: Default: OFF (0)
SET DEBUG=0
:: LOGS ON will create log file in logs folder for all compilations
:: Default: OFF (0)
SET LOGS=0
:: C3P0 ON will replace boneCP connection pool to c3p0
:: Default: OFF (0)
set C3P0=0
:: ============================================================= ::
::
SET CORE=%CORE_DIR%\build.xml
SET DATAPACK=%DP_DIR%\build.xml
SET COMMUNITY=%CP_DIR%\build.xml
::
SET cb=0
SET db=0
SET cp=0

IF %C3P0% == 0 GOTO antchecker
::
IF NOT EXIST lib\c3p0\L2DatabaseFactory.java GOTO antchecker
IF NOT EXIST lib\c3p0\c3p0_LICENSE.txt GOTO antchecker
IF NOT EXIST lib\c3p0\c3p0-0.9.1.2.jar GOTO antchecker
IF NOT EXIST lib\c3p0\build.xml GOTO antchecker

COPY /Y lib\c3p0\L2DatabaseFactory.java %CORE_DIR%\java\L2j\Infinity\L2DatabaseFactory.java
COPY /Y lib\c3p0\build.xml %CORE%
COPY /Y lib\c3p0\c3p0_LICENSE.txt %CORE_DIR%\lib\c3p0_LICENSE.txt
COPY /Y lib\c3p0\c3p0-0.9.1.2.jar %CORE_DIR%\lib\c3p0-0.9.1.2.jar
IF EXIST %CORE_DIR%\lib\bonecp-0.6.7.2.jar DEL %CORE_DIR%\lib\bonecp-0.6.7.2.jar
IF EXIST %CORE_DIR%\lib\guava-r06.jar DEL %CORE_DIR%\lib\guava-r06.jar
IF EXIST %CORE_DIR%\lib\junit-3.8.1.jar DEL %CORE_DIR%\lib\junit-3.8.1.jar
IF EXIST %CORE_DIR%\lib\slf4j-api-1.6.99.jar DEL %CORE_DIR%\lib\slf4j-api-1.6.99.jar
IF EXIST %CORE_DIR%\lib\slf4j-simple-1.6.99.jar DEL %CORE_DIR%\lib\slf4j-simple-1.6.99.jar
CLS
::
:antchecker
IF NOT "%ANT_HOME%" =="" GOTO next

:next
if NOT EXIST "%JAVA_HOME%"\lib\tools.jar GOTO check_path
goto gotAntHome

:check_path
if NOT EXIST %JAVA_HOME%\lib\tools.jar GOTO jne
SET JAVA_HOME="%JAVA_PATH%"
goto gotAntHome

:jne
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=
ECHO             ^= ERROR!!! ^=
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
echo     JAVA JDK not exists.
echo     Set path to JAVA JDK into JAVA_PATH in this script file or
echo     set JAVA_HOME variable into system variables.
goto end

:gotAntHome
SET PATH=%CD%\bin;%PATH%
GOTO core_build

:core_build
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO             ^= CORE COMPILATION ^=
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO community_build
IF %LOGS% == 1 GOTO cp1l1
GOTO cp1l0
:cp1l1
IF EXIST %CORE% ( CALL ant.bat -buildfile %CORE% -l logs\core.log&SET cb=1 ) ELSE ( ECHO ERROR !!! %CORE% NOT EXIST&PAUSE>NUL )
GOTO community_build
:cp1l0
IF EXIST %CORE% ( CALL ant.bat -buildfile %CORE%&SET cb=1 ) ELSE ( ECHO ERROR !!! %CORE% NOT EXIST&PAUSE>NUL )
GOTO community_build

:community_build
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^= COMMUNITY COMPILATION ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO datapack_build
IF %LOGS% == 1 GOTO cp2l1
GOTO cp2l0
:cp2l1
IF EXIST %COMMUNITY% ( CALL ant.bat -buildfile %COMMUNITY% -l logs\community.log&SET cp=1 ) ELSE ( ECHO ERROR !!! %COMMUNITY% NOT EXIST&PAUSE>NUL )
GOTO datapack_build
:cp2l0
IF EXIST %COMMUNITY% ( CALL ant.bat -buildfile %COMMUNITY%&SET cp=1 ) ELSE ( ECHO ERROR !!! %COMMUNITY% NOT EXIST&PAUSE>NUL )
GOTO datapack_build

:datapack_build
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^= DATAPACK COMPILATION ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO log_info
IF %LOGS% == 1 GOTO cp3l1
GOTO cp3l0
:cp3l1
IF EXIST %DATAPACK% ( CALL ant.bat -buildfile %DATAPACK% -l logs\datapack.log&SET db=1 ) ELSE ( ECHO ERROR !!! %DATAPACK% NOT EXIST&PAUSE>NUL )
GOTO log_info
:cp3l0
IF EXIST %DATAPACK% ( CALL ant.bat -buildfile %DATAPACK%&SET db=1 ) ELSE ( ECHO ERROR !!! %DATAPACK% NOT EXIST&PAUSE>NUL )
GOTO log_info

:log_info
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^=    L2J - INFINITY    ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
GOTO check_b1

:check_b1
IF %DEBUG% == 1 GOTO build_succ_1
IF %cb% == 0 GOTO build_unsucc_1
GOTO build_succ_1

:check_b2
IF %DEBUG% == 1 GOTO build_succ_2
IF %cp% == 0 GOTO build_unsucc_2
GOTO build_succ_2

:check_b3
IF %DEBUG% == 1 GOTO build_succ_3
IF %db% == 0 GOTO build_unsucc_3
GOTO build_succ_3

:check_pack
IF %PACK% == 0 GOTO end
GOTO full_pack

:full_pack
IF %DEBUG% == 1 GOTO fp1
IF EXIST %L2J_INF_ZIP_NAME% DEL %L2J_INF_ZIP_NAME%

IF NOT EXIST 7za.exe GOTO c1
7za.exe a %L2J_INF_ZIP_NAME% ..\builds\core\Core.zip ..\builds\community\L2jInfinity-community.zip ..\builds\datapack\DataPack.zip>NUL
GOTO fp1

:c1
IF NOT EXIST bin\7za.exe GOTO end
bin\7za.exe a %L2J_INF_ZIP_NAME% ..\builds\core\Core.zip ..\builds\community\L2jInfinity-community.zip ..\builds\datapack\DataPack.zip>NUL
GOTO fp1



:fp1
ECHO.
ECHO     ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO     CREATED ZIP FILE:
ECHO        [^>^>   %L2J_INF_ZIP_NAME%   ^<^<]
ECHO     IN:
ECHO        [ %CD% ]
GOTO end

:build_succ_1
ECHO     [ + ] CORE COMPILED SUCCESSFULLY
GOTO check_b2

:build_unsucc_1
ECHO     [ - ] WAS TROUBLES WITH COMPILE CORE SOURCES
GOTO check_b2

:build_succ_2
ECHO     [ + ] COMMUNITY COMPILED SUCCESSFULLY
GOTO check_b3

:build_unsucc_2
ECHO     [ - ] WAS TROUBLES WITH COMPILE COMMUNITY SOURCES
GOTO check_b3

:build_succ_3
ECHO     [ + ] DATAPACK COMPILED SUCCESSFULLY
GOTO check_pack

:build_unsucc_3
ECHO     [ - ] WAS TROUBLES WITH COMPILE DATAPACK SOURCES
GOTO check_pack

:full_pack_err
ECHO     [ - ] WAS TROUBLES WITH FULL PACK CREATE
GOTO end

:end
PAUSE>NUL

Вот код батника нового - рев.2141
Код:
@echo off
@setlocal
COLOR 17
TITLE L2J - UNIVERSE COMPILER


:: CORE & DATAPACK folders:
SET CORE_DIR=..\Core
SET DP_DIR=..\DataPack
SET CP_DIR=..\CommunityServer
SET L2J_UNV_ZIP_NAME=L2J_Universe.zip
:: EXAMPLE PATH
:: SET JAVA_PATH="C:\Program Files\Java\jdk1.6.0_21"
SET JAVA_PATH=""

:: ============================================================= ::
:: Options:
::   - ON   = 1
::   - OFF  = 0
:: modify on your own risk
:: PACK ON will create a pack of all archive files in one archive
:: Default: OFF (0)
SET PACK=0
:: DEBUG ON will show only logs on screen
:: Default: OFF (0)
SET DEBUG=0
:: LOGS ON will create log file in logs folder for all compilations
:: Default: OFF (0)
SET LOGS=0
:: C3P0 ON will replace boneCP connection pool to c3p0
:: Default: OFF (0)
set C3P0=0
:: ============================================================= ::
::
SET CORE=%CORE_DIR%\build.xml
SET DATAPACK=%DP_DIR%\build.xml
SET COMMUNITY=%CP_DIR%\build.xml
::
SET cb=0
SET db=0
SET cp=0

IF %C3P0% == 0 GOTO antchecker
::
IF NOT EXIST lib\c3p0\L2DatabaseFactory.java GOTO antchecker
IF NOT EXIST lib\c3p0\c3p0_LICENSE.txt GOTO antchecker
IF NOT EXIST lib\c3p0\c3p0-0.9.1.2.jar GOTO antchecker
IF NOT EXIST lib\c3p0\build.xml GOTO antchecker

COPY /Y lib\c3p0\L2DatabaseFactory.java %CORE_DIR%\java\l2\universe\L2DatabaseFactory.java
COPY /Y lib\c3p0\build.xml %CORE%
COPY /Y lib\c3p0\c3p0_LICENSE.txt %CORE_DIR%\lib\c3p0_LICENSE.txt
COPY /Y lib\c3p0\c3p0-0.9.1.2.jar %CORE_DIR%\lib\c3p0-0.9.1.2.jar
IF EXIST %CORE_DIR%\lib\bonecp-0.6.7.2.jar DEL %CORE_DIR%\lib\bonecp-0.6.7.2.jar
IF EXIST %CORE_DIR%\lib\guava-r06.jar DEL %CORE_DIR%\lib\guava-r06.jar
IF EXIST %CORE_DIR%\lib\junit-3.8.1.jar DEL %CORE_DIR%\lib\junit-3.8.1.jar
IF EXIST %CORE_DIR%\lib\slf4j-api-1.6.99.jar DEL %CORE_DIR%\lib\slf4j-api-1.6.99.jar
IF EXIST %CORE_DIR%\lib\slf4j-simple-1.6.99.jar DEL %CORE_DIR%\lib\slf4j-simple-1.6.99.jar
CLS
::
:antchecker
IF NOT "%ANT_HOME%" =="" GOTO next

:next
if NOT EXIST "%JAVA_HOME%"\lib\tools.jar GOTO check_path
goto gotAntHome

:check_path
if NOT EXIST %JAVA_HOME%\lib\tools.jar GOTO jne
SET JAVA_HOME="%JAVA_PATH%"
goto gotAntHome

:jne
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=
ECHO             ^= ERROR!!! ^=
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
echo     JAVA JDK not exists.
echo     Set path to JAVA JDK into JAVA_PATH in this script file or
echo     set JAVA_HOME variable into system variables.
goto end

:gotAntHome
SET PATH=%CD%\bin;%PATH%
GOTO core_build

:core_build
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO             ^= CORE COMPILATION ^=
ECHO             ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO community_build
IF %LOGS% == 1 GOTO cp1l1
GOTO cp1l0
:cp1l1
IF EXIST %CORE% ( CALL ant.bat -buildfile %CORE% -l logs\core.log&SET cb=1 ) ELSE ( ECHO ERROR !!! %CORE% NOT EXIST&PAUSE>NUL )
GOTO community_build
:cp1l0
IF EXIST %CORE% ( CALL ant.bat -buildfile %CORE%&SET cb=1 ) ELSE ( ECHO ERROR !!! %CORE% NOT EXIST&PAUSE>NUL )
GOTO community_build

:community_build
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^= COMMUNITY COMPILATION ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO datapack_build
IF %LOGS% == 1 GOTO cp2l1
GOTO cp2l0
:cp2l1
IF EXIST %COMMUNITY% ( CALL ant.bat -buildfile %COMMUNITY% -l logs\community.log&SET cp=1 ) ELSE ( ECHO ERROR !!! %COMMUNITY% NOT EXIST&PAUSE>NUL )
GOTO datapack_build
:cp2l0
IF EXIST %COMMUNITY% ( CALL ant.bat -buildfile %COMMUNITY%&SET cp=1 ) ELSE ( ECHO ERROR !!! %COMMUNITY% NOT EXIST&PAUSE>NUL )
GOTO datapack_build

:datapack_build
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^= DATAPACK COMPILATION ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
IF %DEBUG% == 1 PAUSE>NUL&GOTO log_info
IF %LOGS% == 1 GOTO cp3l1
GOTO cp3l0
:cp3l1
IF EXIST %DATAPACK% ( CALL ant.bat -buildfile %DATAPACK% -l logs\datapack.log&SET db=1 ) ELSE ( ECHO ERROR !!! %DATAPACK% NOT EXIST&PAUSE>NUL )
GOTO log_info
:cp3l0
IF EXIST %DATAPACK% ( CALL ant.bat -buildfile %DATAPACK%&SET db=1 ) ELSE ( ECHO ERROR !!! %DATAPACK% NOT EXIST&PAUSE>NUL )
GOTO log_info

:log_info
CLS
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO           ^=    L2J - INFINITY    ^=
ECHO           ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO.
GOTO check_b1

:check_b1
IF %DEBUG% == 1 GOTO build_succ_1
IF %cb% == 0 GOTO build_unsucc_1
GOTO build_succ_1

:check_b2
IF %DEBUG% == 1 GOTO build_succ_2
IF %cp% == 0 GOTO build_unsucc_2
GOTO build_succ_2

:check_b3
IF %DEBUG% == 1 GOTO build_succ_3
IF %db% == 0 GOTO build_unsucc_3
GOTO build_succ_3

:check_pack
IF %PACK% == 0 GOTO end
GOTO full_pack

:full_pack
IF %DEBUG% == 1 GOTO fp1
IF EXIST %L2J_UNV_ZIP_NAME% DEL %L2J_UNV_ZIP_NAME%

IF NOT EXIST 7za.exe GOTO c1
7za.exe a %L2J_UNV_ZIP_NAME% ..\builds\core\Core.zip ..\builds\community\L2jUniverse-community.zip ..\builds\datapack\DataPack.zip>NUL
GOTO fp1

:c1
IF NOT EXIST bin\7za.exe GOTO end
bin\7za.exe a %L2J_UNV_ZIP_NAME% ..\builds\core\Core.zip ..\builds\community\L2jUniverse-community.zip ..\builds\datapack\DataPack.zip>NUL
GOTO fp1



:fp1
ECHO.
ECHO     ^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=^=
ECHO     CREATED ZIP FILE:
ECHO        [^>^>   %L2J_UNV_ZIP_NAME%   ^<^<]
ECHO     IN:
ECHO        [ %CD% ]
GOTO end

:build_succ_1
ECHO     [ + ] CORE COMPILED SUCCESSFULLY
GOTO check_b2

:build_unsucc_1
ECHO     [ - ] WAS TROUBLES WITH COMPILE CORE SOURCES
GOTO check_b2

:build_succ_2
ECHO     [ + ] COMMUNITY COMPILED SUCCESSFULLY
GOTO check_b3

:build_unsucc_2
ECHO     [ - ] WAS TROUBLES WITH COMPILE COMMUNITY SOURCES
GOTO check_b3

:build_succ_3
ECHO     [ + ] DATAPACK COMPILED SUCCESSFULLY
GOTO check_pack

:build_unsucc_3
ECHO     [ - ] WAS TROUBLES WITH COMPILE DATAPACK SOURCES
GOTO check_pack

:full_pack_err
ECHO     [ - ] WAS TROUBLES WITH FULL PACK CREATE
GOTO end

:end
PAUSE>NUL

Вот лог изменений апдейта. (батник был обновлен до состояния ревизии, а не оставлен Merged)
[CODE]Command: Update
Merged: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\builder\build.bat
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\event\pcBang.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\event\TownWar.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\Character.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\loginserver.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\settings\server.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\settings\rates.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\Custom.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\config\CharacterVoiceCommand.properties
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\Config.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\teleports
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\vehicles
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\custom
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\village_master
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\instances\PailakaDevilsLegacy.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\instances\PailakaInjuredDragon.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\ai\individual\Beleth.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\TullyWorkshop.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Leodas.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\LevelingSystem.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Sandstorm.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\AnomicFoundry.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\OutpostCapitan.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\NativeQuarySlaves.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\RuinsGhosts.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Shadai.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\MarketTown.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\SteelCitadel.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Engine.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Budenka.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Natives.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Falk.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Outpost.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\TowerOfNaia.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Kief.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Bernarde.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Quarry.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Buron.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Hude.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Solomon.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Jude.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Remnants.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Chimeras.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\scripts\hellbound\Slaves.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\ExternalConfig.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\serverpackets\L2GameServerPacket.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\serverpackets\ExKrateiMatchCCRecord.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\serverpackets\PetitionVotePacket.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\serverpackets\ShowBoard.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\serverpackets\ExKrateiMatchCCMyRecord.java
Merged: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\EnterWorld.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\AbstractEnchantPacket.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\L2GameClientPacket.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\RequestRestartPoint.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\RequestPetitionFeedback.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\clientpackets\RequestActionUse.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\network\L2GamePacketHandler.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\Shutdown.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\L2Summon.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2BabyPetInstance.java
Merged: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2TeleporterInstance.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2KrateisCubeManagerInstance.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2PcInstance.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2PetInstance.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\instance\L2SummonInstance.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\L2Playable.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\L2Attackable.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\actor\L2Character.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\L2World.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\CharEffectList.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\ChanceCondition.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\L2Effect.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\L2Skill.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\SubclassSeparation.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\ChanceSkillList.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\itemcontainer\Inventory.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\zone\type\L2BossZone.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\zone\type\L2TownZone.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\AutoVoteRewardHandler.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\Castle.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\events\TvTEvent.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\events\TvTEventTeam.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\Siege.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\model\entity\TownWarManager.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectBlockResurrection.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectCpDamPercent.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectCancelDebuff.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectNegate.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectMpConsumePerLevel.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectHealOverTime.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\effects\EffectCancel.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\DocumentBase.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\l2skills\L2SkillSummon.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\l2skills\L2SkillTeleport.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\skills\Formulas.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\GameServer.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\SubclassSeparationHandler.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\ai\L2AttackableAI.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\taskmanager\tasks\TaskRecom.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\taskmanager\tasks\TaskHellboundSave.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\effects\EffectTemplate.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\skills\L2SkillType.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\item\L2Weapon.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\item\L2EtcItem.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\item\L2Item.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\templates\item\L2Armor.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\instancemanager\QuestManager.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\instancemanager\KrateisCubeManager.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\instancemanager\HellboundManager.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\instancemanager\PetitionManager.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\datatables\MultiSell.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\datatables\ClanTable.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\datatables\CharSummonTable.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\communitybbs\Manager\HomeBBSManager.java
Merged: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\gameserver\util\L2Universe.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\java\l2\universe\util\ValueSortMap.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\launcher\L2 LoginServer.launch
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\launcher\L2 GameServer.launch
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\launcher\L2 AccountManager.launch
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\dist\GSRegister.exe
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\lib\mysql-connector-java-5.1.15-bin.jar
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\lib\mysql-connector-java-5.1.16-bin.jar
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\Core\build.xml
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\locations.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\droplist.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\pets.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\grandboss_data.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\castle.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\character_summon_skills_save
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\character_pet_skills_save.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\spawnlist.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\minions.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\character_summons.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\npcaidata.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\npcskills.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\admin_command_access_rights.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\raidboss_spawnlist.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\character_summon_skills_save.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\castle_door.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\npc.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\gs_sql\clanhall_siege_guards.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\locations.sql.err
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\admin_command_access_rights.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\locations.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\castle_door.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\server_variables.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\npc.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\npcaidata.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_consumable_id.sql
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\clanhall_siege_guards.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\spawnlist.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_scheme_list.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\droplist.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_configuration.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\subclass_separation.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_config_sections.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\npcCharData.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_scheme_contents.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\petition_feedback.sql
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\hellbound_data.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\buffer_buff_list.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\sql\l2universe\added\hellbound_spawnlist.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\tools\full_install.sql
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\tools\database_installer.sh
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\skillhandlers\Disablers.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\skillhandlers\Cancel.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\skillhandlers\Continuous.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\skillhandlers\Fishing.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\skillhandlers\StealBuffs.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\bypasshandlers\BloodAlliance.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\admincommandhandlers\AdminHellbound.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\admincommandhandlers\AdminTownWar.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\admincommandhandlers\AdminBuffs.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\MasterHandler.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\voicedcommandhandlers\HellboundVoiced.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\handlers\voicedcommandhandlers\Hellbound.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\HellboundIsland
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\warpgate-locked.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32314.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32315.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32316.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32317.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32318.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\32319.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\Warpgate.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\teleports\Warpgate\warpgate-no.htm
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\mods\eventmodRace\eventmodRace.java
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\25_HidingBehindTheTruth
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\TullyWorkshop
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\24_InhabitantsOfTheForrestOfTheDead
Deleted: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\307_ControlDeviceOfTheGiants
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\999_T1Tutorial\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\10278_MutatedKaneusHeine\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\169_NightmareChildren\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\115_TheOtherSideOfTruth\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\238_SuccesFailureOfBusiness\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\228_TestOfMagus\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\10271_TheEnvelopingDarkness\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\73_SagaOfTheDuelist\tunatun_01.htm
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\188_Seal_Removal\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\225_TestOfSearcher\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\219_TestimonyOfFate\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\232_TestOfLord\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\103_SpiritOfCraftsman\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\167_DwarvenKinship\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\164_BloodFiend\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\121_PavelTheGiants\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\214_TrialOfScholar\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\136_MoreThanMeetsTheEye\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\239_WontYouJoinUs\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\220_TestimonyOfGlory\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\119_LastImperialPrince\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\158_SeedOfEvil\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\170_DangerousAllure\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\191_Vain_Conclusion\__init__.py
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-10.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-04a.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-05a.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-05b.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-07.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-05c.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-08.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-09.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\32711-09a.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_307_ControlDeviceOfTheGiants\_307_ControlDeviceOfTheGiants.java
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\216_TrialOfGuildsman\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\109_InSearchOfTheNest\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\237_WindsOfChange\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\190_Lost_Dream\__init__.py
Updated: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\143_FallenAngelRequestOfDusk\__init__.py
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-20.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31534-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-21.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31534-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\__init__.py
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31533-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31533-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-00.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-07.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-08.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-09.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\_025_HidingBehindTheTruth.java
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31536-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-07.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31349-10.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-08.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-07.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-09.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-08.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-09.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-07.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-08.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-09.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-10.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31531-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-11.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31531-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-10.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-12.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31531-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-11.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-13.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-12.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-01.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-14.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-13.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-02.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-15.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-14.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-15.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31522-16.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-10.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-03.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-16.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-11.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-04.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-12.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-17.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-05.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-13.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-18.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31535-06.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-14.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31532-19.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-15.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-16.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-17.htm
Added: F:\Server install\Server Install\comlile\WORK\Source\L2Universe\trunk\DataPack\data\scripts\quests\_025_HidingBehindTheTruth\31348-18.htm
Updated: F:\Server install\Server Install\comlile\WORK\Source\...
Ответ
#2
скомпилируйте без батника... а то нифига непонятно...

Добавлено через 1 минуту
Код:
java.lang.ClassNotFoundException: org.apache.tools.ant.Main
выкиньте нафиг этот батник... компильте без него... он неможет найти антовскую библиотеку...
Ответ
#3
linliss Написал:скомпилируйте без батника... а то нифига непонятно...

Добавлено через 1 минуту
Код:
java.lang.ClassNotFoundException: org.apache.tools.ant.Main
выкиньте нафиг этот батник... компильте без него... он неможет найти антовскую библиотеку...

но раньше же он находил. Скомпилить без него пока не хватает знаний и умения (как показали и научили пока работаем так, да и сам спортивный интерес как можно это исправить).
ревизия 2057 находила эту библиотеку, почему 2141 не может найти. В общем как это можно вылечить ручками?
Никаких фундаментальных изменений в батниках тоже не обнаружено при сравнении. А вот такая закавыка.
Ответ
#4
скачал их сурсы... запустил build.bat... все успешно скомпилировалось... ищите ошибки у себя..
Ответ
#5
avemaria, как вариант сделайте сверку ваших сырцов с теми что на SVN команды, может и найдёте источник проблемы.
Ещё как вариант перепроверьте значения системных переменных и пути к файлам ANT'а
Ответ
#6
Спасибо всем. Проблема решена. Ошибка была в путях к сырцам. Батник не воспринимает кириллицу. Другими словами апдейтная копия сырцов была в папке "Копия Sourse". Исправили на Sourse1 и батник заработал.
Тему можно закрыть
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  Что за ошибка? serg5777 22 9,279 07-11-2023, 09:49 PM
Последний пост: ntking
  Ошибка Cannot read field "race" valdemart123 0 1,085 12-04-2021, 04:44 AM
Последний пост: valdemart123
  При запуске game server на сайте (sw13) ошибка mysql 0 AndreDeiu 1 1,376 09-27-2020, 11:32 PM
Последний пост: Lord_Gothic
  Ошибка геймсервера zane 9 2,621 04-27-2018, 12:28 PM
Последний пост: DmnC
  Ошибка загрузки гейм сервера zane 5 2,073 04-17-2018, 08:03 PM
Последний пост: zane
  Ошибка телепорта Rork 1 1,302 03-02-2018, 03:05 PM
Последний пост: Gaikotsu
  Ошибка с ГМ шопом silok 1 1,342 01-11-2018, 07:36 AM
Последний пост: Narsell
  Ошибка PWSOFT Ananim 0 1,399 07-07-2017, 11:42 AM
Последний пост: Ananim
  Ошибка _aveList; knaif 1 1,427 06-22-2017, 03:07 PM
Последний пост: Trimius
  Ошибка KastaMeN 1 1,849 06-16-2017, 11:32 PM
Последний пост: Mangol

Перейти к форуму:


Пользователи, просматривающие эту тему: 3 Гость(ей)