Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.NickNameChanged


      _activeChar.sendStatusUpdate(true, StatusUpdate.KARMA);
    }
    // Проверка тайтла
    if(_title == null && _activeChar.getTitle() != null || _title != null && !_title.equals(_activeChar.getTitle()))
    {
      _activeChar.broadcastPacketToOthers(new NickNameChanged(_activeChar));
    }
  }
View Full Code Here


                this.setTitle("HP " + (int) this.getCurrentHpPercents());
            } else
            {
                this.setTitle("HP " + (int) newHp);
            }
            this.broadcastPacket(new NickNameChanged(this));
        }
        super.checkHpMessages(currentHp, newHp);
    }
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.NickNameChanged

Copyright © 2018 www.massapicom. 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.