Class LeverActionAfterEventSignal

Manages callbacks that are connected to lever moves (activates or deactivates).

Example

leverActionEvent.ts

import { world, system, BlockPermutation, LeverActionAfterEvent, DimensionLocation } from "@minecraft/server";
import { MinecraftBlockTypes } from "@minecraft/vanilla-data";

function leverActionEvent(log: (message: string, status?: number) => void, targetLocation: DimensionLocation) {
// set up a lever
const cobblestone = targetLocation.dimension.getBlock(targetLocation);
const lever = targetLocation.dimension.getBlock({
x: targetLocation.x,
y: targetLocation.y + 1,
z: targetLocation.z,
});

if (cobblestone === undefined || lever === undefined) {
log("Could not find block at location.");
return -1;
}

cobblestone.setPermutation(BlockPermutation.resolve(MinecraftBlockTypes.Cobblestone));
lever.setPermutation(
BlockPermutation.resolve(MinecraftBlockTypes.Lever).withState("lever_direction", "up_north_south")
);

world.afterEvents.leverAction.subscribe((leverActionEvent: LeverActionAfterEvent) => {
const eventLoc = leverActionEvent.block.location;

if (eventLoc.x === targetLocation.x && eventLoc.y === targetLocation.y + 1 && eventLoc.z === targetLocation.z) {
log("Lever activate event at tick " + system.currentTick);
}
});
}

Hierarchy

Constructors

Methods

Constructors

Methods

  • Parameters

    Returns ((arg0) => void)

      • (arg0): void
      • Parameters

        Returns void

        Deprecated

        This function is deprecated and will be removed in 2.0.0.

        Remarks

        Subscribes to the event.

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

    Deprecated

    This function is deprecated and will be removed in 2.0.0.

    Remarks

    Subscribes to the event.

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

  • Parameters

    Returns void

    Deprecated

    This function is deprecated and will be removed in 2.0.0.

    Remarks

    Unsubscribes from the event.

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