Перейти к содержанию
Авторизация  
DenisPavlovich

[Help][Core] Дисконект При Движениях

Рекомендуемые сообщения

когда я захожу в игру, то стоит мне сделать какое-либо действие, меня дисконнектит, а ГС ругается на то, что я отправляю слишком много неизвестных пакетов =\

 

Lasteam HF. Привязку снял(вроде, не знаю как проверить)

 

[18:18:30] WARN Too many client unknown packets, connection closed : IN_GAME IP
: 91.228.31.115 Account: keni3111 Player : sad[268477072]

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Клиент чистый скачай

 

До этого запускал на 127.0.0.1 - на этом же клиенте, не было дисконнектов

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

L2GamePacketHandler посмотрите тут.

 

А что там может быть-то? при 127.0.0.1 - было все норм, потом начал отвязывать.

Удалил от туда

 

if(!client.SESSION_OK) { // Проверяем простановку глобального флага Сессия в порядке
System.exit(0);
return null; 

 

теперь такие дела.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Все что я делал - это:

 

model/World.java

 

удалил:


public static PlayersInWorld _players = new PlayersInWorld()
{
public void storePlayer(GameObject player)
{
System.exit(0);
}
public void removePlayer(GameObject player)
{
System.exit(0);
}
public Player get(int objId)
{
return null;
}
@Override
public void run()
{
System.exit(0);
}
};

 

 

 

удалил все кроме _log.info...

 

 

public static void init()
{
try
{
String libname = "l2ftlic";
 if(System.getProperty("os.arch").contains("64"))
 libname+="64";
System.loadLibrary(libname);
prepareWorld();
}
catch(Error e)
{
System.exit(0);
return;
}
_log.info("L2World: Creating regions: [" + (REGIONS_X + 1) + "][" + (REGIONS_Y + 1) + "][" + (REGIONS_Z + 1) + "].");

}

 

 

 

 

заменил

 public static void prepare() {
_players.run();
}

на

 

 public static Player getPlayer(int objId)
{
return GameObjectsStorage.getPlayer(objId);
} 

 

 

 

удалил.

private static native void prepareWorld();

 

 

 

в пакет хендлере удаляем

удалил

 

if(!client.SESSION_OK) { // Проверяем простановку глобального флага Сессия в порядке

System.exit(0);

return null;

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Я так понимаю, что это декомпил?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

попробуй логировать opcod пакетов.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

попробуй логировать opcod пакетов.

 

что такое opcod?

 

P.S. я не так давно начал работать с исходами(именно с ними, яву я долго учил)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

откройте класс

L2GamePacketHandler

там будет что-то вроде такого

int opcode = buf.get() & 0xFF;

ниже добавте

System.out.println(Integer.toHexString(opcode));

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

откройте класс

L2GamePacketHandler

там будет что-то вроде такого

int opcode = buf.get() & 0xFF;

ниже добавте

System.out.println(Integer.toHexString(opcode));

 

Про opcode там нету ни слова.

Такое есть

int id = buf.get() & 0xFF;

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

ну это тоже самое просто переменная по другому называется.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

ну это тоже самое просто переменная по другому называется.

 

 

А, ну мало ли:)

Добавил, компилю.

Выложить лог компила?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

 

init:

 

compile-commons:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 84 source files to D:\eclipse\Lineage BETA\HF\build\classes

[echo] Protecting Common

[echo] Protecting Common Done

 

commons-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-commons.jar

 

compile-authserver:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 59 source files to D:\eclipse\Lineage BETA\HF\build\classes

[echo] Protecting AuthServer

[echo] Protecting AuthServer Done

 

authserver-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-loginserver.jar

 

authserver:

 

compile-gameserver:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 1730 source files to D:\eclipse\Lineage BETA\HF\build\classes

[javac] Note: Some input files use or override a deprecated API.

[javac] Note: Recompile with -Xlint:deprecation for details.

[javac] Note: Some input files use unchecked or unsafe operations.

[javac] Note: Recompile with -Xlint:unchecked for details.

[echo] Protecting GameServer

[echo] Protecting GameServer Done

 

gameserver-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-gameserver.jar

 

gameserver:

 

dist:

 

BUILD SUCCESSFUL

Total time: 1 minute 17 seconds

 

 

 

Buildfile: D:\eclipse\Lineage BETA\HF\build-core.xml

init:

compile-commons:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 84 source files to D:\eclipse\Lineage BETA\HF\build\classes

[echo] Protecting Common

[echo] Protecting Common Done

commons-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-commons.jar

compile-authserver:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 59 source files to D:\eclipse\Lineage BETA\HF\build\classes

[echo] Protecting AuthServer

[echo] Protecting AuthServer Done

authserver-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-loginserver.jar

authserver:

compile-gameserver:

[delete] Deleting directory D:\eclipse\Lineage BETA\HF\build\classes

[mkdir] Created dir: D:\eclipse\Lineage BETA\HF\build\classes

[javac] Compiling 1730 source files to D:\eclipse\Lineage BETA\HF\build\classes

[javac] Note: Some input files use or override a deprecated API.

[javac] Note: Recompile with -Xlint:deprecation for details.

[javac] Note: Some input files use unchecked or unsafe operations.

[javac] Note: Recompile with -Xlint:unchecked for details.

[echo] Protecting GameServer

[echo] Protecting GameServer Done

gameserver-jar:

[exec] Execute failed: java.io.IOException: Cannot run program "svnversion": CreateProcess error=2, ?? ??????? ????? ????????? ????

[jar] Building jar: D:\eclipse\Lineage BETA\HF\build\l2ft-gameserver.jar

gameserver:

dist:

BUILD SUCCESSFUL

Total time: 1 minute 30 seconds

 

Изменено пользователем DenisPavlovich

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Логи с ГСа а не с компила!!

вот сейчас на этом ядре запустите и вам в ГС будет ити лог.

Изменено пользователем iceman

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Та же самая ошибка. Вот полностью лог ГС java

 

[25.02.13 01:01:29:655] INFO gameserver.GameServer: =================================================

[25.02.13 01:01:29:662] INFO gameserver.GameServer: Revision: ................ ${build.revision}

[25.02.13 01:01:29:663] INFO gameserver.GameServer: Build date: .............. 2013.02.24 21:25

[25.02.13 01:01:29:664] INFO gameserver.GameServer: Compiler version: ........ 1.7.0_11-b21 (Oracle Corporation)

[25.02.13 01:01:29:664] INFO gameserver.GameServer: =================================================

[25.02.13 01:01:30:219] INFO gameserver.Config: Abuse: Loaded 18 abuse words.

[25.02.13 01:01:30:313] INFO gameserver.Config: Gameserver Version: ${build.revision}, build date: 2013.02.05 14:12

[25.02.13 01:01:31:139] INFO idfactory.IdFactory: IdFactory: Clear characters online status.

[25.02.13 01:01:31:236] INFO idfactory.IdFactory: IdFactory: Extracted 5 used id's from characters

[25.02.13 01:01:31:302] INFO idfactory.IdFactory: IdFactory: Extracted 37 used id's from items

[25.02.13 01:01:31:419] INFO idfactory.IdFactory: IdFactory: Extracted total 42 used id's.

[25.02.13 01:01:31:420] INFO idfactory.BitSetIDFactory: IdFactory: 102912 id's available.

[25.02.13 01:01:32:135] INFO scripts.Scripts: Scripts: Loading...

[25.02.13 01:01:33:881] INFO scripts.Scripts: Scripts: Loaded 1200 classes.

[25.02.13 01:01:34:109] INFO geodata.GeoEngine: GeoEngine: Loading Geodata...

[25.02.13 01:01:34:111] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/11_23.l2j

[25.02.13 01:01:34:338] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/11_24.l2j

[25.02.13 01:01:34:801] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/11_25.l2j

[25.02.13 01:01:34:826] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/11_26.l2j

[25.02.13 01:01:34:833] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/12_23.l2j

[25.02.13 01:01:34:871] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/12_24.l2j

[25.02.13 01:01:35:714] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/12_25.l2j

[25.02.13 01:01:36:018] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/12_26.l2j

[25.02.13 01:01:36:057] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_21.l2j

[25.02.13 01:01:36:074] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_22.l2j

[25.02.13 01:01:36:080] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_23.l2j

[25.02.13 01:01:36:317] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_24.l2j

[25.02.13 01:01:36:987] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_25.l2j

[25.02.13 01:01:38:150] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/13_26.l2j

[25.02.13 01:01:38:166] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_21.l2j

[25.02.13 01:01:38:201] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_22.l2j

[25.02.13 01:01:38:519] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_23.l2j

[25.02.13 01:01:39:308] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_24.l2j

[25.02.13 01:01:39:893] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_25.l2j

[25.02.13 01:01:40:709] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/14_26.l2j

[25.02.13 01:01:40:730] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_10.l2j

[25.02.13 01:01:40:794] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_11.l2j

[25.02.13 01:01:40:868] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_12.l2j

[25.02.13 01:01:41:709] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_18.l2j

[25.02.13 01:01:41:746] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_19.l2j

[25.02.13 01:01:41:842] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_20.l2j

[25.02.13 01:01:41:851] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_21.l2j

[25.02.13 01:01:41:864] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_22.l2j

[25.02.13 01:01:41:874] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_23.l2j

[25.02.13 01:01:41:890] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_24.l2j

[25.02.13 01:01:41:900] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_25.l2j

[25.02.13 01:01:41:950] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/15_26.l2j

[25.02.13 01:01:42:007] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_10.l2j

[25.02.13 01:01:42:465] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_11.l2j

[25.02.13 01:01:42:485] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_12.l2j

[25.02.13 01:01:42:542] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_13.l2j

[25.02.13 01:01:42:584] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_14.l2j

[25.02.13 01:01:42:591] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_15.l2j

[25.02.13 01:01:42:598] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_16.l2j

[25.02.13 01:01:42:607] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_17.l2j

[25.02.13 01:01:42:614] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_18.l2j

[25.02.13 01:01:42:625] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_19.l2j

[25.02.13 01:01:42:913] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_20.l2j

[25.02.13 01:01:43:192] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_21.l2j

[25.02.13 01:01:43:216] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_22.l2j

[25.02.13 01:01:43:230] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_23.l2j

[25.02.13 01:01:43:239] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_24.l2j

[25.02.13 01:01:43:309] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_25.l2j

[25.02.13 01:01:43:415] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/16_26.l2j

[25.02.13 01:01:43:422] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_10.l2j

[25.02.13 01:01:43:434] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_11.l2j

[25.02.13 01:01:43:459] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_12.l2j

[25.02.13 01:01:43:474] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_13.l2j

[25.02.13 01:01:43:508] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_14.l2j

[25.02.13 01:01:43:520] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_15.l2j

[25.02.13 01:01:43:625] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_16.l2j

[25.02.13 01:01:43:794] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_17.l2j

[25.02.13 01:01:43:815] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_18.l2j

[25.02.13 01:01:43:823] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_19.l2j

[25.02.13 01:01:44:184] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_20.l2j

[25.02.13 01:01:44:345] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_21.l2j

[25.02.13 01:01:44:456] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_22.l2j

[25.02.13 01:01:44:544] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_23.l2j

[25.02.13 01:01:44:600] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_24.l2j

[25.02.13 01:01:44:640] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_25.l2j

[25.02.13 01:01:44:694] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/17_26.l2j

[25.02.13 01:01:44:700] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_10.l2j

[25.02.13 01:01:44:750] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_11.l2j

[25.02.13 01:01:44:801] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_12.l2j

[25.02.13 01:01:44:814] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_13.l2j

[25.02.13 01:01:44:822] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_14.l2j

[25.02.13 01:01:44:909] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_15.l2j

[25.02.13 01:01:44:992] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_16.l2j

[25.02.13 01:01:45:030] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_17.l2j

[25.02.13 01:01:45:037] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_18.l2j

[25.02.13 01:01:45:076] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_19.l2j

[25.02.13 01:01:46:900] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_20.l2j

[25.02.13 01:01:47:001] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_21.l2j

[25.02.13 01:01:47:143] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_22.l2j

[25.02.13 01:01:47:309] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_23.l2j

[25.02.13 01:01:47:448] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_24.l2j

[25.02.13 01:01:47:518] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_25.l2j

[25.02.13 01:01:47:560] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/18_26.l2j

[25.02.13 01:01:47:576] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_10.l2j

[25.02.13 01:01:47:701] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_11.l2j

[25.02.13 01:01:47:711] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_12.l2j

[25.02.13 01:01:47:726] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_13.l2j

[25.02.13 01:01:47:834] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_14.l2j

[25.02.13 01:01:47:954] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_15.l2j

[25.02.13 01:01:52:817] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_16.l2j

[25.02.13 01:01:53:053] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_17.l2j

[25.02.13 01:01:53:101] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_18.l2j

[25.02.13 01:01:53:382] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_19.l2j

[25.02.13 01:01:53:464] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_20.l2j

[25.02.13 01:01:53:594] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_21.l2j

[25.02.13 01:01:53:709] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_22.l2j

[25.02.13 01:01:53:960] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_23.l2j

[25.02.13 01:01:54:051] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_24.l2j

[25.02.13 01:01:54:137] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_25.l2j

[25.02.13 01:01:54:301] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/19_26.l2j

[25.02.13 01:01:54:346] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_10.l2j

[25.02.13 01:01:54:386] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_11.l2j

[25.02.13 01:01:54:399] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_12.l2j

[25.02.13 01:01:54:776] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_13.l2j

[25.02.13 01:01:55:081] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_14.l2j

[25.02.13 01:01:55:306] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_15.l2j

[25.02.13 01:01:55:360] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_16.l2j

[25.02.13 01:01:55:409] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_17.l2j

[25.02.13 01:01:55:565] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_18.l2j

[25.02.13 01:01:55:624] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_19.l2j

[25.02.13 01:01:55:698] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_20.l2j

[25.02.13 01:01:55:793] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_21.l2j

[25.02.13 01:01:55:933] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_22.l2j

[25.02.13 01:01:55:986] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_23.l2j

[25.02.13 01:01:56:059] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_24.l2j

[25.02.13 01:01:56:317] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_25.l2j

[25.02.13 01:01:56:423] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/20_26.l2j

[25.02.13 01:01:56:460] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_10.l2j

[25.02.13 01:01:56:473] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_11.l2j

[25.02.13 01:01:56:501] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_12.l2j

[25.02.13 01:01:56:509] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_13.l2j

[25.02.13 01:01:56:517] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_14.l2j

[25.02.13 01:01:56:602] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_15.l2j

[25.02.13 01:01:56:675] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_16.l2j

[25.02.13 01:01:56:762] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_17.l2j

[25.02.13 01:01:56:805] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_18.l2j

[25.02.13 01:01:56:915] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_19.l2j

[25.02.13 01:01:56:954] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_20.l2j

[25.02.13 01:01:57:017] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_21.l2j

[25.02.13 01:01:57:603] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_22.l2j

[25.02.13 01:01:57:711] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_23.l2j

[25.02.13 01:01:58:926] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_24.l2j

[25.02.13 01:01:59:070] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/21_25.l2j

[25.02.13 01:01:59:094] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_10.l2j

[25.02.13 01:01:59:105] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_11.l2j

[25.02.13 01:01:59:192] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_12.l2j

[25.02.13 01:01:59:199] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_13.l2j

[25.02.13 01:02:01:912] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_14.l2j

[25.02.13 01:02:02:125] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_15.l2j

[25.02.13 01:02:02:559] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_16.l2j

[25.02.13 01:02:02:960] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_17.l2j

[25.02.13 01:02:03:718] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_18.l2j

[25.02.13 01:02:04:326] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_19.l2j

[25.02.13 01:02:04:584] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_20.l2j

[25.02.13 01:02:05:274] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_21.l2j

[25.02.13 01:02:05:427] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_22.l2j

[25.02.13 01:02:05:552] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_23.l2j

[25.02.13 01:02:05:710] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_24.l2j

[25.02.13 01:02:05:813] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_25.l2j

[25.02.13 01:02:06:215] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/22_26.l2j

[25.02.13 01:02:06:226] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_10.l2j

[25.02.13 01:02:06:260] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_11.l2j

[25.02.13 01:02:06:375] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_12.l2j

[25.02.13 01:02:06:590] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_13.l2j

[25.02.13 01:02:06:669] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_14.l2j

[25.02.13 01:02:11:351] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_15.l2j

[25.02.13 01:02:34:659] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_16.l2j

[25.02.13 01:02:35:289] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_17.l2j

[25.02.13 01:02:35:940] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_18.l2j

[25.02.13 01:02:36:791] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_19.l2j

[25.02.13 01:02:37:327] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_20.l2j

[25.02.13 01:02:38:076] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_21.l2j

[25.02.13 01:02:38:927] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_22.l2j

[25.02.13 01:02:39:224] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_23.l2j

[25.02.13 01:02:39:593] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_24.l2j

[25.02.13 01:02:39:828] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_25.l2j

[25.02.13 01:02:40:246] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/23_26.l2j

[25.02.13 01:02:40:534] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_10.l2j

[25.02.13 01:02:40:548] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_11.l2j

[25.02.13 01:02:40:756] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_12.l2j

[25.02.13 01:02:41:782] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_13.l2j

[25.02.13 01:02:41:867] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_14.l2j

[25.02.13 01:02:42:194] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_15.l2j

[25.02.13 01:02:42:271] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_16.l2j

[25.02.13 01:02:42:666] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_17.l2j

[25.02.13 01:02:42:834] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_18.l2j

[25.02.13 01:02:43:220] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_19.l2j

[25.02.13 01:02:43:289] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_20.l2j

[25.02.13 01:02:43:469] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_21.l2j

[25.02.13 01:02:48:125] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_22.l2j

[25.02.13 01:02:48:654] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_23.l2j

[25.02.13 01:02:49:018] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_24.l2j

[25.02.13 01:02:49:046] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_25.l2j

[25.02.13 01:02:49:075] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/24_26.l2j

[25.02.13 01:02:49:090] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_10.l2j

[25.02.13 01:02:49:097] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_11.l2j

[25.02.13 01:02:49:420] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_12.l2j

[25.02.13 01:02:49:883] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_14.l2j

[25.02.13 01:02:50:641] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_15.l2j

[25.02.13 01:02:56:639] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_16.l2j

[25.02.13 01:02:56:731] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_17.l2j

[25.02.13 01:02:57:149] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_18.l2j

[25.02.13 01:02:57:312] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_19.l2j

[25.02.13 01:03:07:854] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_20.l2j

[25.02.13 01:03:07:913] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_21.l2j

[25.02.13 01:03:08:724] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_22.l2j

[25.02.13 01:03:09:218] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_23.l2j

[25.02.13 01:03:09:788] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/25_24.l2j

[25.02.13 01:03:10:334] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/26_11.l2j

[25.02.13 01:03:10:999] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/26_12.l2j

[25.02.13 01:03:11:033] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/26_14.l2j

[25.02.13 01:03:11:117] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/26_15.l2j

[25.02.13 01:03:11:132] INFO geodata.GeoEngine: GeoEngine: Loading: geodata/26_16.l2j

[25.02.13 01:03:11:139] INFO geodata.GeoEngine: GeoEngine: Loaded 203 map(s), max layers: 21

[25.02.13 01:03:12:573] INFO utils.Strings: Loaded 418 translit entries.

[25.02.13 01:03:12:654] INFO gameserver.GameTimeController: GameTimeController: initialized. Current time is 12:19 in the day.

[25.02.13 01:03:12:670] INFO model.World: L2World: Creating regions: [256][272][32].

[25.02.13 01:03:13:032] INFO htm.HtmCache: HtmCache: disabled.

[25.02.13 01:03:13:470] INFO data.StringHolder: StringHolder: load strings: 507 for lang: ENGLISH

[25.02.13 01:03:13:479] INFO data.StringHolder: StringHolder: load strings: 508 for lang: RUSSIAN

[25.02.13 01:03:27:096] INFO skills.SkillsEngine: SkillsEngine: Loaded 66009 skill templates from XML files. Max id: 90002, max level: 259

[25.02.13 01:03:33:980] INFO holder.OptionDataHolder: OptionDataHolder: loaded 24975 option data(s) count.

[25.02.13 01:03:41:091] INFO holder.ItemHolder: ItemHolder: loaded 19128 item(s) count.

[25.02.13 01:03:41:105] INFO parser.ExtractableItems: ExtractableItems: Initializing

[25.02.13 01:03:41:318] INFO parser.ExtractableItems: ExtractableItems: Loaded 18 Extractable.

[25.02.13 01:03:53:385] INFO holder.NpcHolder: NpcHolder: loaded 10456 npc(s) count.

[25.02.13 01:03:53:661] INFO instancemanager.MapRegionManager: MapRegionManager: loaded 272 map region manager(s) count.

[25.02.13 01:03:53:805] INFO instancemanager.MapRegionManager: MapRegionManager: loaded 272 map region manager(s) count.

[25.02.13 01:03:53:893] INFO holder.StaticObjectHolder: StaticObjectHolder: loaded 50 static object(s) count.

[25.02.13 01:03:55:497] INFO holder.DoorHolder: DoorHolder: loaded 1155 door(s) count.

[25.02.13 01:03:55:795] INFO holder.ZoneHolder: ZoneHolder: loaded 1141 zone(s) count.

[25.02.13 01:03:58:280] ERROR parser.SpawnParser: SpawnParser: Invalid polygon: null{[[x: 153148 y: 115668],[x: 153066 y: 114937],[x: 154095 y: 114264],[x: 153990 y: 115023],[x: 153707 y: 115068],[x: 153457 y: 114347]]}. File: 24_21.xml

[25.02.13 01:03:58:492] INFO holder.SpawnHolder: SpawnHolder: loaded 28890 spawn(s) count.

[25.02.13 01:04:00:370] INFO holder.InstantZoneHolder: InstantZoneHolder: loaded 95 instant zone(s) count.

[25.02.13 01:04:01:427] INFO holder.AirshipDockHolder: AirshipDockHolder: loaded 4 airship dock(s) count.

[25.02.13 01:04:01:693] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 57215 normal learns for 103 classes.

[25.02.13 01:04:01:696] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 79 transfer learns for 3 classes.

[25.02.13 01:04:01:697] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 120 transformation learns for 6 races.

[25.02.13 01:04:01:698] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 662 fishing learns for 6 races.

[25.02.13 01:04:01:700] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 72 certification learns.

[25.02.13 01:04:01:700] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 3 collection learns.

[25.02.13 01:04:01:701] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 44 pledge learns.

[25.02.13 01:04:01:702] INFO holder.SkillAcquireHolder: SkillAcquireHolder: load 18 sub unit learns.

[25.02.13 01:04:01:757] INFO holder.CharTemplateHolder: CharTemplateHolder: loaded 206 char template(s) count.

[25.02.13 01:04:03:454] INFO holder.ResidenceHolder: ResidenceHolder: total size: 83

[25.02.13 01:04:03:455] INFO holder.ResidenceHolder: ResidenceHolder: - load 9 castle(s).

[25.02.13 01:04:03:456] INFO holder.ResidenceHolder: ResidenceHolder: - load 44 clanhall(s).

[25.02.13 01:04:03:457] INFO holder.ResidenceHolder: ResidenceHolder: - load 9 dominion(s).

[25.02.13 01:04:03:458] INFO holder.ResidenceHolder: ResidenceHolder: - load 21 fortress(s).

[25.02.13 01:04:04:648] INFO instancemanager.RaidBossSpawnManager: RaidBossSpawnManager: Loaded 0 Statuses

[25.02.13 01:04:05:191] INFO entity.SevenSigns: SevenSigns: Currently in the Competition (Quest Event) period!

[25.02.13 01:04:05:191] INFO entity.SevenSigns: SevenSigns: The Seal of Gnosis remains unclaimed.

[25.02.13 01:04:05:192] INFO entity.SevenSigns: SevenSigns: The Seal of Avarice remains unclaimed.

[25.02.13 01:04:05:193] INFO entity.SevenSigns: SevenSigns: The Seal of Strife remains unclaimed.

[25.02.13 01:04:05:194] INFO entity.SevenSigns: SevenSigns: The Competition this week, if the trend continue, will end with a tie.

[25.02.13 01:04:05:197] INFO entity.SevenSigns: SevenSigns: Next period begins in 0 days, 16 hours and 55 mins.

[25.02.13 01:04:07:075] INFO holder.EventHolder: EventHolder: loaded 95 event(s) count.

[25.02.13 01:04:07:125] INFO holder.CubicHolder: CubicHolder: loaded 145 cubic(s) count.

[25.02.13 01:04:07:501] INFO holder.BuyListHolder: TradeController: Loaded 4 file(s).

[25.02.13 01:04:07:502] INFO holder.BuyListHolder: TradeController: Loaded 24917 Items.

[25.02.13 01:04:07:505] INFO holder.BuyListHolder: TradeController: Loaded 726 Buylists.

[25.02.13 01:04:12:881] INFO holder.RecipeHolder: RecipeController: Loaded 998 Recipes.

[25.02.13 01:04:21:765] INFO holder.ProductHolder: ProductItemTable: Loaded 193 product item on sale.

[25.02.13 01:04:21:867] INFO holder.HennaHolder: HennaHolder: loaded 180 henna(s) count.

[25.02.13 01:04:21:933] INFO holder.EnchantItemHolder: EnchantItemHolder: load 4 enchant scroll(s).

[25.02.13 01:04:22:032] INFO holder.SoulCrystalHolder: SoulCrystalHolder: loaded 54 soul crystal(s) count.

[25.02.13 01:04:22:095] INFO holder.ArmorSetsHolder: ArmorSetsHolder: loaded 198 armor sets(s) count.

[25.02.13 01:04:22:294] INFO holder.PetitionGroupHolder: PetitionGroupHolder: loaded 1 petition group(s) count.

[25.02.13 01:04:22:377] INFO cache.CrestCache: CrestCache: Loaded 0 crests

[25.02.13 01:04:22:641] INFO tables.FishTable: FishTable: Loaded 270 fishes.

[25.02.13 01:04:22:723] INFO tables.FishTable: FishTable: Loaded 919 fish rewards.

[25.02.13 01:04:22:724] INFO tables.SkillTreeTable: SkillTreeTable: Loaded 526 enchanted skills.

[25.02.13 01:04:22:790] INFO tables.AugmentationData: Initializing AugmentationData.

[25.02.13 01:04:22:854] INFO tables.AugmentationData: AugmentationData: 10 bad skill(s) were skipped.

[25.02.13 01:04:23:042] INFO tables.AugmentationData: AugmentationData: Loaded: 52 augmentation stats.

[25.02.13 01:04:23:043] INFO tables.AugmentationData: AugmentationData: Loaded: 24 accessory augmentation stats.

[25.02.13 01:04:23:044] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 0

[25.02.13 01:04:23:045] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 1

[25.02.13 01:04:23:046] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 2

[25.02.13 01:04:23:047] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 3

[25.02.13 01:04:23:048] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 4

[25.02.13 01:04:23:049] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 5

[25.02.13 01:04:23:051] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 6

[25.02.13 01:04:23:052] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 7

[25.02.13 01:04:23:053] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 8

[25.02.13 01:04:23:055] INFO tables.AugmentationData: AugmentationData: Loaded: 17 blue, 106 purple and 54 red skills for lifeStoneLevel 9

[25.02.13 01:04:23:086] INFO tables.EnchantHPBonusTable: EnchantHPBonusTable: Loaded bonuses for 6 grades.

[25.02.13 01:04:23:221] INFO tables.LevelUpTable: LevelUpData: Loaded 103 Character Level Up Templates.

[25.02.13 01:04:23:604] INFO tables.PetSkillsTable: PetSkillsTable: Loaded 2215 skills.

[25.02.13 01:04:23:618] INFO itemauction.ItemAuctionManager: Initializing ItemAuctionManager

[25.02.13 01:04:24:016] INFO bosses.AntharasManager: AntharasManager: State of Antharas is NOTSPAWN.

[25.02.13 01:04:24:020] INFO bosses.AntharasManager: AntharasManager: Next spawn date of Antharas is 06:00 01.01.1970.

[25.02.13 01:04:24:297] INFO bosses.BaiumManager: BaiumManager: State of Baium is NOTSPAWN.

[25.02.13 01:04:24:298] INFO bosses.BaiumManager: BaiumManager: Next spawn date: 06:00 01.01.1970

[25.02.13 01:04:24:391] INFO bosses.BelethManager: Beleth Manager: Loaded successfuly

[25.02.13 01:04:24:478] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: Loaded 20 Mysterious-Box spawns.

[25.02.13 01:04:24:672] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: loaded 716 physical monsters spawns.

[25.02.13 01:04:24:739] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: loaded 716 magical monsters spawns.

[25.02.13 01:04:24:754] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: loaded 92 Church of duke monsters spawns.

[25.02.13 01:04:24:781] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: loaded 68 Emperor's grave NPC spawns.

[25.02.13 01:04:24:782] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: Spawned Conquerors' Sepulcher Manager

[25.02.13 01:04:24:790] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: Spawned Emperors' Sepulcher Manager

[25.02.13 01:04:24:791] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: Spawned Great Sages' Sepulcher Manager

[25.02.13 01:04:24:792] INFO bosses.FourSepulchersSpawn: FourSepulchersManager: Spawned Judges' Sepulcher Manager

[25.02.13 01:04:24:867] INFO bosses.FourSepulchersManager: FourSepulchersManager: Beginning in Attack time

[25.02.13 01:04:24:872] INFO bosses.SailrenManager: SailrenManager: State of Sailren is NOTSPAWN.

[25.02.13 01:04:24:873] INFO bosses.SailrenManager: SailrenManager: Next spawn date of Sailren is 06:00 01.01.1970.

[25.02.13 01:04:24:877] INFO bosses.ValakasManager: ValakasManager: State of Valakas is NOTSPAWN.

[25.02.13 01:04:24:881] INFO bosses.ValakasManager: ValakasManager: Next spawn date of Valakas is 06:00 01.01.1970.

[25.02.13 01:04:24:872] INFO threading.RunnableImpl: Mon Feb 25 01:04:24 GMT+06:00 2013 Atk announce scheduled to 5.0 minute of this hour.

[25.02.13 01:04:25:051] INFO events.GameEventManager: Event Capture The Flag started in 1227 mins.

[25.02.13 01:04:25:234] INFO events.GameEventManager: Event TvT started in 691 mins.

[25.02.13 01:04:25:848] INFO tables.PetDataTable: PetDataTable: Loaded 2322 pets.

[25.02.13 01:04:25:907] INFO model.Manor: ManorManager: Loaded 270 seeds

[25.02.13 01:04:30:261] INFO scriptconfig.ScriptConfig: Loaded Service: ScripsConfig

[25.02.13 01:04:31:028] INFO services.Bash: Loaded Service: Bash [disabled]

[25.02.13 01:04:33:540] INFO community.ClanCommunity: CommunityBoard: Clan Community service loaded.

[25.02.13 01:04:33:690] INFO community.CommunityBoard: CommunityBoard: service loaded.

[25.02.13 01:04:33:691] INFO community.CommunityStats: CommunityBoard: Stats service loaded.

[25.02.13 01:04:33:693] INFO community.ManageBuffer: CommunityBoard: Buffer Community service loaded.

[25.02.13 01:04:34:145] INFO community.ManageEnchant: CommunityBoard: Enchant Community service loaded.

[25.02.13 01:04:34:149] INFO community.ManageFavorites: CommunityBoard: Manage Favorites service loaded.

[25.02.13 01:04:34:153] INFO community.ManageFriends: CommunityBoard: Manage Friends service loaded.

[25.02.13 01:04:34:156] INFO community.ManageMemo: CommunityBoard: Manage Memo service loaded.

[25.02.13 01:04:34:162] INFO community.ManageProf: CommunityBoard: Manage Career service loaded.

[25.02.13 01:04:34:164] INFO community.ManageServices: CommunityBoard: Manager Community services loaded.

[25.02.13 01:04:34:166] INFO community.ManageTeleport: CommunityBoard: Teleport Community service loaded.

[25.02.13 01:04:34:168] INFO community.PrivateMail: CommunityBoard: Private Mail service loaded.

[25.02.13 01:04:34:170] INFO community.RegionCommunity: CommunityBoard: Region service loaded.

[25.02.13 01:04:34:503] INFO instancemanager.SpawnManager: SpawnManager: spawned 1000 npc for group: NONE

[25.02.13 01:04:35:016] INFO instancemanager.SpawnManager: SpawnManager: spawned 3000 npc for group: NONE

[25.02.13 01:04:36:360] INFO instancemanager.SpawnManager: SpawnManager: spawned 5000 npc for group: NONE

[25.02.13 01:04:36:496] INFO instancemanager.SpawnManager: SpawnManager: spawned 6000 npc for group: NONE

[25.02.13 01:04:36:742] INFO instancemanager.SpawnManager: SpawnManager: spawned 8000 npc for group: NONE

[25.02.13 01:04:37:230] INFO instancemanager.SpawnManager: SpawnManager: spawned 9000 npc for group: NONE

[25.02.13 01:04:37:480] INFO instancemanager.SpawnManager: SpawnManager: spawned 12000 npc for group: NONE

[25.02.13 01:04:38:182] INFO instancemanager.SpawnManager: SpawnManager: spawned 13000 npc for group: NONE

[25.02.13 01:04:39:546] INFO instancemanager.SpawnManager: SpawnManager: spawned 18000 npc for group: NONE

[25.02.13 01:04:52:378] INFO instancemanager.SpawnManager: SpawnManager: spawned 19000 npc for group: NONE

[25.02.13 01:04:52:766] INFO instancemanager.SpawnManager: SpawnManager: spawned 20000 npc for group: NONE

[25.02.13 01:04:52:988] INFO instancemanager.SpawnManager: SpawnManager: spawned 21000 npc for group: NONE

[25.02.13 01:04:53:290] INFO instancemanager.SpawnManager: SpawnManager: spawned 22000 npc for group: NONE

[25.02.13 01:04:53:462] INFO instancemanager.SpawnManager: SpawnManager: spawned 23000 npc for group: NONE

[25.02.13 01:04:53:928] INFO instancemanager.SpawnManager: SpawnManager: spawned 27000 npc for group: NONE

[25.02.13 01:04:54:016] INFO instancemanager.SpawnManager: SpawnManager: spawned 28000 npc for group: NONE

[25.02.13 01:04:54:372] INFO instancemanager.SpawnManager: SpawnManager: spawned 31000 npc for group: NONE

[25.02.13 01:04:54:980] INFO instancemanager.SpawnManager: SpawnManager: spawned 37942 npc; spawns: 17010; group: NONE

[25.02.13 01:04:55:145] INFO data.BoatHolder: BoatHolder: loaded 2 boat(s) count.

[25.02.13 01:04:55:145] INFO data.BoatHolder: BoatHolder: Spawning: RunePrimeval_Vehicle

[25.02.13 01:04:55:145] INFO data.BoatHolder: BoatHolder: Spawning: AdenGracia_Airship

[25.02.13 01:04:55:455] INFO holder.StaticObjectHolder: StaticObjectHolder: spawned: 50 static object(s).

[25.02.13 01:04:58:694] INFO instancemanager.DimensionalRiftManager: DimensionalRiftManager: Loaded 13 room types with 112 rooms.

[25.02.13 01:04:58:694] INFO instancemanager.DimensionalRiftManager: DimensionalRiftManager: Loaded 300 DimensionalRift spawns, 0 errors.

[25.02.13 01:05:04:636] INFO instancemanager.AutoSpawnManager: AutoSpawnHandler: Loaded 50 handlers in total.

[25.02.13 01:05:07:645] INFO olympiad.Olympiad: Olympiad System: Loading Olympiad System....

[25.02.13 01:05:07:646] INFO olympiad.Olympiad: Olympiad System: Currently in Olympiad Period

[25.02.13 01:05:07:647] INFO olympiad.Olympiad: Olympiad System: Period Ends....

[25.02.13 01:05:07:648] INFO olympiad.Olympiad: Olympiad System: In 3 days, 22 hours and 55 mins.

[25.02.13 01:05:07:649] INFO olympiad.Olympiad: Olympiad System: Next Weekly Change is in....

[25.02.13 01:05:07:652] INFO olympiad.Olympiad: Olympiad System: In 6 days, 18 hours and 55 mins.

[25.02.13 01:05:07:655] INFO olympiad.Olympiad: Olympiad System: Loaded 1 Noblesses

[25.02.13 01:05:07:660] INFO olympiad.Olympiad: Olympiad System: Competition Period Starts in 0 days, 16 hours and 54 mins.

[25.02.13 01:05:07:663] INFO olympiad.Olympiad: Olympiad System: Event starts/started: Mon Feb 25 18:00:07 GMT+06:00 2013

[25.02.13 01:05:08:206] INFO entity.Hero: Hero System: Loaded 0 Heroes.

[25.02.13 01:05:08:207] INFO entity.Hero: Hero System: Loaded 0 all time Heroes.

[25.02.13 01:05:08:278] INFO instancemanager.PetitionManager: Initializing PetitionManager

[25.02.13 01:05:09:472] INFO instancemanager.CursedWeaponsManager: CursedWeaponsManager: Loaded 2 cursed weapon(s).

[25.02.13 01:05:09:532] INFO instancemanager.CoupleManager: Initializing CoupleManager

[25.02.13 01:05:09:535] INFO instancemanager.CoupleManager: Loaded: 0 couples(s)

[25.02.13 01:05:09:538] INFO gameserver.GameServer: CoupleManager initialized

[25.02.13 01:05:09:540] INFO admincommands.AdminCommandHandler: AdminCommandHandler: loaded 348 admin command handler(s) count.

[25.02.13 01:05:10:229] INFO usercommands.UserCommandHandler: UserCommandHandler: loaded 16 user command handler(s) count.

[25.02.13 01:05:10:230] INFO voicecommands.VoicedCommandHandler: VoicedCommandHandler: loaded 40 voiced command handler(s) count.

[25.02.13 01:05:12:046] INFO gameserver.GameServer: =[Events]=========================================

[25.02.13 01:05:16:622] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Gludio Castle time - 16:00 10.03.2013

[25.02.13 01:05:16:913] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Dion Castle time - 16:00 10.03.2013

[25.02.13 01:05:16:936] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Giran Castle time - 20:00 10.03.2013

[25.02.13 01:05:16:988] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Oren Castle time - 20:00 10.03.2013

[25.02.13 01:05:17:019] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Aden Castle time - 16:00 10.03.2013

[25.02.13 01:05:17:099] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Innadril Castle time - 20:00 10.03.2013

[25.02.13 01:05:17:148] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Goddard Castle time - 20:00 10.03.2013

[25.02.13 01:05:17:213] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Rune Castle time - 16:00 10.03.2013

[25.02.13 01:05:17:252] INFO impl.CastleSiegeEvent: CastleSiegeEvent: Schuttgart Castle time - 16:00 10.03.2013

[25.02.13 01:05:17:294] INFO impl.ClanHallNpcSiegeEvent: ClanHallNpcSiegeEvent: Fortress Of Resistance time - 18:00 25.02.2013

[25.02.13 01:05:17:310] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Moonstone Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:317] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Onyx Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:323] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Topaz Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:328] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Ruby Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:333] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Crystal Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:340] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Onyx Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:348] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Sapphire Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:366] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Moonstone Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:371] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Emerald Hall time - 01:05 25.02.2013

