ramdb/addons/db/functions/fnc_test.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

29 lines
607 B
Plaintext

#include "..\script_component.hpp"
/*
* Function: ramdb_db_fnc_test
* Author: Creedcoder, J.Schmidt
* Edit: 07.15.2024
*
* [Description]
* Test function.
*
* Arguments:
* 0: Value <ARRAY|STRING|NUMBER|BOOL>
*
* Return Value:
* <ARRAY|STRING|NUMBER|BOOL> Value
*
* Examples:
* ["Hello World!"] spawn ramdb_db_fnc_test (Server or Singleplayer Only)
* ["Hello World!"] remoteExec ["ramdb_db_fnc_test", 2, false] (Multiplayer Only)
*
* Public: Yes
*/
_res = _this;
ramdb_db_test = _res;
hint format ["%1", _res];
diag_log text format ["ArmaRAMDb: 'ramdb_db_fnc_test' Return: '%1'", _res];