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

[Help] Send hint to specific player

Recommended Posts

Howdy,

I'm trying to make a script where a player executes Script1.sqf (Hint or Titletext) on a different player (For example a player who entered a slot with variable name P1).
It works when I test it in MP, but it doesn't work when I try it out in Dedicated. Does anyone have an idea on how to make this work on a dedicated server? Thanks in advance. 

Share this post


Link to post
Share on other sites

With remoteExec.

"Hello player 2, this is player 1 executing the script." remoteExec ["hint", P1];

P1 is the receiving player.

  • Thanks 1

Share this post


Link to post
Share on other sites

Crazily enough I had something like this, but I just forgot to utilize remoteExec. It works, thanks for the help my dude!

Share this post


Link to post
Share on other sites

×