[25.02.13 01:05:17:375] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Atramental Barracks time - 01:05 25.02.2013

[25.02.13 01:05:17:381] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Scarlet Barracks time - 01:05 25.02.2013

[25.02.13 01:05:17:390] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Viridian Barracks time - 01:05 25.02.2013

[25.02.13 01:05:17:396] INFO impl.ClanHallSiegeEvent: ClanHallSiegeEvent: Devastated Castle time - 18:00 02.03.2013

[25.02.13 01:05:17:401] INFO impl.ClanHallTeamBattleEvent: ClanHallTeamBattleEvent: Bandit Stronghold time - 22:00 02.03.2013

[25.02.13 01:05:17:412] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Golden Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:033] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Silver Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:046] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Mithril Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:059] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Silver Manor time - 01:05 25.02.2013

[25.02.13 01:05:18:069] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Gold Manor time - 01:05 25.02.2013

[25.02.13 01:05:18:077] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Bronze Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:084] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Golden Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:090] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Silver Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:093] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Mithril Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:097] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: The Bronze Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:105] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Silver Manor time - 01:05 25.02.2013

[25.02.13 01:05:18:112] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Moonstone Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:116] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Onyx Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:122] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Emerald Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:128] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Sapphire Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:137] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Mont Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:146] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Astaire Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:153] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Aria Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:157] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Yiana Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:161] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Roien Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:167] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Luna Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:175] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Traban Chamber time - 01:05 25.02.2013

