禁止玩家使用特定指令
原創2024年11月10日小於 1 分鐘
禁止玩家使用特定指令
You Shall Not Pass!
/**
* @param {Internal.CommandEventJS_} event
*/
function youShallNotUsePainter(event) {
const { input, parseResults } = event;
if (input.split(" ")[1] === "painter") {
parseResults.context.source.player.tell("You Shall Not Use Painter!");
event.cancel();
}
}
ServerEvents.command("kubejs", youShallNotUsePainter);
ServerEvents.command("kjs", youShallNotUsePainter);