Class Dimension

A class that represents a particular dimension (e.g., The End) within a world.

Hierarchy

  • Dimension

Constructors

Properties

id: string

Remarks

Identifier of the dimension.

Throws

This property can throw when used.

Methods

  • Beta

    Parameters

    • location: Vector3

      The location at which to return a block.

    Returns undefined | Block

    Block at the specified location.

    Remarks

    Returns a block instance at the given location.

    Throws

    This function can throw errors.

  • Beta

    Parameters

    • Optional options: EntityQueryOptions

      Additional options that can be used to filter the set of entities returned.

    Returns Entity[]

    An entity array.

    Remarks

    Returns a set of entities based on a set of conditions defined via the EntityQueryOptions set of filter criteria.

    Throws

    This function can throw errors.

    Example

    testThatEntityIsFeatherItem.ts

    const query = {
    type: "item",
    location: targetLocation,
    };
    const items = overworld.getEntities(query);

    for (const item of items) {
    const itemComp = item.getComponent("item") as any;

    if (itemComp) {
    if (itemComp.itemStack.id.endsWith("feather")) {
    console.log("Success! Found a feather", 1);
    }
    }
    }
  • Beta

    Parameters

    • location: Vector3

      The location at which to return entities.

    Returns Entity[]

    Zero or more entities at the specified location.

    Remarks

    Returns a set of entities at a particular location.

  • Beta

    Parameters

    • Optional options: EntityQueryOptions

      Additional options that can be used to filter the set of players returned.

    Returns Player[]

    A player array.

    Remarks

    Returns a set of players based on a set of conditions defined via the EntityQueryOptions set of filter criteria.

    Throws

    This function can throw errors.

  • Beta

    Parameters

    • commandString: string

    Returns CommandResult

    Remarks

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

    Throws

    This function can throw errors.

  • Parameters

    • commandString: string

      Command to run. Note that command strings should not start with slash.

    Returns Promise<CommandResult>

    For commands that return data, returns a CommandResult with an indicator of command results.

    Remarks

    Runs a particular command asynchronously from the context of the broader dimension. Note that there is a maximum queue of 128 asynchronous commands that can be run in a given tick.

    Throws

    This function can throw errors.

  • Beta

    Parameters

    • identifier: string

      Identifier of the type of entity to spawn. If no namespace is specified, 'minecraft:' is assumed.

    • location: Vector3

      The location at which to create the entity.

    Returns Entity

    Newly created entity at the specified location.

    Remarks

    Creates a new entity (e.g., a mob) at the specified location.

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

    Throws

    This function can throw errors.

    Example

    createOldHorse.ts

      // create a horse and trigger the 'ageable_grow_up' event, ensuring the horse is created as an adult
    overworld.spawnEntity("minecraft:horse<minecraft:ageable_grow_up>", targetLocation);

    Example

    quickFoxLazyDog.ts

    const fox = overworld.spawnEntity("minecraft:fox", {
    x: targetLocation.x + 1,
    y: targetLocation.y + 2,
    z: targetLocation.z + 3,
    });
    fox.addEffect(mc.MinecraftEffectTypes.Speed, 10, 20);
    log("Created a fox.");

    const wolf = overworld.spawnEntity("minecraft:wolf", {
    x: targetLocation.x + 4,
    y: targetLocation.y + 2,
    z: targetLocation.z + 3,
    });
    wolf.addEffect(mc.MinecraftEffectTypes.Slowness, 10, 20);
    wolf.isSneaking = true;
    log("Created a sneaking wolf.", 1);

    Example

    trapTick.ts

      let ticks = 0;

    mc.world.events.tick.subscribe((event: mc.TickEvent) => {
    ticks++;

    // Minecraft runs at 20 ticks per second
    if (ticks % 1200 === 0) {
    overworld.runCommand("say Another minute passes...");
    }
    });
  • Beta

    Parameters

    • itemStack: ItemStack
    • location: Vector3

      The location at which to create the item stack.

    Returns Entity

    Newly created item stack entity at the specified location.

    Remarks

    Creates a new item stack as an entity at the specified location.

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

    Throws

    This function can throw errors.

    Example

    itemStacks.ts

    const oneItemLoc: mc.Vector3 = { x: 3, y: 2, z: 1 };
    const fiveItemsLoc: mc.Vector3 = { x: 1, y: 2, z: 1 };
    const diamondPickaxeLoc: mc.Vector3 = { x: 2, y: 2, z: 4 };

    const oneEmerald = new mc.ItemStack(mc.MinecraftItemTypes.emerald, 1, 0);
    const onePickaxe = new mc.ItemStack(mc.MinecraftItemTypes.diamondPickaxe, 1, 0);
    const fiveEmeralds = new mc.ItemStack(mc.MinecraftItemTypes.emerald, 5, 0);

    overworld.spawnItem(oneEmerald, oneItemLoc);
    overworld.spawnItem(fiveEmeralds, fiveItemsLoc);
    overworld.spawnItem(onePickaxe, diamondPickaxeLoc);

    Example

    spawnItem.ts

      const featherItem = new mc.ItemStack(mc.MinecraftItemTypes.feather, 1, 0);

    overworld.spawnItem(featherItem, targetLocation);
    log("New feather created!");