-1

これが尋ねられたことは知っていますが、役立つものは何も見つかりません。私のコードは次のとおりです。

print("Welcome to Text RPG \n");
function commmand()
print("What do you want to do? \(\"help\" for help\) \n NOTE: MUST BE IN CAPS")
input = io.read()
--condition = input == "HELP" or input == "EAST" or input == "WEST" or input =="NORTH" or                     input == "SOUTH" or input == "SHOP"
     if input == "HELP" or input == "EAST" or input == "WEST" or input =="NORTH" or input==             "SOUTH" or input == "SHOP" then
      --Future game code
    end
    end
    command()

検索してみましたが答えが見つからず、これを尋ねるためだけにアカウントを作成しました

4

1 に答える 1

1
print("Welcome to Text RPG \n");
function command()
    print("What do you want to do? \(\"help\" for help\) \n NOTE: MUST BE IN CAPS")
    input = io.read()
    --condition = input == "HELP" or input == "EAST" or input == "WEST" or input =="NORTH" or input == "SOUTH" or input == "SHOP"
        if input == "HELP" or input == "EAST" or input == "WEST" or input =="NORTH" or input== "SOUTH" or input == "SHOP" then
            --Future game code
        end
end
command()

変更する必要があります:

function commmand()

function command()

削除された に注意してくださいm

于 2013-05-20T02:02:04.160 に答える