Jump to content
Play3r

(Solved) BIS_fnc_showSubtitle show to other player on a Hosted Server

Recommended Posts

I have this line i play on screen when a COND is true, but it only shows to the one who triggers is.
How do i make is so all player on the server sees it?


[format ["%1", format ["%1",name player]], "Downloading!!"] spawn BIS_fnc_showSubtitle ;

 

 

Share this post


Link to post
Share on other sites
[ 
  "", 
  format  
  [ 
    "%1 Downloading!!",  
    name player 
  ] 
] remoteExec ["BIS_fnc_showSubtitle", 0];

 

Try this code.

 

  • Like 1
  • Thanks 1

Share this post


Link to post
Share on other sites
18 hours ago, R3vo said:

[ 
  "", 
  format  
  [ 
    "%1 Downloading!!",  
    name player 
  ] 
] remoteExec ["BIS_fnc_showSubtitle", 0];

 

Try this code.

 

This work great thanks for the help.

  • 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

×