Examples of updateStats()


Examples of l2p.gameserver.model.L2Player.updateStats()

      {
        taxRate = castle.getTaxRate();
      }
    }
    activeChar.sendPacket(new ExBuySellList(TradeController.getInstance().getBuyList(_listId), activeChar, taxRate).done());
    activeChar.updateStats();
  }
}
View Full Code Here

Examples of l2p.gameserver.model.L2Player.updateStats()

        continue;
      }
      warehouse.addItem(inventory.dropItem(found, _items.get(itemObjectId), false), null);
    }
    activeChar.reduceAdena(fee, true);
    activeChar.updateStats();
    // Delete destination L2Player used for freight
    activeChar.sendPacket(Msg.THE_TRANSACTION_IS_COMPLETE);
  }
}
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

      }
    }
    if (update)
    {
      player.sendPacket(new SkillList(player));
      player.updateStats();
    }
  }
 
  /**
   * Method onUnequip.
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

        {
          player.sendPacket(SystemMsg.YOUR_CLOAK_HAS_BEEN_UNEQUIPPED_BECAUSE_YOUR_ARMOR_SET_IS_NO_LONGER_COMPLETE);
        }
      }
      player.sendPacket(new SkillList(player));
      player.updateStats();
    }
  }
}
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

      player.doCast(unequipeSkill, player, true);
    }
    if ((itemSkills.length > 0) || (enchant4Skill != null))
    {
      player.sendSkillList();
      player.updateStats();
    }
  }
 
  /**
   * Method onEquip.
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

      player.addSkill(enchant4Skill, false);
    }
    if ((itemSkills.length > 0) || (enchant4Skill != null))
    {
      player.sendSkillList();
      player.updateStats();
      if (needSendInfo)
      {
        player.sendPacket(new SkillCoolTime(player));
      }
    }
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

      activeChar.sendUserInfo();
    }
    activeChar.updateEffectIcons();
    activeChar.setCurrentHpMp(activeChar.getActiveSubClass().getlogOnHp(),activeChar.getActiveSubClass().getlogOnMp());
    activeChar.setCurrentCp(activeChar.getActiveSubClass().getlogOnCp());
    activeChar.updateStats();   
    if (Config.ALT_PCBANG_POINTS_ENABLED)
    {
      activeChar.sendPacket(new ExPCCafePointInfo(activeChar, 0, 1, 2, 12));
    }
    if (!activeChar.getPremiumItemList().isEmpty())
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

    }
    if (sendList)
    {
      player.sendSkillList();
    }
    player.updateStats();
  }
 
  /**
   * Method onEquip.
   * @param slot int
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

    }
    if (sendReuseList)
    {
      player.sendPacket(new SkillCoolTime(player));
    }
    player.updateStats();
  }
}
View Full Code Here

Examples of lineage2.gameserver.model.Player.updateStats()

    {
      activeChar.getInventory().equipItem(itemToUnnchant);
    }
    activeChar.sendPacket(new InventoryUpdate().addModifiedItem(itemToUnnchant));
    activeChar.sendPacket(new ExBaseAttributeCancelResult(true, itemToUnnchant, element));
    activeChar.updateStats();
  }
}
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.