Package l2p.gameserver.model

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


        player.setTransformation(0);
        player.setTransformationName(null);
        player.removeSkill(SkillTable.getInstance().getInfo(cw.getSkillId(), player.getSkillLevel(cw.getSkillId())), false);
        // Remove
        player.getInventory().unEquipItemInBodySlot(L2Item.SLOT_LR_HAND, null);
        player.store(false);
        // Destroy
        if(player.getInventory().destroyItemByItemId(cw.getItemId(), 1, false) == null)
        {
          _log.info("CursedWeaponsManager[395]: Error! Cursed weapon not found!!!");
        }
View Full Code Here


              {
                continue;
              }
              if(Config.AUTOSAVE)
              {
                p.store(true);
              }
              addPlayerTask(p);
            }
            catch(Throwable e)
            {
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.