29 lines
607 B
Plaintext
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];
|