Package lineage2.gameserver.model

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


      {
        activeChar.stopFishing();
      }
    }
    activeChar.entering = false;
    activeChar.sendUserInfo();
    if (activeChar.isSitting())
    {
      activeChar.sendPacket(new ChangeWaitType(activeChar, ChangeWaitType.WT_SITTING));
    }
    if (activeChar.getPrivateStoreType() != Player.STORE_PRIVATE_NONE)
View Full Code Here


      }
      activeChar.broadcastCharInfo();
    }
    else
    {
      activeChar.sendUserInfo();
    }
    activeChar.updateEffectIcons();
    activeChar.setCurrentHpMp(activeChar.getActiveSubClass().getlogOnHp(),activeChar.getActiveSubClass().getlogOnMp());
    activeChar.setCurrentCp(activeChar.getActiveSubClass().getlogOnCp());
    activeChar.updateStats();   
View Full Code Here

        }
      }
    }
    if (item.isAccessory() || item.getTemplate().isTalisman() || item.getTemplate().isBracelet())
    {
      player.sendUserInfo();
    }
    else
    {
      player.broadcastCharInfo();
    }
View Full Code Here

      return;
    }
    Player player = (Player) actor;
    if (item.isAccessory() || item.getTemplate().isTalisman() || item.getTemplate().isBracelet())
    {
      player.sendUserInfo();
    }
    else
    {
      player.broadcastCharInfo();
    }
View Full Code Here

    Player player = getClient().getActiveChar();
    if (player == null)
    {
      return;
    }
    player.sendUserInfo();
    World.showObjectsToPlayer(player);
  }
}
View Full Code Here

          if (clan != null)
          {
            target.sendPacket(clan.listAll());
            target.sendPacket(new PledgeShowInfoUpdate(clan), Msg.CLAN_HAS_BEEN_CREATED);
            target.updatePledgeClass();
            target.sendUserInfo();
            return true;
          }
          activeChar.sendPacket(Msg.THIS_NAME_ALREADY_EXISTS);
          return false;
        }
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.