Package com.l2client.model.network

Examples of com.l2client.model.network.GameServerInfo


    int serverCount = readC();
    readC();//lastServer ?!?! what is this for?
    GameServerInfo[] gameServers = new GameServerInfo[serverCount];

    for (int i = 0; i < serverCount; i++) {
      gameServers[i] = new GameServerInfo();
      gameServers[i].id = readC();
      gameServers[i].ip = new StringBuilder().append(readC()).append(".").append(readC()).append(".").append(readC()).append(".").append(readC()).toString();
      gameServers[i].port = readD();
      gameServers[i].ageLimit = readC();
      gameServers[i].pvp = readC() != 0 ? true : false;
View Full Code Here

TOP

Related Classes of com.l2client.model.network.GameServerInfo

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.