mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
25 lines
501 B
Plaintext
25 lines
501 B
Plaintext
/*
|
|
* Author: commy2
|
|
* hint the Variable ACE_isUsedBy from the input Object every frame
|
|
*
|
|
* Arguments:
|
|
* <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob] call ace_common_fnc_showUser
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (!isNil QGVAR(showUserPFH)) then {
|
|
[GVAR(showUserPFH)] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
GVAR(showUserPFH) = [{
|
|
hintSilent str ((_this select 0) getVariable ["ACE_isUsedBy", objNull]);
|
|
}, 0, _this] call CBA_fnc_addPerFrameHandler;
|