使用 Minecraft 插件语言 Skript,如何找到玩家的维度(例如 "nether")?
Using the Minecraft plugin language Skript, how can I find the dimension (ex. "nether") of a player?
我对编写 MC 插件还很陌生,我目前正在使用 Skript 制作一个。我需要能够找到玩家当前所在的维度,例如下界或主世界。
然而,这种事情并不像我期望的那样有效:
{dimOfPlayer} = dimension of player
send "Dim: %{dimOfPlayer}%" # I get an error: "Can't understand this condition or effect"
有什么方法可以实际获取维度并将其打印出来聊天,或测试它是什么?谢谢!
您可以通过检查玩家所在的世界来做到这一点,例如,如果您创建一个普通世界,则应该有这 3 个世界“世界”、“world_nether”和“world_the_end”。我想那么你可以像这样检查播放器的尺寸。
if player is in world "World name":
#Do stuff
我对编写 MC 插件还很陌生,我目前正在使用 Skript 制作一个。我需要能够找到玩家当前所在的维度,例如下界或主世界。
然而,这种事情并不像我期望的那样有效:
{dimOfPlayer} = dimension of player
send "Dim: %{dimOfPlayer}%" # I get an error: "Can't understand this condition or effect"
有什么方法可以实际获取维度并将其打印出来聊天,或测试它是什么?谢谢!
您可以通过检查玩家所在的世界来做到这一点,例如,如果您创建一个普通世界,则应该有这 3 个世界“世界”、“world_nether”和“world_the_end”。我想那么你可以像这样检查播放器的尺寸。
if player is in world "World name":
#Do stuff