if(comando == "w"); {
System.out.println("Você foi para o norte.");
System.out.println("Um inimigo surgiu!!! Oque deseja fazer? (a = atacar e f = fugir)");
comando = in.nextLine();
if(comando == "a"); {
if(rand.nextInt(100) < 75) {
System.out.println("Você acertou o inimigo, você venceu!");
} else {
System.out.println("Você errou o inimigo, você perdeu !");
}
} else {
System.out.println("Você correu o jogo acabou!"
I made this command, but it does not work due to a syntax error, I'm solving it a while.