L2NpcInstance actor = getActor();
if(actor == null || attacker == null || attacker.getPlayer() == null)
{
return;
}
actor.startAttackStanceTask();
// Ругаемся и кастуем скилл не чаще, чем раз в 3 секунды
if(System.currentTimeMillis() - _lastAction > 3000)
{
int chance = Rnd.get(0, 100);
if(chance < 2)