SA-MP Forums Archive
Audio Stream - 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)
+--- Thread: Audio Stream (/showthread.php?tid=501166)



Audio Stream - AroseKhanNiazi - 16.03.2014

I want that it should not show to other which radio stream are we using like it does not send message of it


Re: Audio Stream - Parallex - 16.03.2014

I don't think we can hide that.


Re: Audio Stream - amirab - 16.03.2014

no we can't hide it


Re: Audio Stream - CharlieSanchez - 16.03.2014

Only way that trully does not hide, but hides from the chat at the moment but not the logs is use a clearchat function after the stream. or just send like 7 empty client messages to clear the chat lines to avoid the Audios stream: ..... not being seen.


Re: Audio Stream - AroseKhanNiazi - 17.03.2014

But CrazyBobs Cops And Robbers has it


Re: Audio Stream - CharlieSanchez - 17.03.2014

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 ?


Re: Audio Stream - AroseKhanNiazi - 17.03.2014

i created a cmd that runs radio on or off so this wont work


Re: Audio Stream - CharlieSanchez - 17.03.2014

Quote:
Originally Posted by AroseKhanNaizi
Посмотреть сообщение
i created a cmd that runs radio on or off so this wont work
Please post the code so we can help.


Re: Audio Stream - AroseKhanNiazi - 18.03.2014

sorry mistake it can't be possible


Re: Audio Stream - CharlieSanchez - 18.03.2014

No Worries bud, like i said it only possible hiding the stream line using empty client messages... Try to work around that idea i mention i use it and works for me , good luck.