2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2017-04-11 15:33:56 +00:00
|
|
|
/*
|
|
|
|
* Author: Jaynus, NouberNou
|
|
|
|
* Adds a round to the blacklist (will be ignored).
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Projectile <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2017-04-11 15:33:56 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2024-07-22 09:21:01 +00:00
|
|
|
* [_projectile] call ace_frag_fnc_addBlackList
|
2017-04-11 15:33:56 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2016-10-26 22:16:31 +00:00
|
|
|
|
2024-07-22 09:21:01 +00:00
|
|
|
params ["_projectile"];
|
|
|
|
TRACE_2("addBlackList",_projectile,typeOf projectile);
|
2016-10-26 22:16:31 +00:00
|
|
|
|
2024-07-22 09:21:01 +00:00
|
|
|
_projectile setVariable [QGVAR(blacklisted)];
|