[25.02.13 01:05:18:183] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Eisen Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:188] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Heavy Metal Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:193] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Molten Ore Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:198] INFO impl.ClanHallAuctionEvent: ClanHallAuctionEvent: Titan Hall time - 01:05 25.02.2013

[25.02.13 01:05:18:202] INFO impl.ClanHallMiniGameEvent: ClanHallMiniGameEvent: Rainbow Springs time - 22:00 02.03.2013

[25.02.13 01:05:18:206] INFO impl.ClanHallTeamBattleEvent: ClanHallTeamBattleEvent: Wild Beast Reserve time - 21:00 02.03.2013

[25.02.13 01:05:18:211] INFO impl.ClanHallSiegeEvent: ClanHallSiegeEvent: Fortress of Dead time - 18:00 02.03.2013

[25.02.13 01:05:18:328] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Gludio Dominion time - undefined

[25.02.13 01:05:18:334] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Dion Dominion time - undefined

[25.02.13 01:05:18:341] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Giran Dominion time - undefined

[25.02.13 01:05:18:347] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Oren Dominion time - undefined

[25.02.13 01:05:18:355] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Aden Dominion time - undefined

[25.02.13 01:05:18:462] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Innadril Dominion time - undefined

[25.02.13 01:05:18:466] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Goddard Dominion time - undefined

