DCS func getGroups

From DCS World Wiki - Hoggitworld.com
Revision as of 23:25, 25 May 2018 by Rurounijones (talk | contribs)

Scripting Root

Envrioment: Mission Scripting
Function: getGroups Added with: 1.2.4
Member Of: coalition
Syntax: table coalition.getGroups(enum coalitionId , enum GroupCategory)
Description: Returns a table of group objects belonging to the specified coalition. If the groupCategory enumerator is provided the table will only contain groups that belong to the specified category. If this optional variable is not provided, all group types will be returned. See here for the list of possible group categories.


Return Value: table
Return Example:
Examples: The following will print each groups name belonging to the blue coalition to dcs.log
for i, gp in pairs(coalition.getGroups(2)) do
 env.info(Group.getName(gp))
end
Related Functions: Coalition Functions: addGroup, addStaticObject, getGroups, getStaticObjects, getAirbases. getPlayers, getServiceProviders, addRefPoint, getRefPoints, getMainRefPoint, getCountryCoalition
Notes: Due to a bug this function is returning dead groups in addition to the alive groups. You must