31 lines
942 B
Markdown
31 lines
942 B
Markdown
# Hash Get
|
|
|
|
## Description
|
|
|
|
Get the value associated with `field` in hash stored at `key` from DragonflyDB.
|
|
|
|
## Usage
|
|
|
|
```sqf
|
|
Arguments:
|
|
0: STRING - Name of stored field in hash (default: "")
|
|
1: STRING - Name of function to return data (default: "")
|
|
2: BOOLEAN - Unscheduled environment (default: false)
|
|
3: STRING - NetID of target to return data from function (default: nil)
|
|
|
|
Examples:
|
|
["loadout", "dragonfly_db_fnc_test"] call dragonfly_db_fnc_hashGet (Server or Singleplayer Only)
|
|
["loadout", "dragonfly_db_fnc_test", false, netId player] remoteExecCall ["dragonfly_db_fnc_hashGet", 2, false] (Multiplayer Only)
|
|
```
|
|
|
|
## Links
|
|
|
|
[Hash Get](hashes/hashGet.md) |
|
|
[Hash Get ID](hashes/hashGetId.md) |
|
|
[Hash Get All](hashes/hashGetAll.md) |
|
|
[Hash Get All ID](hashes/hashGetAllId.md) |
|
|
[Hash Set](hashes/hashSet.md) |
|
|
[Hash Set ID](hashes/hashSetId.md) |
|
|
[Hash Set Bulk](hashes/hashSetBulk.md) |
|
|
[Hash Set Bulk ID](hashes/hashSetBulkId.md)
|