用户:
彩虹字转换器查看:11 回复:5 评论:11 创建时间:2022-06-10T14:28:01
急需 谢谢🙏
꧁༺ཌ༈༒༈ད༻꧂
//死后回传送点
world.onDie(async ({ entity }) => {
entity.player.forceRespawn();
entity.hp = 100;
})
//碰到水就死
world.onFluidEnter(({ voxel, entity }) => {
if (voxel === 364) {
entity.hurt(100);
}
})点赞0
评论
原坏三老旅长world.onPlayerJoin(({ entity }) => {
entity.player.scale = 0.7;
entity.onFluidEnter(() => {
entity.position.y += 2;
entity.position.copy(entity.player.spawnPoint)
entity.player.directMessage('你洗了')
})
})
//这个我也不太理解()
//反正可以用就是了
//别的液体也可以用()点赞0
评论