#1

How do I set a timer so that 10 seconds after a player connects the chat gets cleared so they can't see the ..
Connected. Joining server... etc.

Thank you!
Reply
#2

I don't know if this is what you meant
pawn Код:
//OnPlayerConnect
SetTimerEx("Clearchat", 10000, 0, "i", playerid);

forward Clearchat(playerid);
public Clearchat(playerid)
{
    for(new i = 0; i < 11; i++) SendClientMessage(playerid,-1," ");
    return 1;
}
Reply
#3

how about removing the message that's sent when someone connects?
Reply
#4

Thanks IronBoy
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)