Data / Map data/map_create

Create Map

Creates a new empty Map (key-value store).

Note: Maps use string keys and can store any value type. Use Map Set to add entries and Map Get to retrieve them.

Outputs

NameTypeDescription
map any The new empty Map.

Examples

Build a player data map

Create a map to hold player statistics.

  1. Create Map → map → Map Set (key="kills", value=0)
  2. Map Set → map → Map Set (key="deaths", value=0)