Advertisement
Xyberviri

spyGlass_childrenList.sqf

Oct 30th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. private["_children","_allowedChildren"];
  2. _children = [configFile >> "RscDisplayMPInterrupt" >> "controls",0] call BIS_fnc_returnChildren;
  3. _allowedChildren = [
  4. ];
  5.  
  6. _MISSING = [];
  7. {
  8.     if(!((configName _x) in _allowedChildren)) then {
  9.         _MISSING set[count _MISSING,(configName _x)];
  10.     };
  11. } foreach _children;
  12. copyToClipboard str(_MISSING);
  13.   hintSilent "Tab out and paste your clipboard into notepad for missing RscDisplayMPInterrupt";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement