public void process(StringTokenizer command, String Username) {

    SPlayer p = CampaignMain.cm.getPlayer(Username);
    SHouse h = p.getMyHouse();

    if (!new Boolean(h.getConfig("AllowPersonalPilotQueues")).booleanValue()) return;

    // access check
    if (accessLevel != 0) {
      int userLevel = CampaignMain.cm.getServer().getUserLevel(Username);
      if (userLevel < getExecutionLevel()) {
        CampaignMain.cm.toUser(
            "AM:Insufficient access level for command. Level: "
                + userLevel
                + ". Required: "
                + accessLevel
                + ".",
            Username,
            true);
        return;
      }
    }

    if (command.hasMoreElements()) {

      int unitType = Integer.parseInt(command.nextToken());
      int weightClass = Integer.parseInt(command.nextToken());
      int numberOfPilots = 1;

      if (command.hasMoreTokens()) numberOfPilots = Integer.parseInt(command.nextToken());

      if (p.getPersonalPilotQueue().getPilotQueue(unitType, weightClass).size() > 0
          && !h.getBooleanConfig("AllowPlayerToBuyPilotsFromHouseWhenPoolIsFull")) {
        CampaignMain.cm.toUser(
            "AM:You faction will not let you plunder their pilot reserves while you have perfectly able pilots in your barracks!",
            Username,
            true);
        return;
      }

      // ok the faction will allow them to buy pilots even with them in the queue but how many?
      if (p.getPersonalPilotQueue().getPilotQueue(unitType, weightClass).size() + numberOfPilots
          > Integer.parseInt(h.getConfig("MaxAllowedPilotsInQueueToBuyFromHouse"))) {
        CampaignMain.cm.toUser(
            "AM:Your Faction will only allow you to buy pilots from their reserve when you have "
                + h.getIntegerConfig("MaxAllowedPilotsInQueueToBuyFromHouse")
                + ", or less, pilots in your barracks.",
            Username,
            true);
        return;
      }

      // ok the player has enough space lets see if they have the cash.
      int money = 0;

      if (unitType == Unit.MEK) money = h.getIntegerConfig("CostToBuyNewPilot");
      else money = h.getIntegerConfig("CostToBuyNewProtoPilot");

      if (p.getMoney() < money * numberOfPilots) {
        CampaignMain.cm.toUser(
            "AM:You do not have enough money to procure a new pilot from your faction.("
                + CampaignMain.cm.moneyOrFluMessage(true, true, money)
                + ") needed.",
            Username,
            true);
        return;
      }

      for (int pilotCount = 0; pilotCount < numberOfPilots; pilotCount++) {
        p.addMoney(-money);

        SPilot pilot = h.getNewPilot(unitType);
        // he is fresh out of the queue nothing gets set until he gets placed
        // in a unit!
        p.getPersonalPilotQueue().addPilot(pilot, unitType, weightClass);

        String toUser = "";
        String skills =
            pilot.getSkillString(true, h.getPilotQueues().getBasePilotSkill(unitType)).trim();
        if (unitType == Unit.MEK) {
          toUser =
              "******"
                  + pilot.getName()
                  + " ("
                  + pilot.getGunnery()
                  + "/"
                  + pilot.getPiloting();
          if (skills == null || skills.equals(""))
            toUser +=
                ") from your faction for "
                    + CampaignMain.cm.moneyOrFluMessage(true, true, money)
                    + ".";
          else
            toUser +=
                " "
                    + skills
                    + ") from your faction for "
                    + CampaignMain.cm.moneyOrFluMessage(true, true, money)
                    + ".";
        } else {
          toUser = "******" + pilot.getName() + " (" + pilot.getGunnery();
          if (skills == null || skills.equals(""))
            toUser +=
                ") from your faction for "
                    + CampaignMain.cm.moneyOrFluMessage(true, true, money)
                    + ".";
          else
            toUser +=
                " "
                    + skills
                    + ") from your faction for "
                    + CampaignMain.cm.moneyOrFluMessage(true, true, money)
                    + ".";
        }
        CampaignMain.cm.toUser(toUser, Username, true);
        // CampaignMain.cm.toUser("PL|PPQ|"+p.getPersonalPilotQueue().toString(true),Username,false);
        CampaignMain.cm.toUser(
            "PL|AP2PPQ|" + unitType + "|" + weightClass + "|" + pilot.toFileFormat("#", true),
            Username,
            false);
      }
    } // end hasMoreElements
  } // end process
