跳至主要內容

禁止玩家使用特定指令

芒果凍布丁原創2025年5月25日小於 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);
上次編輯於: 2025/5/25 上午2:00:55
貢獻者: Mango