Dj Rolnik 28 Posted September 12, 2021 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
Schatten 252 Posted September 12, 2021 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. 1 Share this post Link to post Share on other sites
Dj Rolnik 28 Posted September 12, 2021 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
Schatten 252 Posted September 12, 2021 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]; 2 Share this post Link to post Share on other sites
Dj Rolnik 28 Posted September 12, 2021 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! Дзякуй! 1 Share this post Link to post Share on other sites