Script API - v1.21.2
    Preparing search index...

    Builds a simple player form with buttons that let the player take action.

    import { Player } from '@minecraft/server';
    import { ActionFormData, ActionFormResponse } from '@minecraft/server-ui';

    function askFavoriteMonth(player: Player) {
    const form = new ActionFormData()
    .title('Months')
    .body('Choose your favorite month!')
    .button('January')
    .button('February')
    .button('March')
    .button('April')
    .button('May');

    form.show(player).then((response: ActionFormResponse) => {
    if (response.selection === 3) {
    player.sendMessage('I like April too!');
    } else {
    player.sendMessage('Nah, April is the best.');
    }
    });
    }
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • player: Player

        Player to show this dialog to.

      Returns Promise<ActionFormResponse>

      Creates and shows this modal popup form. Returns asynchronously when the player confirms or cancels the dialog.

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

      This function can throw errors.