I am creating a board game and i have pretty much everything working fine. When i click the roll dice button everything works fine but then when i click it again all my integers and strings return to the default and nothing saves so none of the scores are recorded.
I am using methods and passing the integers into them and returning the results which is working fine, but only the 1st time because the return value does not save for the next time i click the roll button. Can anyone help please?
The problem here is that it is constantly given me player1, when after each click of the button it should be changing from player 1 and player 2
int randomMethod;
Random r = new Random();
Life l = new Life();
int [] p1 = l.firstPlayer;
int [] p2 = l.secondPlayer;
BoardGUI b = new BoardGUI();
String player;
String thePlayer = "player2";
public String aCurrentPlayer(String thePlayer){
if (thePlayer.equals("player1")){
thePlayer = "player2";
}
else if (thePlayer.equals("player2")){
thePlayer = "player1";
}
else{
JOptionPane.showMessageDialog(null,"There is an error here!");
}
return thePlayer;
}
if (randomMethod == 23) {
Life choices = new Life();
thePlayer = aCurrentPlayer(thePlayer);
JOptionPane.showMessageDialog(null,"?????????????????"+thePlayer);
choices.foodshop(p1,thePlayer);
// choices.foodshop(p2, player);
}