Package com.l2jfrozen.gameserver.network.serverpackets

Examples of com.l2jfrozen.gameserver.network.serverpackets.CharSelectInfo


      client.closeNow();
      return;
    }
   
    // Send char list
    CharSelectInfo cl = new CharSelectInfo(client.getAccountName(), client.getSessionId().playOkID1);
    client.getConnection().sendPacket(cl);
    client.setCharSelection(cl.getCharInfo());

    if(Config.DEBUG)
      _log.fine("DEBUG "+getType()+": Character init end");
  }
View Full Code Here


    {
      getClient().closeNow();
      return;
    }
   
    CharSelectInfo cl = new CharSelectInfo(getClient().getAccountName(), getClient().getSessionId().playOkID1, 0);
    sendPacket(cl);
    getClient().setCharSelection(cl.getCharInfo());
  }
View Full Code Here

                  //before the char selection, check shutdown status
                  if(GameServer.getSelectorThread().isShutdown()){
                    wcToRemove.gameClient.getConnection().sendPacket(new AuthLoginFail(1));
                    wcToRemove.gameClient.closeNow();
                  }else{
                    CharSelectInfo cl = new CharSelectInfo(wcToRemove.account, wcToRemove.gameClient.getSessionId().playOkID1);
                    wcToRemove.gameClient.getConnection().sendPacket(cl);
                    wcToRemove.gameClient.setCharSelection(cl.getCharInfo());
                    cl = null;
                  }
                 
                }
                else
View Full Code Here

   
    // Restart true
    sendPacket(RestartResponse.valueOf(true));
   
    // send char list
    CharSelectInfo cl = new CharSelectInfo(client.getAccountName(), client.getSessionId().playOkID1);
    sendPacket(cl);
    client.setCharSelection(cl.getCharInfo());
  }
View Full Code Here

    {
      getClient().closeNow();
      return;
    }

    CharSelectInfo cl = new CharSelectInfo(getClient().getAccountName(), getClient().getSessionId().playOkID1, 0);
    sendPacket(cl);
    getClient().setCharSelection(cl.getCharInfo());
  }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.CharSelectInfo

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.