Package com.l2client.network.game.ClientPackets

Examples of com.l2client.network.game.ClientPackets.CharacterSelect


     *
     */
    //TODO move this out to an own action?
    public void onCharSelected(){
      if(this.selectedObjectId>=0)
        Singleton.get().getClientFacade().sendGamePacket(new CharacterSelect(selected));
      else
        if(this.charSelections.size()>0)
          log.warning("Trying to send a character selection to sever, but no characters selected so far");
        else
          log.warning("Trying to send a character selection to sever, but no characters loaded so far");
View Full Code Here

TOP

Related Classes of com.l2client.network.game.ClientPackets.CharacterSelect

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.