[25.02.13 01:05:18:471] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Rune Dominion time - undefined

[25.02.13 01:05:18:479] INFO impl.DominionSiegeEvent: DominionSiegeEvent: Schuttgart Dominion time - undefined

[25.02.13 01:05:18:668] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Shanty Fortress time - undefined

[25.02.13 01:05:19:010] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Southern Fortress time - undefined

[25.02.13 01:05:19:127] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Hive Fortress time - undefined

[25.02.13 01:05:19:185] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Valley Fortress time - undefined

[25.02.13 01:05:19:319] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Ivory Fortress time - undefined

[25.02.13 01:05:19:387] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Narsell Fortress time - undefined

[25.02.13 01:05:19:444] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Bayou Fortress time - undefined

[25.02.13 01:05:19:527] INFO impl.FortressSiegeEvent: FortressSiegeEvent: White Sands Fortress time - undefined

[25.02.13 01:05:19:734] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Borderland Fortress time - undefined

[25.02.13 01:05:19:852] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Swamp Fortress time - undefined

[25.02.13 01:05:19:952] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Archaic Fortress time - undefined

[25.02.13 01:05:20:095] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Floran Fortress time - undefined

[25.02.13 01:05:20:236] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Cloud Mountain Fortress time - undefined

[25.02.13 01:05:20:394] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Tanor Fortress time - undefined

