mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
899 B
Plaintext
35 lines
899 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Add an event handler that executes every ACE_time the scroll wheel is used. This is needed, because adding a MouseZ display event handler to display 46 will break in save games.
|
|
* _this will be [Interval] where 'Interval' is a number.
|
|
*
|
|
* Arguments:
|
|
* 0: Code to execute <CODE, STRING>
|
|
*
|
|
* Return Value:
|
|
* ID of the event script (used to remove it later). <NUMBER>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_statement"];
|
|
|
|
if (typeName _statement == "STRING") then {
|
|
_statement = compile _statement;
|
|
};
|
|
|
|
private "_actionsVar";
|
|
_actionsVar = missionNamespace getVariable ["ACE_EventHandler_ScrollWheel", [-1, [], []]];
|
|
|
|
_actionsVar params ["_id", "_actionIDs", "_actions"];
|
|
|
|
_id = _id + 1;
|
|
|
|
_actionIDs pushBack _id;
|
|
_actions pushBack _statement;
|
|
|
|
missionNamespace setVariable ["ACE_EventHandler_ScrollWheel", [_id, _actionIDs, _actions]];
|
|
|
|
_id
|