SA-MP Forums Archive
simple question. - 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: simple question. (/showthread.php?tid=422730)



simple question. - kepa333 - 15.03.2013

is there a way of sending a music sound to everybody in the server
exmaple i convert a ******* song and want to make everybody hear it how do i do that.


Re: simple question. - Wahaj - 15.03.2013

Yes it is possible by streams , I don't know it but its possible , Wait for others reply !


Re: simple question. - Pottus - 15.03.2013

Like this......

https://sampwiki.blast.hk/wiki/PlayAudioStreamForPlayer

Send to all....

Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
    if(IsPlayerConncted(i))  PlayAudioStreamForPlayer();
}