Skip to content
La2Base
Home
DownloadsWikiForumFAQ
Search
ruen
Sign up Login
HomeFilesWikiLogin
  • Home
  • Downloads
  • Wiki
  • FAQ
  • Contact Us
  • About
  • Rules
  • Privacy
  • Terms of Service

© 2026 la2base.com · All rights reserved

ruen
Forum/Дополнения к Lineage 2 Java серверам/Deathmatch евент
Search

Deathmatch евент

10 replies329 viewsCurrently viewing: 1
A
Akumu
· 01/01/2010, 02:01 PM

Искал DM (DeathMatch) эвент на уровне ядра, но ничего не нашёл.
Знаю что такой эвент присутствует на scoria сборках. Выложите у кого есть плз.

0
A
Akumu
· 01/01/2010, 07:04 PM

ап

0
CKA3KART
CKA3KART

User

Бывалый

Posts: 359

На форуме с: 01/05/2010

Репутация: +41

Рейтинг: 0

· 01/01/2010, 07:22 PM

Akumu: ап


_http://svn.l2jfree.com/svn/l2j-free/trunk/l2jfree-core/src/main/java/com/l2jfree/gameserver/model/entity/events/DM.java

0
A
Akumu
· 01/01/2010, 07:47 PM

CKA3KA: _http://svn.l2jfree.com/svn/l2j-free/trunk/l2jfree-core/src/main/java/com/l2jfree/gameserver/model/entity/events/DM.java


Опаньки, сейчас затестим. тему пока не клоуз

0
A
Akumu
· 01/01/2010, 08:49 PM

Вот при попытки компила сборки псле установки DM выдаёт следющие:

Раскрывающийся текст

Код
    [javac] C:\source_codes\core\java\com\l2scoria\gameserver\model\actor\instance\L2PcInstance.java:136: cannot access com.l2scoria.gameserver.model.entity.DM
    [javac] bad class file: C:\source_codes\core\java\com\l2scoria\gameserver\model\entity\DM.java
    [javac] file does not contain class com.l2scoria.gameserver.model.entity.DM
    [javac] Please remove or make sure it appears in the correct subdirectory of the classpath.
    [javac] import com.l2scoria.gameserver.model.entity.DM;


Хотя вроде все импорты настроил и где нужно добавил.

Вот в L2PcInstance:
Код
...
import com.l2scoria.gameserver.model.entity.TvTEvent;
import com.l2scoria.gameserver.model.entity.DM;
import com.l2scoria.gameserver.model.extender.BaseExtender.EventType;
...


Вот непосредственно в самом DM:
Раскрывающийся текст
Код
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.concurrent.CopyOnWriteArrayList;

import javolution.text.TextBuilder;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.l2scoria.Config;
import com.l2scoria.L2DatabaseFactory;
import com.l2scoria.gameserver.Announcements;
import com.l2scoria.gameserver.ThreadPoolManager;
import com.l2scoria.gameserver.datatables.NpcTable;
import com.l2scoria.gameserver.datatables.SpawnTable;
import com.l2scoria.gameserver.model.L2Party;
import com.l2scoria.gameserver.model.L2Spawn;
import com.l2scoria.gameserver.model.actor.L2Summon;
import com.l2scoria.gameserver.model.actor.instance.L2PcInstance;
import com.l2scoria.gameserver.model.actor.instance.L2PetInstance;
import com.l2scoria.gameserver.model.restriction.global.DMRestriction;
import com.l2scoria.gameserver.model.restriction.global.GlobalRestrictions;
import com.l2scoria.gameserver.network.serverpackets.ActionFailed;
import com.l2scoria.gameserver.network.serverpackets.MagicSkillUse;
import com.l2scoria.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2scoria.gameserver.network.serverpackets.StatusUpdate;
import com.l2scoria.gameserver.templates.chars.L2NpcTemplate;

0
CKA3KART
CKA3KART

User

Бывалый

Posts: 359

На форуме с: 01/05/2010

Репутация: +41

Рейтинг: 0

· 01/01/2010, 09:34 PM

Akumu: Вот при попытки компила сборки псле установки DM выдаёт следющие:
Раскрывающийся текст

Код
    [javac] C:\source_codes\core\java\com\l2scoria\gameserver\model\actor\instance\L2PcInstance.java:136: cannot access com.l2scoria.gameserver.model.entity.DM
    [javac] bad class file: C:\source_codes\core\java\com\l2scoria\gameserver\model\entity\DM.java
    [javac] file does not contain class com.l2scoria.gameserver.model.entity.DM
    [javac] Please remove or make sure it appears in the correct subdirectory of the classpath.
    [javac] import com.l2scoria.gameserver.model.entity.DM;


Хотя вроде все импорты настроил и где нужно добавил.

Вот в L2PcInstance:
Код
...
import com.l2scoria.gameserver.model.entity.TvTEvent;
import com.l2scoria.gameserver.model.entity.DM;
import com.l2scoria.gameserver.model.extender.BaseExtender.EventType;
...


Вот непосредственно в самом DM:
Раскрывающийся текст
Код
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.concurrent.CopyOnWriteArrayList;

import javolution.text.TextBuilder;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.l2scoria.Config;
import com.l2scoria.L2DatabaseFactory;
import com.l2scoria.gameserver.Announcements;
import com.l2scoria.gameserver.ThreadPoolManager;
import com.l2scoria.gameserver.datatables.NpcTable;
import com.l2scoria.gameserver.datatables.SpawnTable;
import com.l2scoria.gameserver.model.L2Party;
import com.l2scoria.gameserver.model.L2Spawn;
import com.l2scoria.gameserver.model.actor.L2Summon;
import com.l2scoria.gameserver.model.actor.instance.L2PcInstance;
import com.l2scoria.gameserver.model.actor.instance.L2PetInstance;
import com.l2scoria.gameserver.model.restriction.global.DMRestriction;
import com.l2scoria.gameserver.model.restriction.global.GlobalRestrictions;
import com.l2scoria.gameserver.network.serverpackets.ActionFailed;
import com.l2scoria.gameserver.network.serverpackets.MagicSkillUse;
import com.l2scoria.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2scoria.gameserver.network.serverpackets.StatusUpdate;
import com.l2scoria.gameserver.templates.chars.L2NpcTemplate;


у тебя эклипс должен выдать все что не нравиться компилятору

0
Александр
Александр

User

Ветеран

Posts: 1306

На форуме с: 05/25/2009

Репутация: +296

Рейтинг: 0

· 01/02/2010, 03:39 AM

Цитата
3.3. Запрещается публикация таких сообщений:
3.3.11. Содержащих «Ап» темы в промежутке до 18 часов с момента последнего ответа в тему.

You can't feeling! No you can't feeling! And you can't feeling!

— People = Shit

0
A
Akumu
· 01/02/2010, 11:35 AM

CKA3KA: у тебя эклипс должен выдать все что не нравиться компилятору


Посмотри в спойлере что ненравится эклипсу

0
A
Akumu
· 01/03/2010, 01:05 PM

Ап, ещё ищу эвент!

0
snake1
snake1

User

Бывалый

Posts: 155

На форуме с: 03/23/2008

Репутация: +132

Рейтинг: 0

· 01/11/2010, 11:12 AM

Akumu: Ап, ещё ищу эвент!

Лови =)

0
Войдите или зарегистрируйтесь чтобы ответить