[25.02.13 01:05:21:044] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Dragonspine Fortress time - undefined

[25.02.13 01:05:21:177] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Antharas Fortress time - undefined

[25.02.13 01:05:21:229] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Western Fortress time - undefined

[25.02.13 01:05:21:286] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Hunter's Fortress time - undefined

[25.02.13 01:05:21:335] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Aaru Fortress time - undefined

[25.02.13 01:05:21:393] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Demon Fortress time - undefined

[25.02.13 01:05:21:493] INFO impl.FortressSiegeEvent: FortressSiegeEvent: Monastic Fortress time - undefined

[25.02.13 01:05:21:498] INFO impl.KrateisCubeEvent: KrateisCubeEvent: Krateis Cube 70-75 Level time - 01:30 25.02.2013

[25.02.13 01:05:21:502] INFO impl.KrateisCubeEvent: KrateisCubeEvent: Krateis Cube 76-79 Level time - 01:30 25.02.2013

[25.02.13 01:05:21:506] INFO impl.KrateisCubeEvent: KrateisCubeEvent: Krateis Cube 80-85 Level time - 01:30 25.02.2013

[25.02.13 01:05:21:508] INFO gameserver.GameServer: ==================================================

[25.02.13 01:05:21:560] INFO instancemanager.CastleManorManager: Manor System: Initializing...

