Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
TrichomeCharlie

End Mission Trigger Query

Recommended Posts

Hi Everyone...

 

Hoping for some assistance/guidance. Im at a loss of what to try next and Im only a few missions into my Eden learning curve. This has really been the only thing to stump me (so far) thanks to YouTube videos and forums.

 

I have a mission (I can share the file if needed). Every trigger runs as intended except for the mission end popup screen.

 

When I test the mission in Eden (Lan or multiplayer) the end trigger functions, flares go up / task shows as being checked off /  I get the mission complete screen. If I have the End Mission module linked to the trigger or if I use ""EndMissionTrigger" call BIS_fnc_endMission;" in the activation field of the trigger (any player - in area) - it works.

 

The Issue - When I test it on the dedicated server all the triggers fire EVEN the last one (flare goes up / mission brief has the task checked off) BUT the end mission screen does not come up.

Ive tried "serve only" both checked and unchecked, end mission module or scripted, any player in group / blufor in group and I just cant seem to find what may be causing this....

 

Im looking for any suggestions of things to try.... if you have any question please ask away. 

 

Thanks for your time.....

Share this post


Link to post
Share on other sites

In MP, you need to remoteExec this Bis_fnc_endMission which has Local Effect (LE)

["end1", true] remoteExecCall ["BIS_fnc_endMission"];

 

The end type "end1" by default must be in configFile >> "CfgDebriefing"  like for endMission

check if your "EndMissionTrigger" is defined somewhere.

  • Thanks 1

Share this post


Link to post
Share on other sites
11 hours ago, pierremgi said:

In MP, you need to remoteExec this Bis_fnc_endMission which has Local Effect (LE)

["end1", true] remoteExecCall ["BIS_fnc_endMission"];

 

The end type "end1" by default must be in configFile >> "CfgDebriefing"  like for endMission

check if your "EndMissionTrigger" is defined somewhere.

 

To complete that answer, you can custom "end1" in your description.ext :

 

Quote

class CfgDebriefing
{
        class end1
        {
                title = "title you want";
                subtitle = "subtitle you want";
                description = "Text you want";
                backgroundPicture = "link to your image";
                picture = "picture if you want";
                pictureColor[] = {1,1,1,1};
        };
        };

 

When you will use :

 

Quote

["end1", true] remoteExecCall ["BIS_fnc_endMission"];

 

It will call your custom class end1

 

Good to know : you can use a simple trigger to call it, BIS_fnc_endMission do the job, no need to use trigger->endmission

 

 

Share this post


Link to post
Share on other sites

×