Hi All

Anyone here know how i would get the active profiles count for the independent faction. I'm using the following script to count the profiles for balancing purposes but it wont count the independents...

_profilesWest = count ([ALiVE_profileHandler, "getProfilesBySide", "WEST"] call ALIVE_fnc_profileHandler);
_profilesEast = count ([ALiVE_profileHandler, "getProfilesBySide", "EAST"] call ALIVE_fnc_profileHandler);
_profilesInd = count ([ALiVE_profileHandler, "getProfilesBySide", "INDEPENDENT"] call ALIVE_fnc_profileHandler);

hint format ["Active Profiles \n West: %1 \n East: %2 \n Independent %3", _profilesWest, _profilesEast, _profilesInd];

It works for EAST and WEST but i get the following error for independent...

9:12:39 Error in expression <dent %3", _profilesWest, _profilesEast, _profilesInd];
>
 9:12:39   Error position: <_profilesInd];
>
 9:12:39   Error Undefined variable in expression: _profilesind
 9:12:39 File C:\Users\ic\Documents\Arma 3 - Other Profiles\Ian-C\missions\ALiVE_Lythium_NT.lythium\ProfileCount.sqf, line 5

I have tried several abbreviations for independent like IND, INDE but with no success.

Also while i'm here is there anywhere where i can find information about scripting functions related to ALiVE?

TIA
Ian