[25.02.13 01:05:21:905] INFO gameserver.GameServer: IdFactory: Free ObjectID's remaining: 1879008961

[25.02.13 01:05:22:332] INFO instancemanager.HellboundManager: HellboundManager: Loaded 335 spawn entries.

[25.02.13 01:05:22:431] INFO instancemanager.HellboundManager: HellboundManager: Spawned 623 mobs and NPCs according to the current Hellbound stage

[25.02.13 01:05:22:445] INFO instancemanager.HellboundManager: Hellbound Manager: Loaded

[25.02.13 01:05:22:459] INFO naia.NaiaTowerManager: Naia Tower Manager: Loaded 12 rooms

[25.02.13 01:05:22:467] INFO naia.NaiaTowerManager: Naia Core Manager: Loaded

[25.02.13 01:05:22:470] INFO instancemanager.SoDManager: Seed of Destruction Manager: Loaded

[25.02.13 01:05:22:473] INFO instancemanager.SoIManager: Seed of Infinity Manager: Loaded. Current stage is: 1

[25.02.13 01:05:22:475] INFO instancemanager.SpawnManager: SpawnManager: spawned 4 npc; spawns: 4; group: soi_world_mouths

[25.02.13 01:05:22:478] INFO instancemanager.SpawnManager: SpawnManager: spawned 1 npc; spawns: 1; group: soi_world_abyssgaze2

