ACE3/addons/common/functions/fnc_removeAllEventHandlers.sqf

21 lines
482 B
Plaintext
Raw Normal View History

/*
* Author: Nou
*
* Remove all events of a certain event type.
*
* Argument:
* 0: Event name (string)
*
* Return value:
* Nothing
*/
#include "script_component.hpp"
private ["_eventName", "_eventNames", "_eventFunctions", "_eventIndex"];
_eventName = _this select 0;
2015-01-14 20:55:44 +00:00
_eventNames = GVAR(events) select 0;
_eventFunctions = [];
_eventIndex = _eventNames find _eventName;
if(_eventIndex != -1) then {
2015-01-14 20:55:44 +00:00
(GVAR(events) select 1) set[_eventIndex, []];
};