欢迎光临散文网 会员登陆 & 注册

防刷屏代码(绝对有用)

2021-07-25 13:18 作者:AirAwedk_  | 我要投稿

因为普通人打字至少也要个十几秒,不如用这种方法防止别人在box3刷屏~

world.onChat(async({ entity }) => {//async是异步函数,因为有await,onChat检测玩家说话

    entity.player.directMessage('禁言10秒,10秒后解除')//提醒玩家

    entity.player.muted = true;//禁言玩家

    await sleep(10000);//等待10秒

    entity.player.muted = false;//玩家解除禁言

    entity.player.directMessage('解除静音')//提示

});


防刷屏代码(绝对有用)的评论 (共 条)

分享到微博请遵守国家法律