Examples of CharCreateOk


Examples of com.l2client.network.game.ServerPackets.CharCreateOk

        break;
      case 0x0d:
//        pa = new NewCharacterSuccess();
        break;
      case 0x0f:
        pa = new CharCreateOk();
        break;
      case 0x10:
        pa = new CharCreateFail();
        break;
      case 0x11:
View Full Code Here

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

      newChar.setCurrentCp(0); //L2Off like
      newChar.setCurrentMp(newChar.getMaxMp());//L2Off like
      //newChar.setMaxLoad(template.baseLoad);

      // send acknowledgement
      sendPacket(new CharCreateOk()); // Success
      initNewChar(getClient(), newChar);
    }
  }
View Full Code Here

Examples of net.sf.l2j.gameserver.serverpackets.CharCreateOk

    newChar.setCurrentCp(template.baseCpMax);
    newChar.setCurrentMp(template.baseMpMax);
    //newChar.setMaxLoad(template.baseLoad);

    // send acknowledgement
    CharCreateOk cco = new CharCreateOk();
    sendPacket(cco);

    initNewChar(getClient(), newChar);
  }
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.