![]() |
|
CoD Multiplayer Everything about multiplayer in IL-2 CoD |
|
Thread Tools | Display Modes |
#8
|
|||
|
|||
![]()
Try this:
Code:
if (GamePlay.gpAirGroups(1) != null && GamePlay.gpAirGroups(2) != null) { if (Time.tickCounter() % 9000 == 0) { int totalAircraft = GamePlay.gpAirGroups(1).Length + GamePlay.gpAirGroups(2).Length; GamePlay.gpLogServer(new Player[] { GamePlay.gpPlayer() }, totalAircraft.ToString(), null); if(GamePlay.gpRemotePlayers() != null) { GamePlay.gpLogServer(GamePlay.gpRemotePlayers(), totalAircraft.ToString(), null); } } } |
|
|