Jump to content
Dj Rolnik

Show BIS_fnc_showNotification to opposite player side

Recommended Posts

Hey y'all,

 

I am working on a mission in which I would like to have a notification (BIS_fnc_showNotification) displayed to the opposite team.

 

As in:

- Blufor player enters the trigger area

- All Opfor players (and only opfor players) see the predefined notification on screen

 

I cannot wrap my head around how to execute this command for side. Is that even possible? Anybody willing to help?

 

Thanks in advance!

Dj

Share this post


Link to post
Share on other sites
28 minutes ago, Dj Rolnik said:

I cannot wrap my head around how to execute this command for side. Is that even possible? Anybody willing to help?

Sure, use remoteExecCall command and pass OPFOR side as target.

  • Like 1

Share this post


Link to post
Share on other sites
10 minutes ago, Schatten said:

Sure, use remoteExecCall command and pass OPFOR side as target.

 

Hmm... I did what you suggested and when entering the trigger as blufor, I still see the notification pop up. Did I mess up the syntax somehow?

remoteExecCall ["notification" call BIS_fnc_showNotification, OPFOR, false];

 

Share this post


Link to post
Share on other sites
2 minutes ago, Dj Rolnik said:

Did I mess up the syntax somehow?

Yes, your code should look like this:

["notification"] remoteExecCall ["BIS_fnc_showNotification", opfor];

 

  • Like 2

Share this post


Link to post
Share on other sites
2 minutes ago, Schatten said:

Yes, your code should look like this:


["notification"] remoteExecCall ["BIS_fnc_showNotification", opfor];

 

 

Yes, you are right. I assumed the alternative syntax which does not seem to have done the trick. Thank you man, you just saved me a ton of headache!

 

Дзякуй!

  • Like 1

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

×