Example #2
0
  public void process(StringTokenizer command, String Username) {

    if (accessLevel != 0) {
      int userLevel = CampaignMain.cm.getServer().getUserLevel(Username);
      if (userLevel < getExecutionLevel()) {
        CampaignMain.cm.toUser(
            "AM:Insufficient access level for command. Level: "
                + userLevel
                + ". Required: "
                + accessLevel
                + ".",
            Username,
            true);
        return;
      }
    }

    /*
     * A command which builds a new mech for a player if: 1)he has enough
     * money and influence, and the room in which to place a new unit 2)the
     * given factory is open to make that weight unit, and the PP to do so
     *
     * Note that players may define the planet they want to produce with, if
     * not, the planet is selected at random from the avaliable pool of
     * producing planets. This is in order to allow players to select world
     * with specific tech biases, or specific faction tables, if they so
     * desire (ie - a Marik really wants a unit from that captured Steiner
     * assault world).
     *
     * USAGE: /c request#Weighclass#Unit Type#Planet#Factory Name - Planet &
     * Factory are optional, but fac must be given if a planet is given
     */

    // get the player
    SPlayer p = CampaignMain.cm.getPlayer(Username);

    // set some defaults ...
    SPlanet planet = null;
    SUnitFactory factory = null;
    boolean needsMoreTechs = false; // used to make clickthrough

    String result = "";

    // get the requested weightclass
    String weightstring = command.nextToken();

    // check to see if the player is in SOL and trying to get new units
    if (p.getMyHouse().isNewbieHouse()) {

      if (weightstring.equals("resetunits")) {
        NewbieHouse nh = (NewbieHouse) p.getMyHouse();
        CampaignMain.cm.toUser(nh.requestNewMech(p, false, null), Username, true);
        return;
      }

      // else
      result =
          CampaignMain.cm.getConfig("NewbieHouseName")
              + " players may not purchase new units; however, they may reset their units.";
      result +=
          "<br><a href=\"MEKWARS/c request#resetunits\">Click here to request a reset of your units.</a>";
      CampaignMain.cm.toUser(result, Username, true);
      return;
    }

    // boot the player's request if he has unmaintained units
    if (p.hasUnmaintainedUnit()) {
      CampaignMain.cm.toUser(
          "AM:Your faction refuses to assign new units to you force while units in your hangar are unmaintained!",
          Username,
          true);
      return;
    }

    // if the player qualifies for welfare, give him a unit.
    if (p.mayAcquireWelfareUnits()) {
      SHouse house = p.getMyHouse();
      SUnit unit = buildWelfareMek(house.getName());

      SPilot pilot = house.getNewPilot(unit.getType());
      unit.setPilot(pilot);
      p.addUnit(unit, true);
      CampaignMain.cm.toUser(
          "AM:High Command has given you a new unit from its welfare rolls to help you get back on your feet!",
          Username,
          true);
      if (CampaignMain.cm.isKeepingUnitHistory()) {
        CampaignMain.cm.MySQL.addHistoryEntry(
            HistoryHandler.HISTORY_TYPE_UNIT,
            unit.getDBId(),
            HistoryHandler.UNIT_CREATED,
            unit.getProducer());
        CampaignMain.cm.MySQL.addHistoryEntry(
            HistoryHandler.HISTORY_TYPE_UNIT,
            unit.getDBId(),
            HistoryHandler.UNIT_PRODUCED_BY_WELFARE,
            "Activated from garrison duty and assigned to combat duty.");
        CampaignMain.cm.MySQL.addHistoryEntry(
            HistoryHandler.HISTORY_TYPE_PILOT,
            pilot.getDBId(),
            HistoryHandler.PILOT_ASSIGNED,
            "Assigned to " + unit.getModelName());
        CampaignMain.cm.MySQL.addHistoryEntry(
            HistoryHandler.HISTORY_TYPE_UNIT,
            unit.getDBId(),
            HistoryHandler.PILOT_ASSIGNED,
            pilot.getName() + " assigned to unit");
      }
      return;
    }

    int weightclass;
    try { // try as an int (eg - 4 for assault)
      weightclass = Integer.parseInt(weightstring);
    } catch (Exception ex) { // formatting error. look for a string.
      weightclass = Unit.getWeightIDForName(weightstring.toUpperCase());
    }

    // get the requested unit type
    int type_id = Unit.MEK; // default to Mek
    String typestring = command.nextToken();
    try { // try as int
      type_id = Integer.parseInt(typestring);
    } catch (Exception ex) { // ex, so retry as string
      type_id = Unit.getTypeIDForName(typestring);
    }

    // break out if player lacks experience to buy weightclass
    if (!p.mayUse(weightclass)) {
      CampaignMain.cm.toUser(
          "AM:You are not experienced enough to use "
              + Unit.getWeightClassDesc(weightclass)
              + " units.",
          Username,
          true);
      return;
    }

    if (!Boolean.parseBoolean(
        p.getSubFaction()
            .getConfig(
                "CanBuyNew"
                    + Unit.getWeightClassDesc(weightclass)
                    + Unit.getTypeClassDesc(type_id)))) {
      CampaignMain.cm.toUser(
          "AM:Sorry as a member of "
              + p.getSubFactionName()
              + " you are unable to purchase this unit.",
          Username);
      return;
    }

    if (!p.hasRoomForUnit(type_id, weightclass)) {
      CampaignMain.cm.toUser(
          "AM:Sorry, you already have the maximum number of "
              + Unit.getWeightClassDesc(weightclass)
              + " "
              + Unit.getTypeClassDesc(type_id)
              + "s",
          Username);
      return;
    }

    /*
     * Check to see if a planet and factory names are specified. If they
     * are, fetch the planet and factory and make sure the user entered a
     * legal combo.
     */
    String planetName = "";
    String factoryName = "";

    if (command.hasMoreElements()) {

      planetName = command.nextToken();
      planet = (SPlanet) CampaignMain.cm.getData().getPlanetByName(planetName);
      if (planet == null) {
        CampaignMain.cm.toUser("AM:Could not find planet: " + planetName + ".", Username, true);
        return;
      }

      // make sure the player's faction owns the world
      if (!planet.getOwner().equals(p.getMyHouse())) {
        CampaignMain.cm.toUser(
            "AM:Your faction does not control " + planetName + ".", Username, true);
        return;
      }

      // make sure the planet makes units of the desired weightclass
      if (planet.getFactoriesOfWeighclass(weightclass).size() == 0) {
        CampaignMain.cm.toUser(
            planetName + " does not produce units of the weight class specified.", Username, true);
        return;
      }

      // check for a factory name token
      try {
        factoryName = command.nextToken();
      } catch (NoSuchElementException e) {
        CampaignMain.cm.toUser(
            "AM:You requested a unit from "
                + planetName
                + ", but did not specifiy which factory to use.",
            Username,
            true);
        return;
      }

      // make sure the named factory exists
      Vector<SUnitFactory> namedFactories = planet.getFactoriesByName(factoryName);
      if (namedFactories.size() == 0) {
        CampaignMain.cm.toUser(
            "AM:There is no " + factoryName + " on " + planetName + ".", Username, true);
        return;
      }

      /*
       * make sure one of the named factories produces units of the right
       * size NOTE: Because of how this is being done, the same name can
       * be used for more than one factory on a planet, but only if
       * they're produce unique weightclasses. Any name duping in a
       * weightclass will cause odd behaviour.
       */
      for (SUnitFactory currFac : namedFactories) {

        if (currFac.getWeightclass() == weightclass) {
          factory = currFac;
          break;
        }
      }
      if (factory == null) {
        CampaignMain.cm.toUser(
            factoryName
                + " on "
                + planetName
                + " does not produce units of the requested weightclass.",
            Username,
            true);
        return;
      }

      if (factory.getAccessLevel() > p.getSubFactionAccess()) {
        CampaignMain.cm.toUser(
            "You do not have sufficient rank to purchase a unit from "
                + factoryName
                + " on "
                + planetName
                + ".",
            Username);
        return;
      }

      // make sure the named factory can produce the requested type
      if (!factory.canProduce(type_id)) {
        CampaignMain.cm.toUser(
            factoryName + " on " + planetName + " does not produce units of the requested type.",
            Username,
            true);
        return;
      }

      // return if the factory is refreshing
      if (factory.getTicksUntilRefresh() > 0) {
        CampaignMain.cm.toUser(
            factoryName
                + " is currently refreshing. "
                + factory.getTicksUntilRefresh()
                + " miniticks remaining.",
            Username,
            true);
        return;
      }
    }

    /*
     * No more tokens were given. Pick a random factory from those which
     * originally belonged to the the faction. If we cannot find a factory,
     * we should return a failure.
     */
    else {
      factory = p.getMyHouse().getNativeFactoryForProduction(type_id, weightclass, true);
      if (factory != null) {
        planet = factory.getPlanet();
      }
    }
    if (planet == null || factory == null) {
      CampaignMain.cm.toUser(
          "AM:No "
              + p.getMyHouse().getName()
              + " factory is available to fill your order at this time (Click on icon in House Status to use captured factories).",
          Username,
          true);
      return;
    }

    // get prices for the unit
    int mechCbills = factory.getPriceForUnit(weightclass, type_id);
    int mechInfluence = factory.getInfluenceForUnit(weightclass, type_id);
    int mechPP = factory.getPPCost(weightclass, type_id);

    // adjust by multipliers if this is a non-original owner.
    SHouse playerHouse = p.getMyHouse();
    if (!factory.getFounder().equalsIgnoreCase(playerHouse.getName())) {
      mechCbills =
          Math.round(mechCbills * CampaignMain.cm.getFloatConfig("NonOriginalCBillMultiplier"));
      mechInfluence =
          Math.round(
              mechInfluence * CampaignMain.cm.getFloatConfig("NonOriginalInfluenceMultiplier"));
      mechPP =
          Math.round(mechPP * CampaignMain.cm.getFloatConfig("NonOriginalComponentMultiplier"));
    }

    // Add penalty if the player is over a sliding limit
    if (p.willHaveHangarPenalty(type_id, weightclass)) {
      int costPenalty = p.calculateHangarPenaltyForNextPurchase(type_id, weightclass);
      mechCbills += costPenalty;
    }

    // reduce flu cost to ceiling if over
    if (mechInfluence > CampaignMain.cm.getIntegerConfig("InfluenceCeiling")) {
      mechInfluence = CampaignMain.cm.getIntegerConfig("InfluenceCeiling");
    }

    // check to see if the player & house can afford the unit
    boolean hasEnoughMoney = false;
    boolean hasEnoughInfluence = false;
    boolean factionHasEnoughPP = false;

    if (p.getMoney() >= mechCbills) {
      hasEnoughMoney = true;
    }
    if (p.getInfluence() >= mechInfluence) {
      hasEnoughInfluence = true;
    }
    if (playerHouse.getPP(weightclass, type_id) >= mechPP) {
      factionHasEnoughPP = true;
    }

    if (hasEnoughMoney && hasEnoughInfluence && factionHasEnoughPP) {

      // check to make sure the player has enough support for the unit
      // requested
      int spaceTaken =
          SUnit.getHangarSpaceRequired(type_id, weightclass, 0, "null", p.getMyHouse());
      if (spaceTaken > p.getFreeBays()) {
        needsMoreTechs = true;
      }

      // find out if your are using advanced repair if so buy bays instead
      // of hiring techs.
      boolean useBays = CampaignMain.cm.isUsingAdvanceRepair();

      // if the player needs more techs/bays, make a compound link and
      // return
      if (needsMoreTechs) {

        int techCost = p.getTechHiringFee();
        if (useBays) {
          techCost = CampaignMain.cm.getIntegerConfig("CostToBuyNewBay");
        }

        int numTechs = spaceTaken - p.getFreeBays();
        techCost = techCost * numTechs;
        int totalCost = techCost + mechCbills;
        StringBuilder toSend = new StringBuilder();

        // if the player can't afford to pay for more support, tell him
        // so and return w/o a link.
        if (totalCost > p.getMoney()) {

          toSend.append(
              "AM:Command will not release a new unit to you unless support is in place; however, you cannot afford to buy the unit *and* ");
          if (useBays) {
            toSend.append(" purchase the necessary bayspace");
          } else {
            toSend.append(" hire technicians");
          }
          toSend.append(
              ". The total cost would be "
                  + CampaignMain.cm.moneyOrFluMessage(true, true, totalCost)
                  + ", but you only have "
                  + CampaignMain.cm.moneyOrFluMessage(true, true, p.getMoney())
                  + ".");

          CampaignMain.cm.toUser(toSend.toString(), Username, true);
          return;
        }

        toSend.append(
            "AM:Quartermaster command will not send a new unit to your force until support resources are in place. You will need to ");
        if (useBays) {
          toSend.append("purchase " + numTechs + " more bays");
        } else {
          toSend.append("hire " + numTechs + " more technicians");
        }

        toSend.append(
            " at a cost of "
                + CampaignMain.cm.moneyOrFluMessage(true, true, techCost)
                + ". Combined cost of the new unit and necessary ");
        if (useBays) {
          toSend.append("bays");
        } else {
          toSend.append("techs");
        }
        toSend.append(
            " is "
                + CampaignMain.cm.moneyOrFluMessage(true, true, (mechCbills + techCost))
                + " and "
                + CampaignMain.cm.moneyOrFluMessage(false, true, mechInfluence)
                + ".");
        toSend.append(
            "<br><a href=\"MEKWARS/c hireandrequestnew#"
                + numTechs
                + "#"
                + Unit.getWeightClassDesc(weightclass)
                + "#"
                + type_id
                + "#"
                + planet.getName()
                + "#"
                + factory.getName()
                + "\">Click here to purchase both the unit and the needed support.</a>");

        CampaignMain.cm.toUser(toSend.toString(), Username, true);

        return;
      }

      SPilot pilot = playerHouse.getNewPilot(type_id);
      CampaignData.mwlog.dbLog(
          "Pulled pilot: " + pilot.toFileFormat("$", false) + " (DBId: " + pilot.getDBId() + ")");

      if (CampaignMain.cm.isUsingMySQL()) {
        pilot.toDB(type_id, -1);
      }

      CampaignData.mwlog.dbLog(
          "Pilot saved: " + pilot.toFileFormat("$", false) + " (DBId: " + pilot.getDBId() + ")");

      Vector<SUnit> mechs = factory.getMechProduced(type_id, pilot);
      StringBuffer results = new StringBuffer();
      if (playerHouse.getBooleanConfig("UseCalculatedCosts")) {
        mechCbills = 0;
      }
      for (SUnit mech : mechs) {
        if (playerHouse.getBooleanConfig("UseCalculatedCosts")) {
          double unitCost = mech.getEntity().getCost(false);
          if (unitCost < 1) {
            unitCost = playerHouse.getPriceForUnit(mech.getWeightclass(), mech.getType());
          }
          double costMod = playerHouse.getDoubleConfig("CostModifier");

          mechCbills += (int) Math.round(unitCost * costMod);
          if (mechCbills > p.getMoney()) {
            CampaignMain.cm.toUser(
                "You could not afford the selected unit. Please try again", Username);
            return;
          }
        }

        if (CampaignMain.cm.getBooleanConfig("AllowPersonalPilotQueues")
            && mech.isSinglePilotUnit()) {
          SPilot pilot1 = (SPilot) mech.getPilot();
          SPilot pilot2 = new SPilot("Vacant", 99, 99);
          mech.setPilot(pilot2);

          if (!pilot1.getName().equalsIgnoreCase("Vacant")) {
            playerHouse.getPilotQueues().addPilot(mech.getType(), pilot1, true);
          }
        }

        p.addUnit(mech, true); // give the actual unit...
        results.append(mech.getModelName());
        results.append(", ");

        // Add unit history, if it's being kept
        if (CampaignMain.cm.isKeepingUnitHistory()) {
          CampaignMain.cm.MySQL.addHistoryEntry(
              HistoryHandler.HISTORY_TYPE_UNIT,
              mech.getDBId(),
              HistoryHandler.UNIT_CREATED,
              mech.getProducer());
          CampaignMain.cm.MySQL.addHistoryEntry(
              HistoryHandler.HISTORY_TYPE_UNIT,
              mech.getDBId(),
              HistoryHandler.UNIT_BOUGHT_FROM_FACTORY,
              "Purchased from " + factory.getName() + " on " + factory.getPlanet().getName());
        }
      }

      results.delete(results.length() - 2, results.length());
      p.addMoney(-mechCbills); // then take away money
      p.addInfluence(-mechInfluence); // and take away influence

      // we're going to build the unit. set up a houseupdate string.
      StringBuilder hsUpdates = new StringBuilder();

      // set the refresh miniticks
      hsUpdates.append(
          factory.addRefresh(
              (CampaignMain.cm.getIntegerConfig(
                          Unit.getWeightClassDesc(factory.getWeightclass()) + "Refresh")
                      * 100)
                  / factory.getRefreshSpeed(),
              false));
      hsUpdates.append(playerHouse.addPP(weightclass, type_id, -mechPP, false)); // remove
      // PP
      // from
      // the
      // faction

      result = "AM:You've been granted the following " + results.toString() + ". (-";
      result +=
          CampaignMain.cm.moneyOrFluMessage(true, false, mechCbills)
              + " / -"
              + CampaignMain.cm.moneyOrFluMessage(false, true, mechInfluence)
              + ")";
      CampaignData.mwlog.mainLog(
          p.getName()
              + " bought the following "
              + results.toString()
              + " from "
              + factory.getName()
              + " on "
              + planet.getName());
      CampaignMain.cm.toUser(result, Username, true);
      CampaignMain.cm.doSendHouseMail(
          playerHouse,
          "NOTE",
          p.getName()
              + " bought the following "
              + results.toString()
              + " from "
              + factory.getName()
              + " on "
              + planet.getName()
              + "!");

      // send update to all players
      CampaignMain.cm.doSendToAllOnlinePlayers(playerHouse, "HS|" + hsUpdates.toString(), false);

      return;
    } // end if(enough money/influence/pp)
    else if (!hasEnoughMoney || !hasEnoughInfluence) { // tell the player
      // what he needs to
      // buy the unit
      result =
          "AM:You need at least "
              + CampaignMain.cm.moneyOrFluMessage(true, false, mechCbills)
              + " and "
              + CampaignMain.cm.moneyOrFluMessage(false, true, mechInfluence)
              + " to request a "
              + Unit.getTypeClassDesc(type_id)
              + " of this weight class from a factory.";
      CampaignMain.cm.toUser(result, Username, true);
      return; // break out ...
    } // end else(player has too few money or too little Influence)
    else if (!factionHasEnoughPP) { // tell the player that the faction needs
      // more PP
      result =
          "AM:Your faction does not have the components needed to produce such a unit at this time. Wait for your faction to gather more resources.";
      CampaignMain.cm.toUser(result, Username, true);
      return; // break out ...
    } // end else (not enough PP in faction)
  } // end process()
