Package marauroa.server.game.dbcommand

Examples of marauroa.server.game.dbcommand.LoadActiveCharacterCommand


   * @param msg MessageC2SChooseCharacter
   * @param clientid clientid
   * @param entry PlayerEntry
   */
  private void loadAndPlaceInWorld(MessageC2SChooseCharacter msg, int clientid, PlayerEntry entry) {
    DBCommand command = new LoadActiveCharacterCommand(entry.username, entry.character, this, clientid, msg.getSocketChannel(), msg.getProtocolVersion());
    DBCommandQueue.get().enqueue(command);
  }
View Full Code Here

TOP

Related Classes of marauroa.server.game.dbcommand.LoadActiveCharacterCommand

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.