Jump to content
Sign in to follow this  
darklight12345

[help] Sending a private message to a randomized single person.

Recommended Posts

I'm creating a mission where there is a single traitor. I've tried messing around with message systems but I am unable to figure out a way to send a message to a RANDOM player. Any help would be appreciated.

Share this post


Link to post
Share on other sites

If you want it to be really simple:

init.sqf:

sleep random 1;

if (isNil "traitor") then {
traitor = player;
hint "This is a message that is private to the traitor.";
};

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
Sign in to follow this  

×