SendClientMessageToAll expect one
#1

Hello, i want to do a command, which sends ClientMessage to all, expect myself.
I mean, everybody else expect me get this message what i say.
Reply
#2

Replace SendClientMessageToAll with:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i) && playerid != i)
        {
            SendClientMessage(i,YOURCOLOR,"Here your text");
        }
    }
Enter your color and text that you had at your SendClientMessageToAll.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)