ramdb/addons/db/functions/fnc_set.sqf
Jacob Schmidt 2611ad7706
All checks were successful
Build / Build (push) Successful in 33s
Removed old docs.
2026-01-13 20:29:22 -06:00

36 lines
943 B
Plaintext

#include "..\script_component.hpp"
/*
* Function: ramdb_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 ramdb_db_fnc_set (Server or Singleplayer Only)
* ["test", ["Hello World!"]] remoteExecCall ["ramdb_db_fnc_set", 2, false] (Multiplayer Only)
*
* Public: Yes
*/
params [["_key", "", [""]], ["_data", [], [[]]]];
#ifdef __A3__DEBUG__
diag_log text format ["ArmaRAMDb: 'ramdb_db_fnc_set' Key: '%1', Data: '%2'", _key, _data];
#endif
if (_key == "" || isNil "_data") exitWith {
diag_log text format ["ArmaRAMDb: 'ramdb_db_fnc_set' Invalid Input for Key '%1' or Data '%2'", _key, _data];
};
"ArmaRAMDb" callExtension ["set", [_key, _data]];