[25.02.13 01:05:22:573] INFO instancemanager.BloodAltarManager: Blood Altar Manager: Initializing...

[25.02.13 01:05:22:576] INFO instancemanager.SpawnManager: SpawnManager: spawned 51 npc; spawns: 51; group: bloodaltar_alive_npc

[25.02.13 01:05:22:701] INFO gameserver.Shutdown: Scheduled server restart in 3h 54m 38s.

[25.02.13 01:05:22:703] INFO gameserver.GameServer: GameServer Started

[25.02.13 01:05:22:704] INFO gameserver.GameServer: Maximum Numbers of Connected Players: 3000

[25.02.13 01:05:24:103] INFO authcomm.AuthServerCommunication: Connecting to authserver on 127.0.0.1:9014

[25.02.13 01:05:24:165] INFO instancemanager.AutoAnnounce: AutoAnnounce: Initializing

[25.02.13 01:05:24:233] INFO instancemanager.AutoAnnounce: AutoAnnounce: Load OK

[25.02.13 01:05:24:234] INFO instancemanager.AutoAnnounce: AutoAnnounce: Loaded 3 announce.

[25.02.13 01:05:24:253] INFO instancemanager.SpawnManager: SpawnManager: spawned 443 npc; spawns: 121; group: DAY

[25.02.13 01:05:24:321] INFO instancemanager.SpawnManager: SpawnManager: spawned 653 npc; spawns: 429; group: dawn_spawn

