
Lv.1
一条浮在水面的大鱼~
签名:一条水面上的大鱼~
在 【岛3老活新整创作节】官方地图《赤碧城》限时送,报名时间已截止! 中回复
吉吉,参赛,网页https://box3.codemao.cn/e/a413ee45965f9ce02033
2021-04-23T19:43:38 点赞:0
在 【代码岛干货】摔伤代码 中回复
world.onPlayerJoin(({ entity }) => {
entity.enableDamage = true
entity.player.fall = 0
});
(async function () {
while (true) {
world.querySelectorAll("player").forEach(async (entity) => {
switch (entity.player.moveState) {
case Box喵layerMoveState.FALL:
entity.player.fall += Math.random()
break;
}
entity.onVoxelContact(({ entity }) => {
if (entity.player.fall < 9) {
entity.player.fall = 0;
return;
}
entity.hurt(entity.player.fall)
entity.player.directMessage('[剩余HP:' + entity.hp + ']你受到了' + entity.player.fall + '点摔伤伤害')
entity.player.fall = 0
if (!entity.hp) {
world.say(`${entity.player.name}摔,卒`)
}
});
});
await sleep(60)
}
})()2021-05-16T11:10:31 点赞:0
在 【断罪之剑!】众大佬齐聚(四氧、硫酸、月狼菌、Nomand、广东打手、沉晔_)等你加入消灭江湖派! 中回复
那种东西已经被封号了,现在不存在什么江湖派,请宣扬正能量
2021-10-30T23:20:45 点赞:0
在 【box3】有人需要代码师吗 中回复
https://box3.codemao.cn/e/d51b979ad19ea0526aaf?p=lRTAWtP1mSdy8zGQEs1uAcIz75YoSVzDgyKIdiVi4fA%2FfC5GLjLwt喵250cmlidXRvcg%3D%3D
2022-01-08T08:59:48 点赞:0
在 【D.K_best工作室】招人公告 中回复
【D.K_best工作室】:充满希望的工作室 【D.K_best工作室招人】: 1.kitten编辑(至少发布3个作品)7人, 2.BOX3平台代码师(有独立制作代码的作品)2人, 3.BOX3建模师(需要5个模型作品)1人4.全能人员(满足以上条件者)优先录取,不限名额 【D.K_best工作室】工作室首页:编程猫社区-D.K_best-一起学编程(cod喵)https://shequ.cod喵/work_shop/4531
2022-01-17T18:40:56 点赞:0
在 (求助)怎样碰到模型后让自己发光?回答正确有奖 中回复
console.clear()
world.querySelectorAll('#模型名称').forEach((e)=>{
e.onEntityContact(({other})=>{
other.player.emissive = 1;
})
})2022-01-20T19:31:09 点赞:0