SA-MP Forums Archive
Connect - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Connect (/showthread.php?tid=254313)



Connect - GrandMaa - 10.05.2011

While the player is connecting he can read the chat. This shouldn't be.
How can i fix that ?


Respuesta: Connect - o_O - 10.05.2011

There are some things that you can't prevent from showing up on his screen, such as "Connecting to..." and that sort of stuff.

You can, however, clear his chat by sending several white spaces.
pawn Code:
for(new i=0;i<20;i++)SendClientMessage(playerid,COLOR_WHITE," ");



Re: Connect - GrandMaa - 10.05.2011

A, thx!