[25.02.13 01:05:24:346] INFO instancemanager.SpawnManager: SpawnManager: spawned 653 npc; spawns: 429; group: dusk_spawn

[25.02.13 01:05:24:356] INFO gameserver.GameServer: Telnet server is currently disabled.

[25.02.13 01:05:24:358] INFO gameserver.GameServer: =================================================

[25.02.13 01:05:25:319] INFO gameserver.GameServer: AllowedMemory: ........... 2796224 KB

[25.02.13 01:05:25:320] INFO gameserver.GameServer:

Allocated: .......... 1734336 KB (62.0242%)

[25.02.13 01:05:25:322] INFO gameserver.GameServer:

Non-Allocated: ...... 1061888 KB (37.9758%)

[25.02.13 01:05:25:324] INFO gameserver.GameServer:

AllocatedMemory: ......... 1734336 KB

[25.02.13 01:05:25:326] INFO gameserver.GameServer: Used: ............... 1687894 KB (60.3633%)

[25.02.13 01:05:25:328] INFO gameserver.GameServer:

Unused (cached): .... 46441 KB (1.6609%)

[25.02.13 01:05:25:330] INFO gameserver.GameServer:

UseableMemory: ........... 1108329 KB (39.6367%)

[25.02.13 01:05:25:333] INFO gameserver.GameServer:

 

[25.02.13 01:05:25:337] INFO gameserver.GameServer: =================================================

[25.02.13 01:05:25:721] INFO ftGuard.ftGuard: Loading First Guard configuration...

[25.02.13 01:05:25:872] INFO ftGuard.ftGuard: ************[ Protection System: Start Loading ]*************

[25.02.13 01:05:25:873] INFO ftGuard.ftGuard: ************[ Protection System: Off ]*************

[25.02.13 01:05:25:876] INFO ftGuard.ftGuard: ************[ Protection System: Finish Loading ]*************

[25.02.13 01:05:29:959] INFO lspackets.AuthResponse: Registered on authserver as 1 [bartz]

[25.02.13 01:05:54:341] INFO tasks.RestoreOfflineTraders: Restored 0 offline traders

[25.02.13 01:07:22:274] WARN l2.GameClient: Too many client unknown packets, connection closed : IN_GAME IP: 127.0.0.1 Account: keni3111 Player : sad[268477072]

 

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Откуда взяли мануал по замене/удалению ?

Изменено пользователем ArtiSoft

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Откуда взяли мануал по замене/удалению ?

 

Да это не мануал. Я не нашел мануала по удалению привязки тут.

Была просто тема тут описывали где привязка, от сюда и плясал.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

а на счет защиты, вообще не понял при чем тут она, но с выключенной та же самая ошибка.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

защиту вообще надо вырезать как бы

 

До моих махинаций с world.java все было нормально. Только после них, появилась такая ошибка.

 

В каких файлах тут защиту искать? dao?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Для публикации сообщений создайте учётную запись или авторизуйтесь

Вы должны быть пользователем, чтобы оставить комментарий

Создать учетную запись

Зарегистрируйте новую учётную запись в нашем сообществе. Это очень просто!

Регистрация нового пользователя

Войти

Уже есть аккаунт? Войти в систему.

Войти
Авторизация  

  • Последние посетители   0 пользователей онлайн

    Ни одного зарегистрированного пользователя не просматривает данную страницу

×
×
  • Создать...