Examples of EtcStatusUpdate


Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

      if (effect.numCharges < getNumCharges())
      {
        effect.numCharges++;
        if (caster instanceof L2PcInstance)
        {
          caster.sendPacket(new EtcStatusUpdate((L2PcInstance)caster));
          SystemMessage sm = new SystemMessage(SystemMessageId.FORCE_INCREASED_TO_S1);
          sm.addNumber(effect.numCharges);
          caster.sendPacket(sm);
        }
      }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

        double modifier = 0;
        modifier = (effect.numCharges-getNumCharges())*0.33;
    if (getTargetType() != SkillTargetType.TARGET_AREA && getTargetType() != SkillTargetType.TARGET_MULTIFACE)
      effect.numCharges -= getNumCharges();
    if (caster instanceof L2PcInstance)
      caster.sendPacket(new EtcStatusUpdate((L2PcInstance)caster));
        if (effect.numCharges == 0)
          {effect.exit();}
        for (int index = 0;index < targets.length;index++)
        {
          L2ItemInstance weapon = caster.getActiveWeaponInstance();
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

        else
        {
          super.removeSkill(getKnownSkill(4270));
        }
       
        sendPacket(new EtcStatusUpdate(this));
        Broadcast.toKnownPlayers(this, new CharInfo(this));
      }
    }
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

      else
      {
        super.removeSkill(getKnownSkill(4267));
      }
     
      sendPacket(new EtcStatusUpdate(this));
    }
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

      {
        _chatUnbanTask.cancel(false);
      }
      _chatUnbanTask = null;
    }
    sendPacket(new EtcStatusUpdate(this));
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

   * @param mode the new message refusal
   */
  public void setMessageRefusal(boolean mode)
  {
    _messageRefusal = mode;
    sendPacket(new EtcStatusUpdate(this));
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

   
    restoreSkills();
    regiveTemporarySkills();
    rewardSkills();
    restoreEffects();
    sendPacket(new EtcStatusUpdate(this));
   
    // if player has quest 422: Repent Your Sins, remove it
    QuestState st = getQuestState("422_RepentYourSins");
   
    if (st != null)
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

  @Override
  public void doRevive()
  {
    super.doRevive();
    updateEffectIcons();
    sendPacket(new EtcStatusUpdate(this));
    _reviveRequested = 0;
    _revivePower = 0;
   
    if (isInParty() && getParty().isInDimensionalRift())
    {
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

   * @param val the new charm of courage
   */
  public void setCharmOfCourage(boolean val)
  {
    _charmOfCourage = val;
    sendPacket(new EtcStatusUpdate(this));
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.EtcStatusUpdate

    }
   
    _deathPenaltyBuffLevel++;
   
    addSkill(SkillTable.getInstance().getInfo(5076, getDeathPenaltyBuffLevel()), false);
    sendPacket(new EtcStatusUpdate(this));
    SystemMessage sm = new SystemMessage(SystemMessageId.DEATH_PENALTY_LEVEL_S1_ADDED);
    sm.addNumber(getDeathPenaltyBuffLevel());
    sendPacket(sm);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.