用户:东南西北查看:2 回复:4 评论:2 创建时间:2022-05-05T13:41:08
吉吉猫 怎么做按做按右键就会弹出对话框 选择他要抢 或者 剑 , 然后他就装备上
坦率的血翼蝠5801world.onPlayerJoin(async({entity}) => {
entity.player.onPress(({ entity, button }) => {
if (button == 'action1'){
const bag = await entity.player.dialog({
type: Box3DialogType.SELECT,
title: `背包`,
content: `请问你喵还是剑?`,
options: ['喵', '剑']
})
if (!bag || bag == null) return;
switch (bag.index){
case 0:
entity.wuqi = '喵'
entity.gjl = 80
break;
case 1:
entity.wuqi = '剑'
entity.gjl = 20
break;
default:
}
}
})
})点赞0
评论