Ребят в общем делаю ивент RabbitsToRiches. по аналогии с другой сборки.
Вот код спавна ивентовых сундуков.
И вот при запуске сервера выползают такие вот ошибки. Типа зона не найдена.
Вопрос в следующем- где прописать эти зоны? Должны быть на Острове Грез.
Вот код спавна ивентовых сундуков.
Код:
private static final int _hiddenChest = 13097;
private static final int _hiddenChestRespawnDelay = 30;
private static final int _hiddenChestLocs[][] = {
{ 720001, 4 },
{ 720002, 4 },
{ 720003, 10 },
{ 720004, 10 } };
Код:
private void spawnChests()
{
L2NpcTemplate template = NpcTable.getTemplate(_hiddenChest);
if (template == null)
{
_log.warning("WARNING! Template is null for npc: " + _hiddenChest);
Thread.dumpStack();
return;
}
for (int[] loc : _hiddenChestLocs)
for (int i = 0; i < loc[1]; i++)
try
{
L2Spawn spawn = new L2Spawn(template);
spawn.setLocation(loc[0]);
spawn.setAmount(1);
spawn.setRespawnDelay(_hiddenChestRespawnDelay);
spawn.startRespawn();
L2NpcInstance npc = spawn.doSpawn(true);
// npc.setAI(new HiddenChestAI(npc));
}
catch(ClassNotFoundException e)
{
e.printStackTrace();
}
}
Вопрос в следующем- где прописать эти зоны? Должны быть на Острове Грез.
Код:
21:04:25.113 TerritoryTable.getRandomPoint: territory 720001 not found.
21:04:25.113 TerritoryTable.getRandomPoint: territory 720001 not found.
21:04:25.113 TerritoryTable.getRandomPoint: territory 720001 not found.
21:04:25.114 TerritoryTable.getRandomPoint: territory 720001 not found.
21:04:25.114 TerritoryTable.getRandomPoint: territory 720002 not found.
21:04:25.114 TerritoryTable.getRandomPoint: territory 720002 not found.
21:04:25.115 TerritoryTable.getRandomPoint: territory 720002 not found.
21:04:25.115 TerritoryTable.getRandomPoint: territory 720002 not found.
21:04:25.115 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.116 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.116 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.116 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.117 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.117 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.117 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.118 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.118 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.118 TerritoryTable.getRandomPoint: territory 720003 not found.
21:04:25.118 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.119 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.120 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.120 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.120 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.121 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.121 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.122 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.122 TerritoryTable.getRandomPoint: territory 720004 not found.
21:04:25.122 TerritoryTable.getRandomPoint: territory 720004 not found.