我正在尝试创建一个基于随机生成的简单文本的格斗游戏,并创建了游戏逻辑(ish)。现在我想使用 TextIO 接收输入。我知道如何接收一个 char、boolean、int 和 double。我尝试过使用它(缺少所有其他游戏逻辑),但它不起作用
String input = null;
input = TextIO.getlnString();
if (input == "help"){
System.out.println("You are currently in "+ sTerrain + " terrain.\nAre you fighting: " + sFighting
+ "\nAre you alive: " + sLife + "\nAre there any NPC's: " + sNpc
+ "\nWhich type of NPCs: " + npc + "\nYour health is: " + currHealth + "/" + health);
} // Closes off help
如果有人对 TextIO 有一定的专业知识,并且可以帮助我使用相同的字符串允许不同输入的多个输出,那将不胜感激
-约旦