0
1

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 3 years have passed since last update.

[Minecraft]一括採掘プラグインVeinMinerの導入[Spigot 1.17]

Posted at

経緯

運営しているminecraftサーバーに一括破壊系プラグイン、VeinMinerを導入してみた。
少しハマったところがあったので、記録しておきます。

環境

  • minecraft version : 1.17
  • Spigot 1.17
  • Ubuntu 20.04

1. VeinMinerのダウンロード

VeinMinerのプラグインページ
VeinMiner | SpigotMC - High Performance Minecraft
このページの右上のDownlad NowのファイルはForge用のversionなので間違えないように。これをダウンロードしても動きません。
image.png

少し下の方に行くと、Chocoさんという方が作ったBukkit用のversionのVeinMinerに飛ぶリンクがあるので、ここからダウンロードします。
GitHub - 2008Choco/VeinMiner: Bukkit/Spigot plugin. Aims to recreate the Forge mod, VeinMiner, in an efficient, flexible and feature-filled way
image.png

ここから、VeinMiner-Bukkit-1.17.9.jarをダウンロードします。
image.png

これをサーバーのplugins/ディレクトリに移動させます。
サーバーを再起動したら完了です。

2. 使い方

スニークしながら鉱石(石炭など)を壊すと、隣接する同じ種類の鉱石が一括で採掘されます。

ver1.17で追加されたブロックを追加する

1.17versionで新しくディープスレート系の鉱石が追加されましたが、デフォルトのVeinMinerでは未対応です。新しく追加された鉱石を破壊可能にするためには、コマンドで追加してあげる必要があります。
VeinMinerのGithubで、丁寧に1.17用の追加コマンドをサポートしてくれています。
Releases · 2008Choco/VeinMiner · GitHub
image.png

minecraft内のコマンドで、
/vm blocklist add pickaxe add minecraft:copper_ore
を入力すると、新しく追加された銅鉱石が採掘対象となる。
同じように、他のブロックも追加しておくといいと思います。

# ディープスレートの石炭、銅、ダイヤモンド、エメラルド、金、鉄、ラピスラズリ
/vm blocklist add pickaxe add minecraft:deepslate_coal_ore
/vm blocklist add pickaxe add minecraft:deepslate_copper_ore
/vm blocklist add pickaxe add minecraft:deepslate_diamond_ore
/vm blocklist add pickaxe add minecraft:deepslate_emerald_ore
/vm blocklist add pickaxe add minecraft:deepslate_gold_ore
/vm blocklist add pickaxe add minecraft:deepslate_iron_ore
/vm blocklist add pickaxe add minecraft:deepslate_lapis_ore

以上です!
良いマイクラライフを。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?