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
| Name | Type | Description |
|---|---|---|
map |
any | The new empty Map. |
Examples
Build a player data map
Create a map to hold player statistics.
- Create Map → map → Map Set (key="kills", value=0)
- Map Set → map → Map Set (key="deaths", value=0)