30 lines
613 B
Plaintext
30 lines
613 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Function: dragonfly_db_fnc_test
|
|
* Author: Creedcoder, J.Schmidt
|
|
* Edit: 07.15.2024
|
|
*
|
|
* [Description]
|
|
* Log and display a test payload.
|
|
*
|
|
* Arguments:
|
|
* 0: Payload value <ANY>
|
|
*
|
|
* Return Value:
|
|
* N/A
|
|
*
|
|
* Examples:
|
|
* ["Hello World!"] spawn dragonfly_db_fnc_test (Server or Singleplayer Only)
|
|
* ["Hello World!"] remoteExec ["dragonfly_db_fnc_test", 2, false] (Multiplayer Only)
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
|
|
_res = _this;
|
|
dragonfly_db_test = _res;
|
|
|
|
hint format ["%1", _res];
|
|
diag_log text format ["ArmaDragonflyClient: 'dragonfly_db_fnc_test' Result: '%1'", _res];
|