> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Menu Actions

> Open island GUIs.

Actions for opening various island-specific menus.

<CardGroup cols={3}>
  <Card title="Control Panel" icon="gamepad" href="#open-menu-action">
    Main dashboard.
  </Card>

  <Card title="Upgrades" icon="arrow-up" href="#open-upgrades-menu">
    Island upgrades.
  </Card>

  <Card title="Members" icon="users" href="#open-members-menu">
    Member management.
  </Card>
</CardGroup>

## Generic Open Menu

### Open Menu Action

Opens a specific island menu by type.

<ResponseField name="menuType" type="IslandMenuType" default="CONTROL_PANEL">
  The type of menu to open.

  * `CONTROL_PANEL`: Main dashboard
  * `DIMENSIONS`: World selection
  * `UPGRADES`: Upgrade shop
  * `MEMBERS`: Member list
  * `SETTINGS`: Island flags
  * `BANK`: Economy interface
  * `RESEARCH`: Tech tree
  * `WARPS`: Warp list
  * `BIOMES`: Biome selector
  * `ISLAND_TOP`: Leaderboards
</ResponseField>

<CodeGroup>
  ```yaml Example theme={null}
  action:
    type: btcsky_open_menu
    menuType: BANK
  ```
</CodeGroup>

## Shortcuts

These actions are shortcuts for specific menus:

| Action ID                     | Menu               |
| :---------------------------- | :----------------- |
| `btcsky_open_control_panel`   | Main Control Panel |
| `btcsky_open_dimension_menu`  | Dimensions         |
| `btcsky_open_upgrades_menu`   | Upgrades           |
| `btcsky_open_members_menu`    | Members            |
| `btcsky_open_settings_menu`   | Settings           |
| `btcsky_open_bank_menu`       | Bank               |
| `btcsky_open_research_menu`   | Research Tree      |
| `btcsky_open_warps_menu`      | Warps              |
| `btcsky_open_biomes_menu`     | Biomes             |
| `btcsky_open_island_top_menu` | Leaderboard        |
