
Lv.1
路漫漫其修远兮,吾将上下而求索。 KNFS.1.2.42.4
签名:。
在 【求帮助】岛3如何让玩家发光? 中回复
const npc = world.querySelector('#彩蛋名字');
npc.enableInteract = true;
npc.interactHint = '彩蛋名字';
npc.interactRadius = 2;
npc.onInteract( ({entity}) => {
world.say(entity.player.name+'发光了!');
entity.player.emissive = 1;
});2021-09-12T17:54:03 点赞:0
在 谁知道如何禁止玩家二段跳 中回复
//不允许玩家二段跳跃
world.onPlayerJoin(({ entity }) => {
entity.player.enableDoubleJump = false;
});2021-09-25T14:27:19 点赞:1