Example #1
0
  /**
   * This is called every time the AI is asked to respond with a command during their turn
   *
   * @return represents if you want to end your turn. true means end the turn, false means to keep
   *     your turn going and re-call runTurn()
   */
  public boolean runTurn() {
    //        // <<-- Creer-Merge: runTurn -->> - Code you add between this comment and the end
    // comment will be preserved between Creer re-runs.

    myAttackers = warehouseUtilities.getHealthyAndUnbribed(player.warehouses);
    enemyAttackers = warehouseUtilities.getHealthyAndUnbribed(player.otherPlayer.warehouses);
    // joeFiddle();
    //        jeffWeather2();
    //        jeffWeather();
    georgeFiddle();

    //

    if (player.bribesRemaining > 0) {
      System.out.println("BRIBES REMAINING");
    }
    return true;
    // <<-- /Creer-Merge: runTurn -->>
  }