2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-09-18 19:12:40 +00:00
|
|
|
/*
|
2023-06-19 13:31:17 +00:00
|
|
|
* Author: Glowbal, Grim
|
2022-01-30 17:56:20 +00:00
|
|
|
* Check in CfgPatches if modification is loaded
|
2015-01-16 23:21:47 +00:00
|
|
|
*
|
2015-09-18 19:12:40 +00:00
|
|
|
* Arguments:
|
2024-01-01 01:45:01 +00:00
|
|
|
* 0: Classname of the mod in CfgPatches <STRING>
|
2015-09-18 19:12:40 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2024-01-01 01:45:01 +00:00
|
|
|
* If modification is loaded <BOOL>
|
2015-09-18 19:12:40 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
2024-01-01 01:45:01 +00:00
|
|
|
* "class" call ace_common_fnc_isModLoaded
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
2015-09-18 19:12:40 +00:00
|
|
|
* Public: Yes
|
2015-01-16 23:21:47 +00:00
|
|
|
*/
|
|
|
|
|
2015-12-12 16:26:47 +00:00
|
|
|
params [["_modName", "", [""]]];
|
2015-09-20 14:40:49 +00:00
|
|
|
|
2024-01-01 01:45:01 +00:00
|
|
|
GVAR(isModLoadedCache) getOrDefaultCall [toLowerANSI _modName, {isClass (configFile >> "CfgPatches" >> _modName)}, true]
|