I'm having trouble with sending a hint to all players on my server. I have tried several methods, but none works.
RPT and -showscripterrors reports no errors.
These have been tested, but doesn't work:
Shows nothing at all:
[nil,nil,rHINT,"testing"] call RE;
Used with maca's "remote_messages" script (https://www.dropbox.com/s/eyix186wbdqwmu0/remote_messages.sqf). Shows nothing at all:
customRemoteMessage = ['hint', "testing"]; publicVariable "customRemoteMessage";
Shows text on my screen, not on others. Same with !isServer:
if (!isDedicated) then { hint "test"; };
What am I doing wrong? Isn't there a fool-proof way to get this working?