mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
364 B
Plaintext
24 lines
364 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
*
|
|
*
|
|
* Arguments:
|
|
* 0: ID <string>
|
|
* 1: data <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_deviceID", "_newData"];
|
|
|
|
private ["_data"];
|
|
_data = [_deviceID] call FUNC(getDeviceData);
|
|
_data set [3, _newData];
|
|
|
|
// ["bft_deviceDataChanged", [_data, false]] call EFUNC(common,localEvent);
|