Quote:
Originally Posted by David198502
the message warning the team that only 5planes in total are left, is not popping up...unfortunately...i almost thought, that at least once i could sort a problem out for myself 
|
its 'popping up' but its overridden by the next message so you only see the last, to avoid this you can use Timeout
Example:
Code:
GamePlay.gpHUDLogCenter(null, "First", null);
Timeout(5, () => {
GamePlay.gpHUDLogCenter(null, "Second", null);
});
Quote:
oh and one more thing....is it possible, that if a plane lands safely on a homebase that this plane will "get back" into the list(pool) of available planes?so that the the number of available planes for that spawnpoint(where the plane startet from) will not decrease in numbers, when the plane manage to make it back to a friendly airfield...?
or in other words, if a plane manages to make it back home safely, that "this" plane can be used again
|
Yes its possible but the code then needs some rework.