3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

マインクラフト統合版サーバに鉄千Behavior Packを導入する

Last updated at Posted at 2023-07-23

はじめに

マインクラフト統合版サーバに、鉄千のBehavior Packを導入できたので記録しておきます。

鉄千とは

鉄千拠点についての説明

実装

Add-Onをダウンロード

ファイルをマイクラサーバにアップロード

functions.mcpack

Behavior Packのディレクトリを作成

cd data/behavior_packs
mkdir iron_thousand

functions.mcpack展開

cd iron_thousand
mv ~/functions.mcpack .
unzip functions.mcpack

manifest.jsonの内容を確認

{
   "format_version" : 1,
   "header" : {
      "description" : "鉄千の拠点を一瞬で作るパック-マルチ5人用-",
      "name" : "一瞬鉄千拠点-マルチ5人用-",
      "platform_locked" : false,
      "uuid" : "22d20a44-eedd-010d-3492-b0b11dcf7d89",
      "version" : [ 1, 0, 0 ],
      "min_engine_version":[1,8,0]
   },
   "min_engine_version" : [ 0, 0, 1, 1, 2, 5 ],
   "modules" : [
      {
         "type" : "data",
         "uuid" : "7aac64d6-af82-e83e-2fba-6eba77c92a50",
         "version" : [ 1, 0, 0 ]
      }
   ]
}

セーブデータディレクトリに設定ファイルを設置

※World名が IronThousand だった場合

cd data/worlds/IronThousand
vi world_behavior_packs.json
[
  {
    "pack_id": "22d20a44-eedd-010d-3492-b0b11dcf7d89",
    "version": [
      1,
      0,
      0
    ]
  }
]

サーバ再起動

サーバにログインし、マイクラ内で有効化

/function iron
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?