How to turn off...
#1

Is it possible to make it so if players on the server talk,
And theres players on the tutorial, The players on the tutorial cant see what other people say?
Reply
#2

Quote:
Originally Posted by Torran
Is it possible to make it so if players on the server talk,
And theres players on the tutorial, The players on the tutorial cant see what other people say?
pawn Код:
public OnPlayerText(playerid, text[])
{
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
     if(Tutorial[i]/*Or whatever your tutorial variable is*/ == 0)
     {
        SendPlayerMessageToPlayer(i, playerid, text);
     }
   }  
}
That should work. It'll send a message to everybody except the people in the tutorial.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)