0

さて、私はプレイヤーがキャラクターの名前と性別を設定できるように便利な限りドキュメントに従っていますが、1 つの問題があります。これは実際にはゲームプレイにはまったく影響しませんが (私が見た限り)、性別の部分を追加して以来、プレイヤーが自分の名前を入力するとすぐに、一見理由もなく「それは私が認識できる動詞ではありません」というメッセージが表示されます。 . これは、性別の選択を追加する前には起こりませんでした。

コード:

The player's forename is an indexed text that varies. The player's full name is an indexed text that varies.

When play begins:
    now the command prompt is "What is your name? > ".

To decide whether collecting names:
    if the command prompt is "What is your name? > ", yes;
    no.

After reading a command when collecting names:
    now the player's full name is "[the player's command in title case]";
    now the player's forename is word number 1 in the player's full name;
    now the command prompt is "Are you male or female? > ".

Gender is a kind of value. The genders are masculine, feminine, and unknown. Understand "male", "man", "boy" or "m" as masculine. Understand "female", "woman", "girl" or "f" as feminine.

A person has a gender. The gender of the player is unknown.

To decide whether the gender of the player is unknown:
    if the command prompt is "Are you male or female? > ", yes;
    no.

After reading a command when the gender of the player is unknown:
    if the player's command includes "[gender]":
        now the gender of the player is the gender understood;
        if the gender of the player is masculine, now the player is male;
        if the gender of the player is feminine, now the player is female;
        now the command prompt is "> ";
        say "Thank you, [player's forename].[paragraph break]";
        say "[banner text]";
        move the player to the bed;
        reject the player's command.

Instead of looking when collecting names: do nothing.
Rule for printing the banner text when collecting names: do nothing.
Rule for constructing the status line when collecting names: do nothing.
Instead of looking when the gender of the player is unknown: do nothing.
Rule for printing the banner text when the gender of the player is unknown: do nothing.
Rule for constructing the status line when the gender of the player is unknown: do nothing.

これが多くのコードである場合は申し訳ありません ^.^'

繰り返しますが、これは機能には影響しませんが、そのメッセージがポップアップ表示されるのは見苦しいだけです.

4

1 に答える 1