Official Fulqrum Publishing forum

Official Fulqrum Publishing forum (http://forum.fulqrumpublishing.com/index.php)
-   FMB, Mission & Campaign builder Discussions (http://forum.fulqrumpublishing.com/forumdisplay.php?f=203)
-   -   trigger points and spawning (http://forum.fulqrumpublishing.com/showthread.php?t=28257)

smokincrater 12-03-2011 09:17 PM

trigger points and spawning
 
G`day, having trouble getting the FMB to spawn other units from a trigger. For instance I want the computer to spawn a RAF unit when the Luftwaffe pass through a point(trigger) on the map. Also i want to spawn returning escorts on the way home for the returning bombers.

Also has can anyone give me a tip for getting the computer to select the best runway for take off( I.e. the one i want).

FG28_Kodiak 12-03-2011 10:09 PM

Can you post your mission, so we can take a look at it?

The start direction depends on wind direction. To get your prefered runway you must change the wind direction in the mission preferences (View-Menu).

smokincrater 12-04-2011 05:19 AM

how can i post the mission to you?

smokincrater 12-04-2011 05:56 AM

runway issue sloved. Now all i have to work out is how get the tiggers and actions working as i have no idea about scripting!

FG28_Kodiak 12-04-2011 06:45 AM

Without scripting your trigger and the action must have the same name.
Example, if your trigger has the name 'SpawnAirgroup1' your action must have the name 'SpawnAirgroup1', also.


To post your mission. Zip the files and upload it via 'Manage Attachment' found under Additional Options if you post a message.

smokincrater 12-04-2011 07:46 AM

1 Attachment(s)
Posted zip file!!

Tried renaming triggers and actions but did not work. Thank you also for this.

ATAG_Bliss 12-04-2011 10:04 AM

Hi smokin,

Just had a quick look at this through the notepad. What are you trying to do with the passthroughs? Are you wanting to spawn certain planes if a particular air/ground group goes through the passthrough area?

FG28_Kodiak 12-04-2011 10:15 AM

1 Attachment(s)
Corrected:
By spawning Airgroups you should activate "only Script spawn" in their options.

You use passthroughs-Triggers, there is a problem the are activated two times on enter and on leave. To avoid the second activation, you should deaktivate the trigger via script.
Sometimes if a Group is not spawning, it helps to select it again in the action-options.


So i've added a little script:
Code:

using System;
using System.Collections;
using System.Collections.Generic;
using maddox.game;
using maddox.game.world;


public class Mission : AMission
{

    public override void OnTrigger(int missionNumber, string shortName, bool active)
    {
        base.OnTrigger(missionNumber, shortName, active);

        AiAction Action = GamePlay.gpGetAction(shortName);

        if (Action != null)
            Action.Do();
       
        GamePlay.gpGetTrigger(shortName).Enable = false;
    }
}

Tested the Mission, now it should work.

BGs_Ricky 12-04-2011 10:52 AM

Hi Kodiak,

does the script you just put here avoid a further activation of a passthrough trigger ?
I've been looking for one since I made a small mission weeks ago and couldn't find a way to spawn an air group only once, as another was spawned everytime the condition was met again (in that case red planes flying through it).

Thx !

FG28_Kodiak 12-04-2011 11:59 AM

Yes.

I deactivate it with
GamePlay.gpGetTrigger(shortName).Enable = false;
so it is not activated a second time.


All times are GMT. The time now is 06:15 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.