06-19-2012, 06:12 PM
Сборка: L2Jfrozen
Как сделать что бы после смерти бафы не слетали, в исходах нашел условия после смерти.
"StopAllEffect" не могу не где найти...
Может кто-то что то может подсказать?
Как сделать что бы после смерти бафы не слетали, в исходах нашел условия после смерти.
"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();
}
}