📅  最后修改于: 2023-12-03 15:14:12.828000             🧑  作者: Mango
如果你想让Minecraft更加刺激有趣,可以尝试一下在游戏中添加猎人模式(Manhunt)。这里,我将会介绍如何创建一个基本的猎人模式游戏。
在开始游戏之前,你需要先准备几样东西:
打开Minecraft服务端,进入游戏。
使用 /give
命令为每个玩家分配床和简单的装备:
/give @a minecraft:bed
/give @a minecraft:stone_sword
/give @a minecraft:bow
/give @a minecraft:arrow 64
这将为每个玩家提供一个床和简单的工具,以便他们在游戏中快速进展。
必须设置一个起点,玩家们在此处重生。
/setworldspawn
建立一个区域,区域内的玩家不能打猎,只能做逃跑。
/execute in minecraft:overworld run `
/team add runners
/team join runners @a[tag=!hunter]
/team modify runners collideRule=pushOtherTeam
/team modify runners friendlyFire=false
/team modify runners color green
/team modify runners nametagVisibility=hideForOtherTeams
这将在游戏的起点附近创建一个区域,使玩家们无法互相攻击。注意: 玩家需要自己标记自己为逃跑者,没有标记的逃跑者会被视为猎人
确定猎人数量(1或多个) 并交给他们一个编码鲨鱼皮帽子以用于识别。
/execute in minecraft:overworld run
/team add hunters
/team join hunters @a[distance=..20]
/team modify hunters color red
/team modify hunters nametagVisibility=always
/tag @a[tag=hunter] remove hunter
/tag @r[team=hunters,limit=1] add hunter
/give @a[tag=hunter] leather_helmet{display:{Name:"{\"text\":\"Hunter's Hat\"}"},Unbreakable:1,Enchantments:[{id:"minecraft:protection",lvl:2}],AttributeModifiers:[{AttributeName:"generic.movement_speed",Name:"generic.movement_speed",Amount:0.2,Operation:0,Slot:"head"}]} 1
上述代码将:
设置猎人和逃跑的角色显示
/scoreboard objectives add Deaths deathCount {"text":"Deaths","color":"red"}
/scoreboard objectives add Health health {"text":"Health","color":"dark_red"}
/scoreboard objectives add ["Kills","totalKills"] killCount {"text":"Kills","color":"yellow"}
/scoreboard objectives add TimePlaying dummy {"text":"Play Time","color":"green"}
/scoreboard objectives setdisplay sidebar Deaths
上述代码将创建一个新的计分板框架,用于记录玩家的死亡、生命、杀敌和游戏时间。
所有的设置都已准备就绪,现在需要开始游戏了。玩家们的目标是在自己死亡之前打造一个末影之眼,并在末地附近使用它,来击败龙BOSS。猎人们的目的是尽快地消灭所有的逃跑者,在他们的计划得逞之前结束游戏。
如果你在游戏过程中遇到任何问题,可以随时使用实时聊天对话框,进行交流和帮助。
猎人游戏非常有趣和富有挑战性。如果你想让自己的Minecraft游戏更加刺激有趣,不妨尝试一下这个游戏模式。最后,祝你好运!