![]() |
#7
|
|||
|
|||
![]() Quote:
using System; using maddox.game; using maddox.game.world; using System.Collections.Generic; public class Mission : AMission { public override void OnTickGame() { // Timing parameters int Repeat = 108000; // ?? repeat mission every 60 min int Dlay = 18000; // ?? launch Dorniers flights every 10 min // load the Dornier's bombers sub-mission every ??10 min if (Time.tickCounter() % Repeat == Dlay) // what does repeat parameter do? Dlay seems to spawn bombers every 10min OK { GamePlay.gpPostMissionLoad("missions/Multi/Dogfight/Test/Dorniers.mis"); // prints message on screen after mission load GamePlay.gpHUDLogCenter("Another wave of German bombers heading towards Lympne airfield"); // prints message on screen in 10 minutes / 600 seconds double initTime = 0.0; Timeout(initTime += 600, () => { GamePlay.gpHUDLogCenter("Another wave of German bombers heading towards Lympne airfield"); }); } } }
__________________
When one engine fails on a two engine bomber, you will always have enough power left to get to the scene of the crash. Get the latest COD Team Fusion patch info HERE |
|
|