Jump to content
Sign in to follow this  
Solarghost

Help with a Trigger + Secop

Recommended Posts

Hey people, I really need some help with my mission...

I have created a trigger with the following, it works perfectly, until you crash out of the game, then when you reconnect, you can no longer use these features...

I create a Player, Module secondary op, click ok

Sync the 2 together

Create a trigger...

Activation: Bravo, on 'repeatedly'

Text: H.Q Support

Conditions: this

On Action:

[["transport", "aerial_reconnaissance", "supply_drop", "tactical_airstrike", "artillery_barrage"], player] call BIS_SOM_addSupportRequestFunc;

Can anyone please help me how i can fix this?

Cheers

Share this post


Link to post
Share on other sites

Might be better to ask this in the mission editor section, not the addons section.

Share this post


Link to post
Share on other sites

I have found that it is better to "break up" the support requests after the 1st time. What you have is fine for the first time you initialize the support requests, but after that I have used different triggers for each call...example:

radio charlie repeatedly

[["transport"], player] call BIS_SOM_addSupportRequestFunc;

radio delta repeatedly

[["aerial_reconnaissance"], player] call BIS_SOM_addSupportRequestFunc;

and so on.

Also, it's better to put the arty call seperately from the others then you can define the parameters, see the wiki for the params, I use this for virtual arty

radio trigger alpha

[[""artillery_barrage""], player, [[]]] call BIS_SOM_addSupportRequestFunc;

Share this post


Link to post
Share on other sites

Thanks man, appreciate your help, i'll let you know if it works, considering how much people crash playing Arma 2......

I'm pretty sure it's to do with their net code..

Anyway, cheers mate

Share this post


Link to post
Share on other sites

Oh hey dude.... you know how I have to do them seperate, do I have to do the same with the Game logic triggers????

---------- Post added at 08:24 PM ---------- Previous post was at 08:09 PM ----------

Never mind, I am a retard.....

I read what you said properly...

What you have is fine for the first time you initialize the support requests, but after that I have used different triggers for each call...example:

I'm a bit of a noob, it's only my second day tryna edit so.... lols, you can laugh though.. :D

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×