Class ChatSendBeforeEventSignalBeta

Manages callbacks that are connected to an event that fires before chat messages are sent.

Example

customCommand.ts

import { world, DimensionLocation } from "@minecraft/server";

function customCommand(targetLocation: DimensionLocation) {
const chatCallback = world.beforeEvents.chatSend.subscribe((eventData) => {
if (eventData.message.includes("cancel")) {
// Cancel event if the message contains "cancel"
eventData.cancel = true;
} else {
const args = eventData.message.split(" ");

if (args.length > 0) {
switch (args[0].toLowerCase()) {
case "echo":
// Send a modified version of chat message
world.sendMessage(`Echo '${eventData.message.substring(4).trim()}'`);
break;
case "help":
world.sendMessage(`Available commands: echo <message>`);
break;
}
}
}
});
}

Hierarchy

  • ChatSendBeforeEventSignal

Constructors

Methods

Constructors

Methods

  • Parameters

    Returns ((arg) => void)

      • (arg): void
      • Parameters

        Returns void

        Remarks

        Adds a callback that will be called before new chat messages are sent.

        This function can't be called in read-only mode.

        This function can be called in early-execution mode.

    Remarks

    Adds a callback that will be called before new chat messages are sent.

    This function can't be called in read-only mode.

    This function can be called in early-execution mode.

  • Parameters

    Returns void

    Remarks

    Removes a callback from being called before new chat messages are sent.

    This function can't be called in read-only mode.

    This function can be called in early-execution mode.