32 lines
1.0 KiB
Markdown
32 lines
1.0 KiB
Markdown
# Hash Get ID
|
|
|
|
## Description
|
|
|
|
Get value of field in hash stored at key from DB.
|
|
|
|
## Usage
|
|
|
|
```sqf
|
|
Arguments:
|
|
0: STRING - Name of stored key with hash (default: "")
|
|
1: STRING - Name of stored field in hash (default: "")
|
|
2: STRING - NetID of target to return data from function (default: "")
|
|
3: STRING - Name of function to return data (default: "")
|
|
4: BOOLEAN - Unscheduled environment (default: false)
|
|
|
|
Examples:
|
|
[getPlayerUID player, "loadout", "", "dragonfly_db_fnc_test", false] call dragonfly_db_fnc_hashGetId (Server or Singleplayer Only)
|
|
[getPlayerUID player, "loadout", netId player, "dragonfly_db_fnc_test", false] remoteExecCall ["dragonfly_db_fnc_hashGetId", 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)
|