Posts: 221
Threads: 90
Joined: Jun 2010
Reputation:
0
PlayAudioStreamForPlayer(i, "http://song.mp3");
When i use this, is it possible to make it so that it doesnt show the player 'Streaming URL:' ?
Posts: 3,351
Threads: 780
Joined: Jan 2010
Quote:
Originally Posted by ricardo178
Not really.. The best you can do is adding this after:
pawn Код:
SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " "); SendClientMessage(playerid, 0xFFFFFFFF, " ");
|
Instead of making tons of copied lines,do in this way:
pawn Код:
for( new i = 0; i <= 50; i ++ ) SendClientMessage(playerid,COLOR_WHITE, "" );
Change 50 to the max numbers of blank text to send in chat.
Plus: There are no other ways to hide the streaming audio message,that's for security reasons.Players should know from where the music comes from.