Thread: Planes despawn
View Single Post
  #5  
Old 01-06-2013, 10:14 AM
salmo salmo is offline
Approved Member
 
Join Date: Mar 2011
Posts: 632
Default

Some scripting commands don't work from sub-missions so as a general rule put your scripts in your main mission. Sounds like you're missing a 'missionlistener' that will watch for your submission events. Try this in your main script file.

Code:
    public override void OnBattleStarted()
    {
        base.OnBattleStarted();
        MissionNumberListener = -1;
     }
__________________
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

Last edited by salmo; 01-06-2013 at 10:17 AM.
Reply With Quote