
Lv.1
Everything happens for a reason.
签名:https://box3.codemao.cn/u/YDSyinzi
在 【box3】玩家查询系统代码分享! 中回复
还有一段代码要添上
world.onPlayerJoin(({entity})=>{entity.a喵Tag(entity.player.name)})2020-08-10T07:33:12 点赞:0
在 【box3】毁图调查局接单啦 中回复
情报局信息
-------------------{
2020/8/5 14:27 岛三崩溃
调查时间:调查个啥
2020/8/11 9:15-9:19 葫芦地图被毁;2020/8/10 20:25代码被删除;
调查时间:2020/8/11 9:25;
2020/8/11 16:09-16:15 球球地图被毁;
调查时间:2020/8/11 17:25;
}
2020-08-12T16:52:39 点赞:0
在 [box]血衣族再次出现!! 中回复
作者
以下两件事也许可以帮到你
1.阅读我的血衣族研究成果:https://shequ.codemao.cn/wiki/forum/332348
2.调查下是否有此人的权限:热爱编程猫代码岛合格岛民
2020-08-12T22:22:02 点赞:0
在 【box3】论证:热爱编程猫代码岛合格岛民 为血衣小号 中回复
第二条论证附链接https://shequ.codemao.cn/community/332306
2020-08-12T22:23:21 点赞:0
在 【代码岛3.0科普贴】如何快速建树? 中回复
本人在三月底就研制出来了
function tree(x,y,z){
if(voxels.getVoxel(x,y,z)!=voxels.id("water")){
var rand=1;
for(let i=y+rand;i<y+4+rand;i++){
voxels.setVoxel(x,i,z,"acacia");
}
for(let i=3+rand;i<5+rand;i++){
for(let j=-2;j<3;j++){
for(let k=-2;k<3;k++){
voxels.setVoxel(x+j,y+i,z+k,"green_leaf");
}
}
}
for(let j=-1;j<2;j++){
for(let k=-1;k<2;k++){
voxels.setVoxel(x+j,y+5+rand,z+k,"green_leaf");
}
}
voxels.setVoxel(x-1,y+6+rand,z,"green_leaf");
voxels.setVoxel(x,y+6+rand,z,"green_leaf");
voxels.setVoxel(x+1,y+6+rand,z,"green_leaf");
voxels.setVoxel(x,y+6+rand,z-1,"green_leaf");
voxels.setVoxel(x,y+6+rand,z+1,"green_leaf");
}
};2020-08-13T06:21:39 点赞:2
在 【box3科普贴】毁图喵!? 中回复
emmm咳咳咳
怎么又和我代码撞车了
还有血衣拿走的是我的更强劲的代码,后果更严重
不信你看
https://shequ.codemao.cn/community/330989
2020-08-13T09:42:33 点赞:0
在 【box3】方块动力(滑稽) 中回复
https://box3create.codemao.cn/games/e42c82b9d1af51d777ab
2020-08-14T20:02:10 点赞:1
在 【box3】方块动力(滑稽) 中回复
world.onVoxelContact(({entity,voxel,x,y,z})=>{
if(entity.isPlayer){
var b=["red_light","orange_light","yellow_light","red","orange","medium_yellow"][Math.round(Math.random()*5)]
voxels.setVoxel(x,y+1,z,b);
var b=["red_light","orange_light","yellow_light","red","orange","medium_yellow"][Math.round(Math.random()*5)]
voxels.setVoxel(x,y+2,z,b);
var b=["red_light","orange_light","yellow_light","red","orange","medium_yellow"][Math.round(Math.random()*5)]
voxels.setVoxel(x,y+3,z,b);
setTimeout(()=>{
voxels.setVoxel(x,y+1,z,0);
voxels.setVoxel(x,y+2,z,0);
voxels.setVoxel(x,y+3,z,0);
},100)
}
})
} })
2020-08-14T20:13:07 点赞:1
在 你相信【引力】吗 ————万有引力是和距离的一次方成反比的世界 中回复
https://shequ.cod喵/work/39268496
几个月前用自带物理引擎做的awa
2020-08-15T07:41:11 点赞:0