Lonely丶独独


从末地回到主世界时显示

  1. 你的床或已充能重生锚不存在或已阻挡。
复制代码


如何解决,使用的是CMI基础插件,加上了mv多世界插件。

1697976437
试试/mv tp world

whnpm
重生被CMI接管了

配置是这一段

Enabled: true 是接管开关 fals就是不接管

后面的顺序就是各个维度的优先级,参数具体意义#号的注释都有

  1. ReSpawn:
  2.   # Time in seconds to make player immortal after he respawns
  3.   # Can be used to prevent respawn camping
  4.   # Set to 0 if you want to disable it
  5.   Immortality: 3
  6.   # If you want 3rd party plugin to handle player respawning, simply set this to false and reload plugin
  7.   Enabled: true
  8.   Global:
  9.     # Defines respawn order if defined world is not present in Specific list
  10.     # Possible respawn locations: anchor, bedLocation, spawn, homeLocation, worldSpawn, warp![warpName]
  11.     # Spawn is preset spawnlocation with /cmi setspawn command, that location should have RespawnLocation set to true
  12.     # bedLocation is location set by interacting with bed, BedInteraction should be set to false and players requires cmi.bedhome to set bed location
  13.     # homeLocation is location set by player which is with default (Home) name, if that one doesnt exist then first in the list will be used if possible
  14.     # worldSpawn is location preset to this world, this is not CMI location but default world spawn location
  15.     # anchor is location defined by interacting with respawn anchor. This in general will only apply when you die in nether world, otherwise bed location is used
  16.     # warp![warpName] can be any valid warp you set for players to be teleported, they will bypass any requirements for that warp
  17.     PriorityOrder:
  18.     - anchor
  19.     - bedLocation
  20.     - spawn
  21.     - homeLocation
  22.     - worldSpawn
  23.   # Defines respawn order for defines worlds
  24.   # Set respawn priority to [] or to random respawn criteria if you want to leave respawn handling for server or 3rd party plugin
  25.   Specific:
  26.     world:
  27.     - anchor
  28.     - bedLocation
  29.     - spawn
  30.     - homeLocation
  31.     - worldSpawn
  32.     world_nether:
  33.     - anchor
  34.     - bedLocation
  35.     - spawn
  36.     - homeLocation
  37.     - worldSpawn
  38.     world_the_end:
  39.     - anchor
  40.     - bedLocation
  41.     - spawn
  42.     - homeLocation
  43.     - worldSpawn
复制代码





DreamVoid
本帖最后由 DreamVoid 于 2021-7-6 12:16 编辑

CMI没用过,不过我可以给你提供mv的解决方案
找到mv的配置文件夹,打开“worlds.yml
找到“world_the_end”项(world_the_end是你的末地世界名),然后找到
  1. respawnWorld: ' '
复制代码
将其改成
  1. respawnWorld: 'world'
复制代码
(world是你的主世界世界名)

例子如下(例子中spawn是主世界的世界名称)(例子省略了大部分无关配置,请勿直接复制使用):
  1. worlds:
  2. ……
  3.   world_the_end:
  4.     ==: MVWorld
  5.     ……
  6.     respawnWorld: spawn
  7.     ……
  8. ……
复制代码


然后以管理员或控制台身份执行命令
  1. /mv reload
复制代码