@tryashtar
@moesh
Thank you for your response.
Actually, it is not the score value that is important, but the ability to change the player-specific Japanese text that is displayed, depending on the player narrowed down by the target selector.
For example, to assign different positions to multiple players, the current specification requires the following statement.
execute as @a run execute if entity @s[tag=crew] run tellraw @a "私はクルーメイトです。"
execute as @a run execute if entity @s[tag=impostor] run tellraw @a "私はインポスターです。"
execute as @a run execute if entity @s[tag=guardian_angel] run tellraw @a "私は守護天使です。"
execute as @a run execute if entity @s[tag=scientist] run tellraw @a "私は科学者です。"
execute as @a run execute if entity @s[tag=engineer] run tellraw @a "私はエンジニアです。"
execute as @a run execute if entity @s[tag=shapeshifter] run tellraw @a "私はシェイプシフターです。"
This writing style increases the number of lines for each additional position.
Furthermore, when such commands must be executed multiple times, the number of command lines and executions can be enormous.
However, if only the "value" key works, you can write the following.
execute as @a run tellraw @a ["私は",{"score":{"name":"@s[tag=crew]","objective":"TEST","value":"クルーメイト"}},{"score":{"name":"@s[tag=impostor]","objective":"TEST","value":"インポスター"}},{"score":{"name":"@s[tag=guardian_angel]","objective":"TEST","value":"守護天使"}},{"score":{"name":"@s[tag=scientist]","objective":"TEST","value":"科学者"}},{"score":{"name":"@s[tag=engineer]","objective":"TEST","value":"エンジニア"}},{"score":{"name":"@s[tag=shapeshifter]","objective":"TEST","value":"シェイプシフター"}},"です。"]
It is a little long, but only one line is needed.
This is how we plan to use it.
Incidentally, if it is possible to give Japanese tags with the tag command, the same thing can be done.
@tryashtar
@Dhranios
Someone asked the same question a long time ago, but the bug has apparently been fixed.
I am not reporting a bug to rewrite the wiki correctly.
I am saying that the "value" keys that worked in the past are no longer working and should be fixed.
If you did it intentionally, please post a URL to the changelog, patch notes, etc. of the release that clearly states this.
This is not the place to claim a bug is a spec, is it?
I'll be counting on you.
@[Mod] tryashtar
I cannot do that.
Because I cannot say for sure that it is a specification.
The "value" key should have worked in the past.
If it is the case that the "value" key does not work, can you please post the URL of the release changelog that clearly states this?
@skylinerw
I see that
name
is also ignored.Then, even if this bug is fixed, it is unlikely that I will be able to use it the way I envisioned.
Thank you for telling us about it.