[Help] Chat
#1

How can I turn off this chat :

Reply
#2

You can't, unless you make a textdraw which will put their messages in the textdraw.
Reply
#3

Make a timer that ClearChatbox every 1 sec...

pawn Код:
public ClearChatbox(playerid, lines)
{
    if (IsPlayerConnected(playerid))
    {
        for(new i=0; i<lines; i++)
        {
            SendClientMessage(playerid, COLOR_GREY, "");
        }
    }
    return 1;
}
Reply
#4

return 0;
Reply
#5

Quote:
Originally Posted by admantis
Посмотреть сообщение
return 0;
thanks
Reply
#6

Oh i am sorry, I thought you meaned to move the chat, my bad :S
Reply
#7

you mean like this?
pawn Код:
public OnPlayerText(playerid,text[])
{
    return 0;// players can't post...
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)