KutPax 0 Posted January 28, 2020 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
7erra 629 Posted January 28, 2020 With remoteExec. "Hello player 2, this is player 1 executing the script." remoteExec ["hint", P1]; P1 is the receiving player. 1 Share this post Link to post Share on other sites
KutPax 0 Posted January 28, 2020 I'll try it out, thanks Share this post Link to post Share on other sites
KutPax 0 Posted January 28, 2020 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