Package lineage2.gameserver.model

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


      return;
    }
    if (activeChar.getTitleColor() != Player.DEFAULT_TITLE_COLOR)
    {
      activeChar.setTitleColor(Player.DEFAULT_TITLE_COLOR);
      activeChar.broadcastUserInfo();
    }
  }
}
View Full Code Here


        player.addSkill(SkillTable.getInstance().getInfo(1375, 1));
        player.addSkill(SkillTable.getInstance().getInfo(1376, 1));
      }
      player.sendSkillList();
      player.sendMessage("Admin has changed your hero status.");
      player.broadcastUserInfo();
    }
    else if (fullString.startsWith("admin_setnoble"))
    {
      GameObject target = activeChar.getTarget();
      Player player;
View Full Code Here

        player.sendMessage("Admin changed your noble status, now you are Nobless.");
      }
      player.updatePledgeClass();
      player.updateNobleSkills();
      player.sendSkillList();
      player.broadcastUserInfo();
    }
    else if (fullString.startsWith("admin_setsex"))
    {
      GameObject target = activeChar.getTarget();
      Player player = null;
View Full Code Here

      {
        return false;
      }
      player.changeSex();
      player.sendMessage("Your gender has been changed by a GM");
      player.broadcastUserInfo();
    }
    else if (fullString.startsWith("admin_setcolor"))
    {
      try
      {
View Full Code Here

        {
          return false;
        }
        player.setNameColor(Integer.decode("0x" + val));
        player.sendMessage("Your name color has been changed by a GM");
        player.broadcastUserInfo();
      }
      catch (StringIndexOutOfBoundsException e)
      {
        activeChar.sendMessage("You need to specify the new color.");
      }
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.