Class PistonActivateEventSignal

Manages callbacks that are connected to piston activations.

Hierarchy

  • PistonActivateEventSignal

Constructors

Methods

Constructors

Methods

  • Parameters

    Returns ((arg) => void)

      • (arg): void
      • Parameters

        Returns void

        Remarks

        Adds a callback that will be called when a piston expands or retracts.

        Example

        pistonEvent.ts

                 let canceled = false;

        const pistonLoc = new mc.BlockLocation(
        Math.floor(targetLocation.x) + 1,
        Math.floor(targetLocation.y) + 2,
        Math.floor(targetLocation.z) + 1
        );

        const pistonCallback = mc.world.events.beforePistonActivate.subscribe((pistonEvent: mc.BeforePistonActivateEvent) => {
        if (pistonEvent.piston.location.equals(pistonLoc)) {
        log("Cancelling piston event");
        pistonEvent.cancel = true;
        canceled = true;
        }
        });

    Remarks

    Adds a callback that will be called when a piston expands or retracts.

    Example

    pistonEvent.ts

             let canceled = false;

    const pistonLoc = new mc.BlockLocation(
    Math.floor(targetLocation.x) + 1,
    Math.floor(targetLocation.y) + 2,
    Math.floor(targetLocation.z) + 1
    );

    const pistonCallback = mc.world.events.beforePistonActivate.subscribe((pistonEvent: mc.BeforePistonActivateEvent) => {
    if (pistonEvent.piston.location.equals(pistonLoc)) {
    log("Cancelling piston event");
    pistonEvent.cancel = true;
    canceled = true;
    }
    });
  • Parameters

    Returns void

    Remarks

    Removes a callback from being called when a piston expands or retracts.

    Throws

    This function can throw errors.