跳至主要內容

禁止玩家使用特定指令

芒果凍布丁原創2025年6月24日小於 1 分鐘KubeJS 6

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/6/24 下午11:18:52
貢獻者: EvanHsieh0415