Difference between revisions of "DCS func getPlayers"
From DCS World Wiki - Hoggitworld.com
m (1 revision imported) |
|||
Line 39: | Line 39: | ||
|optType2= | |optType2= | ||
− | |examples= | + | |examples= Print the names of client aircraft currently spawned on blue. |
+ | |||
+ | local bluePlayers = coalition.getPlayers(2) | ||
+ | for i = 1, #bluePlayers do | ||
+ | env.info(Unit.getName(bluePlayers[i])) | ||
+ | end | ||
+ | |||