Example #3
0
  public void process(StringTokenizer command, String Username) {

    /*
     * Never check access level for register, but DO check
     * to ensure that a player is enrolled in the campaign.
     */
    if (CampaignMain.cm.getPlayer(Username) == null) {
      CampaignMain.cm.toUser(
          "<font color=\"navy\"><br>---<br>You must have a campaign account in order to register a nickname. [<a href=\"MEKWARS/c enroll\">Click to get started</a>]<br>---<br></font>",
          Username,
          true);
      return;
    }

    try {
      StringTokenizer str = new StringTokenizer(command.nextToken(), ",");
      String regname = "";
      String pw = "";
      String email = "";
      SPlayer player = null;

      try {
        regname = str.nextToken().trim().toLowerCase();
        if (CampaignMain.cm.requireEmailForRegistration()) email = str.nextToken();
        pw = str.nextToken();
      } catch (Exception ex) {
        CampaignData.mwlog.errLog("Failure to register: " + regname);
        return;
      }

      // Check to see if the Username is already registered
      boolean regged = false;
      try {
        // MWPasswd.getRecord(regname, null);
        player = CampaignMain.cm.getPlayer(regname);
        if (player.getPassword() != null && player.getPassword().access >= 2) regged = true;
      } catch (Exception ex) {
        // Username already registered, ignore error.
        // CampaignData.mwlog.errLog(ex);
        regged = true;
      }

      if (regged && !CampaignMain.cm.getServer().isAdmin(Username)) {
        CampaignMain.cm.toUser("AM:Nickname \"" + regname + "\" is already registered!", Username);
        // CampaignData.mwlog.modLog(Username + " tried to register the nickname \"" + regname +
        // "\", which was already registered.");
        CampaignMain.cm.doSendModMail(
            "NOTE",
            Username
                + " tried to register the nickname \""
                + regname
                + "\", which was already registered.");
        return;
      }

      // check passwd length
      if (pw.length() < 3 && pw.length() > 11) {
        CampaignMain.cm.toUser("AM:Passwords must be between 4 and 10 characters!", Username);
        return;
      }

      // Check for phpBB integration - there are a lot of possible outcomes here.
      if (CampaignMain.cm.isSynchingBB())
        if (!CampaignMain.cm.MySQL.addUserToForum(Username, pw, email)) {
          CampaignMain.cm.doSendModMail(
              "NOTE",
              "Server was unable to send registration email to "
                  + Username
                  + ".  Staff will need to give him his activation key.");
          CampaignMain.cm.toUser(
              "AM: The server was unable to send your registration email.  Please ask staff for assistance.",
              Username,
              true);
        }

      // change userlevel
      int level = -1;
      if (CampaignMain.cm.getServer().isAdmin(Username)) {
        MWPasswd.writeRecord(regname, IAuthenticator.ADMIN, pw);
        level = IAuthenticator.ADMIN;
      } else {
        MWPasswd.writeRecord(regname, IAuthenticator.REGISTERED, pw);
        level = IAuthenticator.REGISTERED;
      }

      // send the userlevel change to all players
      CampaignMain.cm.getServer().getClient(regname).setAccessLevel(level);
      CampaignMain.cm.getServer().getUser(regname).setLevel(level);
      CampaignMain.cm.getServer().sendRemoveUserToAll(regname, false);
      CampaignMain.cm.getServer().sendNewUserToAll(regname, false);

      if (player != null) {
        CampaignMain.cm.doSendToAllOnlinePlayers(
            "PI|DA|" + CampaignMain.cm.getPlayerUpdateString(player), false);
      }
      if (CampaignMain.cm.isUsingMySQL() && player != null) {
        CampaignMain.cm.MySQL.setPlayerPassword(
            CampaignMain.cm.MySQL.getPlayerIDByName(Username), pw);
        CampaignMain.cm.MySQL.setPlayerAccess(
            CampaignMain.cm.MySQL.getPlayerIDByName(Username), level);
        if (CampaignMain.cm.isSynchingBB()) {
          // CampaignMain.cm.MySQL.addUserToForum(Username, pw, email);
          player.setForumID(CampaignMain.cm.MySQL.getUserForumID(Username, email));
          CampaignMain.cm.MySQL.addUserToHouseForum(
              player.getForumID(), player.getMyHouse().getForumID());
        }
      }
      // acknowledge registration
      CampaignMain.cm.toUser("AM:\"" + regname + "\" successfully registered.", Username);
      CampaignData.mwlog.modLog("New nickname registered: " + regname);
      CampaignMain.cm.doSendModMail(
          "NOTE", "New nickname registered: " + regname + " by: " + Username);

    } catch (Exception e) {
      CampaignData.mwlog.errLog(e);
      CampaignData.mwlog.errLog("^ Not supposed to happen! ^");
      CampaignData.mwlog.errLog(e);
      CampaignData.mwlog.errLog("Not supposed to happen");
    }
  }