Lv.1
我是屑
签名:小号__eq__, 大号__name__kP81.
在 【】听说围城不会崩? 中回复
wc.box3.codemao.cn 通常会使用加密技术来保护您的信息。Google Chrome 此次尝试连接到 wc.box3.codemao.cn 时,此网站发回了异常的错误凭据。这可能是因为有攻击者在试图冒充 wc.box3.codemao.cn,或 Wi-Fi 登录屏幕中断了此次连接。请放心,您的信息仍然是安全的,因为 Google Chrome 尚未进行任何数据交换便停止了连接。
您目前无法访问 wc.box3.codemao.cn,因为此网站使用了 HSTS。网络错误和攻击通常是暂时的,因此,此网页稍后可能会恢复正常。
2020-08-29T14:32:47 点赞:0
在 [Box3图形化编辑器] 最新更改地址啦!快进来看 中回复
无法访问此网站
找不到 boxly.ddns.net 的服务器 IP 地址。
DNS_PROBE_FINISHED_NXDOMAIN
2020-08-31T08:26:40 点赞:0
在 谁会做跳跃加成的彩蛋 中回复
e.onEntityContact(({other,entity}) => {
if (other.isPlayer) {
if (entity.hasTag('呕')) {
other.player.jumpAccelerationFactor=1
}
}
})
如果有屏蔽词,喵=nc
2020-09-06T15:32:18 点赞:0
在 谁会做跳跃加成的彩蛋 中回复
world.onEntityContact(({other,entity}) => {
if (other.isPlayer) {
if (entity.hasTag('呕')) {
other.player.jumpAccelerationFactor=1
}
}
})2020-09-06T15:32:44 点赞:0
在 用一个故事证明你是编程猫的人 中回复
i m p o r t t u r t l e a s f
f . f o r w a r d ( 1 0 0 )
f . d o n e ( )
2020-10-04T22:26:32 点赞:0
在 【岛3 🎃万圣鬼马创作节!】送限量狼人皮肤 中回复
~~~~~组队啦~~~~~
链接:https://box3create.codemao.cn/games/50e4a2e8ac2579c75150
2020-10-24T08:52:54 点赞:0
在 【🎃岛3万圣节捣蛋更新!】超粘的蜘蛛网方块、哈农飞天南瓜车! 中回复
曝光我在创建的作品:
地图链接:https://box3create.codemao.cn/games/50e4a2e8ac2579c75150
2020-10-31T11:55:35 点赞:0
在 【box3】玩家查询系统代码分享! 中回复
world.onPlayerJoin(({entity})=>{entity.addTag(entity.player.name)})
world.querySelectorAll(".玩家查找器").forEach((finder) => {
finder.enableInteract = true;
finder.interactRadius = 8;
finder.interactHint = "玩家查找器";
finder.interactColor = new Box3RGBColor(1, 1, 1);
finder.onInteract(async ({ entity }) => {
const result = await entity.player.dialog({
title: '系统',
type: Box3DialogType.INPUT,
content: `全局玩家查询系统开启,你要查询哪个玩家?`,
titleBackgroundColor: new Box3RGBAColor(0.968, 0.702, 0.392, 1),
placeholder: '请输入玩家名',
confirmText: '确认',
})
const findee = world.querySelector("." + result);
try {
if (findee.isPlayer) {
const resu=await entity.player.dialog({
title: '系统',
type: Box3DialogType.SELECT,
content: `找到玩家${findee.player.name}`,
titleBackgroundColor: new Box3RGBAColor(0.968, 0.702, 0.392, 1),
lookEye: entity,
lookEyeOffset: new Box3Vector3(0, 30, 0),
lookTarget: findee,
options:["到他那里去","知道了"],
})
if(resu.index==0){
entity.position.set(findee.position.x,findee.position.y+2,findee.position.z)
}
findee.player.dialog({
title: '系统',
type: Box3DialogType.TEXT,
content: `你被${entity.player.name}查询了`,
titleBackgroundColor: new Box3RGBAColor(0.968, 0.702, 0.392, 1),
})
}
} catch(err) {
await entity.player.dialog({
type:Box3DialogType.TEXT,
title:'找不到这个玩家!',
content:'无法查找此玩家'
})
}
})
})
改版代码,不会出错
2020-11-01T07:57:45 点赞:0