public void setDice(int newDiceA, int diceA) {//setter for diceA, sets it to a new value
diceA = newDiceA;
}//end setDice


Why are you passing it diceA again? What you are doing, I...