Quote:
Originally Posted by AroseKhanNaizi
But CrazyBobs Cops And Robbers has it
|
What they are using is what I mentioned, for example log in to their server and after that go on you samp logs folder you will actually see the audio stream..... thingy there in the log, the only way is really hiding it with the empty client messages or just create a function for it example...
OnPlayerConnect....
{
AudioStream.................
ClearChat(playerid);
// or instead
for(new i = 0; i < 50; i++) SendClientMessageToAll(COLOR_WHITE," "); return 1;
}
or
OnPlayerConnect....
{
AudioStream.................
SendClientMessage(playerid," ");
SendClientMessage(playerid," ");
SendClientMessage(playerid," ");
SendClientMessage(playerid," ");
SendClientMessage(playerid," ");
SendClientMessage(playerid," ");
}
Makes sense ?