Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
Интеграция класса
#1
Собственно пытаюсь интегрирровать класс, но при компиляции выводит ошибку:

Цитата:Compiling 1571 source files to D:\Emu\L2EmuProject-Game\target\classes
[javac] D:\Emu\L2EmuProject-Game\src\main\java\com\l2emu\gameserver\model\actor\instance\L2GourdInstance.java:88: cannot find symbol
[javac] symbol : method reduceCurrentHp(double,com.l2emu.gameserver.model.actor.L2Character,boolean,com.l2emu.gameserver.model.L2Skill)
[javac] location: class com.l2emu.gameserver.model.actor.instance.L2MonsterInstance
[javac] super.reduceCurrentHp(damage, attacker, awake, skill);
[javac] ^
[javac] D:\Emu\L2EmuProject-Game\src\main\java\com\l2emu\gameserver\model\actor\instance\L2GourdInstance.java:95: cannot find symbol
[javac] symbol : method reduceCurrentHp(double,com.l2emu.gameserver.model.actor.L2Character,boolean,com.l2emu.gameserver.model.L2Skill)
[javac] location: class com.l2emu.gameserver.model.actor.instance.L2MonsterInstance
[javac] super.reduceCurrentHp(damage, attacker, awake, skill);
[javac] ^
[javac] D:\Emu\L2EmuProject-Game\src\main\java\com\l2emu\gameserver\model\actor\instance\L2GourdInstance.java:79: method does not override or implement a method from a supertype
[javac] @Override
[javac] ^
[javac] 3 errors

вот проблемный кусок из java

PHP код:
<?php 
@Override
public void reduceCurrentHp(double damage, L2Character attacker, boolean awake, L2Skill skill)
{
for (
int npcIds : NPC_IDS)
{
if (
npcIds == getNpcId())
{
if (
attacker.getActiveWeaponInstance().getItemId() == 4202 || attacker.getActiveWeaponInstance().getItemId() == 5133
|| attacker.getActiveWeaponInstance().getItemId() == 5817 || attacker.getActiveWeaponInstance().getItemId() == 7058)
super.reduceCurrentHp(damage, attacker, awake, skill);
else if (
damage > 0.0D)
damage = 0.0D;

break;
}
}
super.reduceCurrentHp(damage, attacker, awake, skill);
}

int[] NPC_IDS =
{
12778, 12779 };
@
SuppressWarnings("unused")
private final
int LIVE_TIME = 0x2bf20;
@
SuppressWarnings("unused")
private final
int ADD_LIVE_TIME = 1000;
private
L2PcInstance _owner;
}
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  скиллы от саб класса сохраняются только у ГМА aaansideee 5 1,708 10-11-2016, 12:26 PM
Последний пост: Hack
  Не сохраняет скиллы с саб класса aaansideee 5 1,867 10-08-2016, 08:51 PM
Последний пост: HiredKiller
  Нет класса, что делать La2lucky 3 1,509 07-13-2013, 08:49 PM
Последний пост: [STIGMATED]
  Интеграция -- JavaScript -> Java ZhukV 2 2,833 05-04-2011, 09:17 PM
Последний пост: ZhukV
  вывод диологов в зависимости от класса перса krisadr 3 2,018 08-29-2010, 11:37 PM
Последний пост: incognito
  Как настроить прокачку Суб класса до 85 лвл? KrizaLis 1 2,123 09-18-2009, 01:27 PM
Последний пост: Member
  Создание класса ZJIou 0 1,469 06-01-2009, 12:36 PM
Последний пост: ZJIou

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


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