37 lines
994 B
Plaintext
37 lines
994 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Function: dragonfly_db_fnc_set
|
|
* Author: Creedcoder, J.Schmidt
|
|
* Edit: 07.15.2024
|
|
*
|
|
* [Description]
|
|
* Set value of stored key from DB.
|
|
*
|
|
* Arguments:
|
|
* 0: Name of stored key <STRING> (default: "")
|
|
* 1: Value to store in key [<ARRAY|STRING|NUMBER|BOOL>] (default: [])
|
|
*
|
|
* Return Value:
|
|
* N/A
|
|
*
|
|
* Examples:
|
|
* ["test", ["Hello World!"]] call dragonfly_db_fnc_set (Server or Singleplayer Only)
|
|
* ["test", ["Hello World!"]] remoteExecCall ["dragonfly_db_fnc_set", 2, false] (Multiplayer Only)
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
|
|
params [["_key", "", [""]], ["_data", [], [[]]]];
|
|
|
|
#ifdef __A3__DEBUG__
|
|
diag_log text format ["ArmaDragonflyClient: 'dragonfly_db_fnc_set' Key: '%1', Data: '%2'", _key, _data];
|
|
#endif
|
|
|
|
if (_key == "" || isNil "_data") exitWith {
|
|
diag_log text format ["ArmaDragonflyClient: 'dragonfly_db_fnc_set' Invalid Input for Key '%1' or Data '%2'", _key, _data];
|
|
};
|
|
|
|
"ArmaDragonflyClient" callExtension ["set", [_key, _data]];
|