
Lv.1
签名:一枚被封藏在历史中的屑?
在 什么是ifram链接 中回复
2022-08-06T12:19:01 点赞:0
在 【如何用控制台喵家变小】大佬勿看!不喜勿喷~ 中回复
const e = world.querySelectorAll('player').filter((x)=>x.player.name=='***')[0]2022-08-10T11:37:39 点赞:0
在 【岛3】怎么给作品聊天区加控制台功能?控制台插件来了!【来者课堂】 中回复
简化+防err版
const admin = [];
function r(m) {
world.say('~>' + m);
world.say('<~' + eval(m));
}
world.onChat(async ({ entity, message }) => {
if (admin.includes(entity.player.userKey) && message.indexOf("$") == 0) {
try {
if (message.length > 1) return r(message.slice(1, message.length));
const code = await entity.player.dialog({
type: 'input',
title: "控制台",
content: `请输入代码:`,
confirmText: '执行',
placeholder: 'code',
});
if (!code) return world.say('取消执行');
r(code)
} catch (e) {
world.say('<~' + e);
}
}
})2022-08-22T12:02:48 点赞:2