- 目的
- 複数存在するネザーと通常ワールド、エンドと通常ワールドを紐づける
- やるメリット
- プラグイン「Multiverse-Core」で複数のワールドを作成している場合、
- 何もしないと、以下のような紐づけ状態である
- デフォルトであるNOMALワールド => デフォルトであるネザーワールド
- デフォルトであるネザーワールド => デフォルトであるNOMALワールド
- 作成したネザーワールド => デフォルトであるNOMALワールド
- 作成したNOMALワールド => デフォルトであるネザーワールド
- この紐づけを明示的にしてあげられる
- 前提条件
- プラグイン「Multiverse-Core」が入ったサーバーで複数のワールドがある状態であること
- 必要なプラグインをダウンロード
- プラグインの配置
- 配置先
-
【マイクラサーバーのディレクトリ】/plugins/
-
- こんな感じに配置
-
root@XXXX:~# ll /opt/minecraft_test/plugins/
total 560
drwxr-xr-x 5 root root 4096 Jan 7 00:11 ./
drwxr-xr-x 13 root root 4096 Jan 6 23:46 ../
drwxr-xr-x 2 root root 4096 Jan 6 23:00 bStats/
drwxr-xr-x 2 root root 4096 Jan 6 23:00 Multiverse-Core/
-rw-r–r– 1 root root 496893 Jan 6 22:55 Multiverse-Core-4.3.1.jar
-rw-r–r– 1 root root 50558 Jan 7 00:11 Multiverse-NetherPortals-4.2.2.jar
drwxr-xr-x 2 root root 4096 Jan 6 22:45 PluginMetrics/
-
- 配置先
- 実行コマンド
- => 指定しているワールドは参考で作成したワールドの名称を流用
- 作成したNOMALワールド => 作成したネザーワールドの紐づけ
-
/mvnp link nether “Nomal_sozai_world” “NETHER_sozai_world”
-
- 作成したネザーワールドの紐づけ => 作成したNOMALワールド
-
/mvnp link nether “NETHER_sozai_world” “Nomal_sozai_world”
-
- 作成したNOMALワールド => 作成したエンドワールドの紐づけ
-
/mvnp link end “Nomal_sozai_world” “THE_END_sozai_world”
-
- 作成したエンドワールドの紐づけ => 作成したNOMALワールド
-
/mvnp link end “THE_END_sozai_world” “Nomal_sozai_world”
-
- 作成したNOMALワールド => 作成したネザーワールドの紐づけ
- 実行結果
-
>mvnp link nether “Nomal_sozai_world” “NETHER_sozai_world”
[00:16:20] [Server thread/INFO]: The NETHER portals in Nomal_sozai_world are now linked to NETHER_sozai_world
>mvnp link nether “NETHER_sozai_world” “Nomal_sozai_world”
[00:16:50] [Server thread/INFO]: The NETHER portals in NETHER_sozai_world are now linked to Nomal_sozai_world
>mvnp link nether “Nomal_sozai_world” “THE_END_sozai_world”
[00:16:55] [Server thread/INFO]: The NETHER portals in Nomal_sozai_world are now linked to THE_END_sozai_world
>mvnp link nether “THE_END_sozai_world” “Nomal_sozai_world”
[00:17:00] [Server thread/INFO]: The NETHER portals in THE_END_sozai_world are now linked to Nomal_sozai_world
-
コメント