Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
Баф после смерти
#1
Сборка: L2Jfrozen
Как сделать что бы после смерти бафы не слетали, в исходах нашел условия после смерти.
"StopAllEffect" не могу не где найти...

Может кто-то что то может подсказать?
* @param killer The L2Character who killed it
* @return true, if successful
*/
public boolean doDie(L2Character killer)
{
// killing is only possible one time
synchronized (this)
{
if(isKilledAlready())
return false;

setIsKilledAlready(true);
}
// Set target to null and cancel Attack or Cast
setTarget(null);

// Stop movement
stopMove(null);

// Stop HP/MP/CP Regeneration task
getStatus().stopHpMpRegeneration();

// Stop all active skills effects in progress on the L2Character,
// if the Character isn't affected by Soul of The Phoenix or Salvation
if(this instanceof L2PlayableInstance && ((L2PlayableInstance) this).isPhoenixBlessed())
{
if(((L2PlayableInstance) this).isNoblesseBlessed())
{
((L2PlayableInstance) this).stopNoblesseBlessing(null);
}
if(((L2PlayableInstance) this).getCharmOfLuck())
{
((L2PlayableInstance) this).stopCharmOfLuck(null);
}
}
// Same thing if the Character isn't a Noblesse Blessed L2PlayableInstance
else if(this instanceof L2PlayableInstance && ((L2PlayableInstance) this).isNoblesseBlessed())
{
((L2PlayableInstance) this).stopNoblesseBlessing(null);

if(((L2PlayableInstance) this).getCharmOfLuck())
{
((L2PlayableInstance) this).stopCharmOfLuck(null);
}
}
else
{
//to avoid DM Remove buffs on die
if((this instanceof L2PcInstance && ((L2PcInstance)this)._inEventDM && DM.is_started())){

if(Config.DM_REMOVE_BUFFS_ON_DIE)
stopAllEffects();

}
else if (Config.LEAVE_BUFFS_ON_DIE) //this means that the player is not in event dm or is not player
{
stopAllEffects();
}

}
Ответ
#2
Тут даже уже есть конфиг чтобы бафы не слетали
[Изображение: 61b684.png]
Ответ
#3
else if (Config.LEAVE_BUFFS_ON_DIE) //this means that the player is not in event dm or is not player
{
stopAllEffects();
}
Ответ
#4
Спасибо всем =)
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  После замены порта висит клиент TFH 3 1,486 03-27-2022, 06:45 AM
Последний пост: Nab
  Не пропадает опыт после смерти игрока Magican 1 1,279 04-07-2020, 06:41 PM
Последний пост: Magican
  Нет агра мобов после респа Kagaku 0 970 03-30-2020, 06:54 PM
Последний пост: Kagaku
  Удаляется скилл после рестарта перса ntking 2 1,751 09-10-2018, 04:47 PM
Последний пост: ntking
  Черный экран, звук есть, после выбора персонажа. Taurus2790 19 5,714 07-12-2016, 11:45 PM
Последний пост: L2scripts-Guard
  Не запускается сервер после переноса значений стат с более старой сборки project1994 4 1,674 07-10-2016, 01:05 PM
Последний пост: Emperor
  Клановое вх пустое после рестарта.. TFH 4 1,576 10-09-2015, 10:38 PM
Последний пост: Daan Raven
  перенос аукциона\осад после рестарта HiredKiller 4 1,635 09-05-2015, 08:42 AM
Последний пост: HiredKiller
  Не могу убрать хиро свечение после удаление статуса Dementor 14 4,469 05-20-2015, 06:40 PM
Последний пост: Dementor
  Потеря после смерти [Shoot] 20 4,250 05-10-2015, 02:02 AM
Последний пост: Donatte

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


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