[duv] limpar chat - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [duv] limpar chat (
/showthread.php?tid=121396)
[duv] limpar chat -
xolp25 - 16.01.2010
algm ensina a faser um comando de limpar o chat de todos?
Re: [duv] limpar chat -
speliarmos - 16.01.2010
Quote:
Originally Posted by Owned by Sergio
algm ensina a faser um comando de limpar o chat de todos?
|
pawn Code:
if(strcmp(cmdtext,"/limparchat", true) == 0)
{
for(new a = 0; a < 20; a++)
{
SendClientMessageToAll(0x33CCFFAA, " ");
}
return 1;
}
Re: [duv] limpar chat -
Spawn* - 17.01.2010
20 mensagens sгo insuficientes, SAMP 0.3 consegue armazenar 100 (ou quase) mensagens. Corrigindo:
Code:
if(strcmp(cmdtext,"/limparchat", true) == 0)
{
for(new a = 0; a < 100; a++)
{
SendClientMessageToAll(0xFFFFFFFF, " ");
}
return 1;
}